diff --git a/Cargo.lock b/Cargo.lock index c0d72fc0c63d666623c72cbcd33d3c56c1716dac..28a5b806fa2b8fd04e8368b44d6323367530a232 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -926,9 +926,9 @@ dependencies = [ [[package]] name = "glycin" -version = "0.1.0-rc" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "423d02ed19c2d8643912d0b7e60479a5958f501f245814049298138948e76fb0" +checksum = "ad6c03181c84fdbe028957f3e90747686038b2f0f85ea2a2bf68bef287a6cb8a" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 92163d7f2a88bb39b0dbd2a2715e2ac366f2b79d..0242c685912e30d58555f1d94e5527a26cd960b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ async-channel = "1.8.0" async-std = "1.12.0" env_logger = "0.10.0" futures = "0.3.25" -glycin = "0.1.0-rc" +glycin = "0.1.0" gvdb-macros = "0.1.6" indexmap = "2.0.0" kamadak-exif = "0.5.5" diff --git a/NEWS b/NEWS index 6df0ac4998f943d6f3760b4d685d0a91b3fed6e3..583499082fa31950558436c8d9fcee494f9c5022 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -45.rc +45.0 ======= - Always ask which program to use for "Open With…" @@ -7,6 +7,8 @@ - Empty state: Use flat headerbar - Fix non-native files with path cannot be deleted - Update screenshots +- Drag and Drop: Only expect sources of type FileList +- Update SlidingView after removing unsupported image 45.beta.1 ======= diff --git a/build-aux/flatpak/org.gnome.Loupe.Devel.json b/build-aux/flatpak/org.gnome.Loupe.Devel.json index d7a9dbd9740d073164ed8376d67880b8e0827305..1d750e6d413faaf9a92c972e6cb833c7f1d69057 100644 --- a/build-aux/flatpak/org.gnome.Loupe.Devel.json +++ b/build-aux/flatpak/org.gnome.Loupe.Devel.json @@ -156,7 +156,7 @@ { "type" : "git", "url" : "https://gitlab.gnome.org/sophie-h/glycin.git", - "commit" : "2b1c3093f9cd0ce3bace921462ed3abfe8f38cde" + "commit" : "0a4a9ad0eef182adbaa19191ab8c16b346b8c7dd" } ] }, diff --git a/data/org.gnome.Loupe.metainfo.xml.in.in b/data/org.gnome.Loupe.metainfo.xml.in.in index f9bb7afd840620daf075993ffdc23559828a2c7b..48a0d58fa6247e6c3ce7421360f083b0ab0c5c49 100644 --- a/data/org.gnome.Loupe.metainfo.xml.in.in +++ b/data/org.gnome.Loupe.metainfo.xml.in.in @@ -65,7 +65,7 @@ - +

This is the first release as the new default image viewer for GNOME. Besides many other changes, this version brings:

diff --git a/meson.build b/meson.build index c827e4053a4924e13feef56acc52bd00133a53f2..03dd301fafd94c8a944aa310db04f4a1705a65de 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('loupe', 'rust', - version: '45.rc', + version: '45.0', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', ],