branch develop updated (1c38756 -> f932db3)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository tutti. See https://gitlab.nuiton.org/codelutin/tutti.git from 1c38756 Merge branch 'develop' of https://gitlab.nuiton.org/codelutin/tutti into develop new f932db3 fixes #8328: [TECHN] En l'absence de connexion internet, le message d'erreur de mise à jour doit être plus discret The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit f932db3d1f88a85f4de335e01dea696f52d37718 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Wed Jul 27 19:20:48 2016 +0200 fixes #8328: [TECHN] En l'absence de connexion internet, le message d'erreur de mise à jour doit être plus discret Summary of changes: .../src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository tutti. See https://gitlab.nuiton.org/codelutin/tutti.git commit f932db3d1f88a85f4de335e01dea696f52d37718 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Wed Jul 27 19:20:48 2016 +0200 fixes #8328: [TECHN] En l'absence de connexion internet, le message d'erreur de mise à jour doit être plus discret --- .../src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java index ca908ee..066c5ba 100644 --- a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java +++ b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/RunTutti.java @@ -95,7 +95,8 @@ public class RunTutti { } // check application url is reachable - boolean canUpdateApplication = context.checkUpdateApplicationReachable(true); + // no popup see https://forge.codelutin.com/issues/8328 + boolean canUpdateApplication = context.checkUpdateApplicationReachable(false); if (canUpdateApplication) { // try to update jre - i18n - application - help and exit if so @@ -112,7 +113,8 @@ public class RunTutti { } // check data url is reachable - boolean canUpdateData = context.checkUpdateDataReachable(true); + // no popup see https://forge.codelutin.com/issues/8328 + boolean canUpdateData = context.checkUpdateDataReachable(false); if (canUpdateData) { // try to update report and exit if so -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm