[Git][debian-gis-team/josm][master] 2 commits: Add upstream patch to fix dead lock when downloading Bing imagery. (closes: #1065678)
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Mon Mar 11 21:02:05 GMT 2024
Bas Couwenberg pushed to branch master at Debian GIS Project / josm
Commits:
9c27fb8c by Bas Couwenberg at 2024-03-11T21:47:34+01:00
Add upstream patch to fix dead lock when downloading Bing imagery. (closes: #1065678)
- - - - -
6427d8ff by Bas Couwenberg at 2024-03-11T21:54:59+01:00
Set distribution to unstable.
- - - - -
3 changed files:
- debian/changelog
- debian/patches/series
- + debian/patches/validator.patch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+josm (0.0.svn18969+dfsg2-2) unstable; urgency=medium
+
+ * Add upstream patch to fix dead lock when downloading Bing imagery.
+ (closes: #1065678)
+
+ -- Bas Couwenberg <sebastic at debian.org> Mon, 11 Mar 2024 21:54:49 +0100
+
josm (0.0.svn18969+dfsg2-1) unstable; urgency=medium
* Update annotions sources to 24.0.1 for OpeningHoursParser 0.28.0.
=====================================
debian/patches/series
=====================================
@@ -5,3 +5,4 @@
07-use_system_fonts.patch
08-use_noto_font.patch
09-no-java-8.patch
+validator.patch
=====================================
debian/patches/validator.patch
=====================================
@@ -0,0 +1,22 @@
+Description: Fix deadlock when downloading Bing imagery.
+Author: Taylor Smock <tsmock at meta.com>
+Origin: https://josm.openstreetmap.de/ticket/23540#comment:10
+Bug: https://josm.openstreetmap.de/ticket/23540
+
+--- a/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
++++ b/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java
+@@ -740,9 +740,11 @@ public class ValidatorDialog extends Tog
+ public void preferenceChanged(PreferenceChangeEvent e) {
+ super.preferenceChanged(e);
+ // see #23430: update selection so that filters are applied
+- DataSet ds = MainApplication.getLayerManager().getActiveDataSet();
+- if (ds != null) {
+- updateSelection(ds.getAllSelected());
++ if (ValidatorPrefHelper.PREF_FILTER_BY_SELECTION.equals(e.getKey())) {
++ DataSet ds = MainApplication.getLayerManager().getActiveDataSet();
++ if (ds != null) {
++ updateSelection(ds.getAllSelected());
++ }
+ }
+ }
+
View it on GitLab: https://salsa.debian.org/debian-gis-team/josm/-/compare/3ae9e4e7d74cc1989869cbfa79753496ef36bbaa...6427d8ffd3eb024b7f42661da9f03edb9adcc621
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/josm/-/compare/3ae9e4e7d74cc1989869cbfa79753496ef36bbaa...6427d8ffd3eb024b7f42661da9f03edb9adcc621
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20240311/053faa4b/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list