diff options
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | data/org.gnome.Nautilus.appdata.xml.in.in | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +Major changes in 3.37.90: +* Port Properties dialog to GtkBuilder including various enhancements (Apoorv Sachan, António Fernandes) +* Prevent crashes when file operation is cancelled (Ondrej Holy) +* Auto-escape filenames on NTFS and exFAT mounts (ignapk) +* Preserve navigation history after opening Other Locations (Sachin Daluja) +* Use g_clear_signal_handler instead of custom codes (Joshua Lee) +* Translation updates + Major changes in 3.37.3: * Allow changing file owner under admin:/// scheme (Apoorv Sachan) * Update outdated appdata info (Ondrej Holy) diff --git a/data/org.gnome.Nautilus.appdata.xml.in.in b/data/org.gnome.Nautilus.appdata.xml.in.in index 4b699d8be..3e843fe2f 100644 --- a/data/org.gnome.Nautilus.appdata.xml.in.in +++ b/data/org.gnome.Nautilus.appdata.xml.in.in @@ -27,7 +27,7 @@ <url type="translate">https://wiki.gnome.org/TranslationProject</url> <launchable type="desktop-id">@appid@.desktop</launchable> <releases> - <release version="3.37.3" data="2020-07-03" /> + <release version="3.37.90" data="2020-08-07" /> </releases> <project_group>GNOME</project_group> <project_license>GPL-2.0+</project_license> diff --git a/meson.build b/meson.build index 1d9f09c35..1484fe058 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project('nautilus', 'c', # Do not forget when releasing: # * Update version in data/org.gnome.Nautilus.appdata.xml.in.in # * Update GTK-based codes over src/gtk/gtk-code-generator.sh - version: '3.37.3', + version: '3.37.90', meson_version: '>= 0.47.0', license: 'GPL3+' |