Hello community, here is the log from the commit of package gnome-maps for openSUSE:Factory checked in at 2020-10-10 19:03:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-maps (Old) and /work/SRC/openSUSE:Factory/.gnome-maps.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-maps" Sat Oct 10 19:03:19 2020 rev:53 rq:840289 version:3.36.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-maps/gnome-maps.changes 2020-07-13 09:05:16.140053713 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-maps.new.4249/gnome-maps.changes 2020-10-10 19:03:24.872455217 +0200 @@ -1,0 +2,7 @@ +Thu Oct 8 11:34:54 UTC 2020 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 3.36.4.1: + + Fix a race-condition bug in search-as-you-type resulting in + out-of-sync search results in some circumstances. + +------------------------------------------------------------------- Old: ---- gnome-maps-3.36.4.tar.xz New: ---- gnome-maps-3.36.4.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-maps.spec ++++++ --- /var/tmp/diff_new_pack.H4ThF8/_old 2020-10-10 19:03:26.232455891 +0200 +++ /var/tmp/diff_new_pack.H4ThF8/_new 2020-10-10 19:03:26.232455891 +0200 @@ -17,7 +17,7 @@ Name: gnome-maps -Version: 3.36.4 +Version: 3.36.4.1 Release: 0 Summary: Maps Application for GNOME License: GPL-2.0-or-later ++++++ gnome-maps-3.36.4.tar.xz -> gnome-maps-3.36.4.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-maps-3.36.4/NEWS new/gnome-maps-3.36.4.1/NEWS --- old/gnome-maps-3.36.4/NEWS 2020-07-04 09:40:05.924866000 +0200 +++ new/gnome-maps-3.36.4.1/NEWS 2020-10-07 22:53:11.825871000 +0200 @@ -1,3 +1,13 @@ +3.36.4.1 - Oct 7, 2020 +========================= + +Changes since 3.36.4 +- Fix a race-condition bug in search-as-you-type resulting in out-of-sync + search results in some circumstances + +All contributors to this release +Marcus Lundblad <m...@update.uu.se> + 3.36.4 - Jul 4, 2020 ========================= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-maps-3.36.4/data/org.gnome.Maps.appdata.xml.in new/gnome-maps-3.36.4.1/data/org.gnome.Maps.appdata.xml.in --- old/gnome-maps-3.36.4/data/org.gnome.Maps.appdata.xml.in 2020-07-04 09:40:05.928865700 +0200 +++ new/gnome-maps-3.36.4.1/data/org.gnome.Maps.appdata.xml.in 2020-10-07 22:53:11.825871000 +0200 @@ -42,6 +42,11 @@ </screenshot> </screenshots> <releases> + <release date="2020-10-07" version="3.36.4.1"> + <ul> + <li>Fix a race-condition bug in search-as-you-type resulting in out-of-sync search results in some circumstances</li> + </ul> + </release> <release date="2020-07-04" version="3.36.4"> <description> <ul> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-maps-3.36.4/meson.build new/gnome-maps-3.36.4.1/meson.build --- old/gnome-maps-3.36.4/meson.build 2020-07-04 09:40:05.948864000 +0200 +++ new/gnome-maps-3.36.4.1/meson.build 2020-10-07 22:53:11.849869000 +0200 @@ -1,5 +1,5 @@ project('gnome-maps', 'c', - version: '3.36.4', + version: '3.36.4.1', license: 'GPL2+' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-maps-3.36.4/src/placeEntry.js new/gnome-maps-3.36.4.1/src/placeEntry.js --- old/gnome-maps-3.36.4/src/placeEntry.js 2020-07-04 09:40:05.972862000 +0200 +++ new/gnome-maps-3.36.4.1/src/placeEntry.js 2020-10-07 22:53:11.869867300 +0200 @@ -259,7 +259,7 @@ this._updateResults(places); // cache results for later - this._cache[this.text] = places; + this._cache[this._previousSearch] = places; // if search input has been updated, trigger a refresh if (this.text !== this._previousSearch)