Skip to content
Commits on Source (8)
3.38.4
------
* Fix a small memory leak in timezone page. (#119)
3.38.3
------
......
gnome-initial-setup (3.38.3-1ubuntu1) hirsute; urgency=medium
gnome-initial-setup (3.38.4-1ubuntu1) hirsute; urgency=medium
* Merge with Debian. Remaining changes:
+ debian/control.in:
......@@ -18,7 +18,13 @@ gnome-initial-setup (3.38.3-1ubuntu1) hirsute; urgency=medium
debian/patches/0001-Don-t-run-welcome-tour-at-end.patch:
- use the new vendor configuration instead of a patch
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 20 Jan 2021 16:50:28 +0100
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 19 Feb 2021 11:51:06 +0100
gnome-initial-setup (3.38.4-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 19 Feb 2021 11:47:41 +0100
gnome-initial-setup (3.38.3-1) unstable; urgency=medium
......
......@@ -243,6 +243,8 @@ entry_location_changed (GObject *object, GParamSpec *param, GisTimezonePage *pag
priv->in_search = TRUE;
set_location (page, location);
priv->in_search = FALSE;
gweather_location_unref (location);
}
#define GETTEXT_PACKAGE_TIMEZONES "gnome-control-center-2.0-timezones"
......
project('gnome-initial-setup',
['c'],
version: '3.38.3',
version: '3.38.4',
license: 'GPLv2',
meson_version: '>= 0.49.0',
)
......