diff --git a/NEWS b/NEWS index 583499082fa31950558436c8d9fcee494f9c5022..5e8998e0ec4efb75b2a2f09d73f280dd0e87483b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +45.1 +======= + +- Fix sandbox for image decoding not enabled by default +- Fix printing on different printer than selected +- Fix print dialog crashes on confirmation +- Fix print dialog needs second confirmation inside Flatpaks +- Fix SVGs sometimes not re-rendering for zoom level +- Fix animated image formats with variable frame length using only one length + 45.0 ======= diff --git a/data/org.gnome.Loupe.metainfo.xml.in.in b/data/org.gnome.Loupe.metainfo.xml.in.in index e81e98189c2ab99ab6595844b63615ba6702d144..5ccd220f02dc530e3d037c8ccc3eead44d34baf7 100644 --- a/data/org.gnome.Loupe.metainfo.xml.in.in +++ b/data/org.gnome.Loupe.metainfo.xml.in.in @@ -66,7 +66,16 @@ - + + +
    +
  • Sandboxed image interpretation is now enabled by default.
  • +
  • Printing now prints on the selected printer.
  • +
  • Image formats like GIFs with different frame lengs are now animated correctly.
  • +
+
+
+

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 03dd301fafd94c8a944aa310db04f4a1705a65de..4a2b286296045a5e81a3cb9fb27d902a0de2a684 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('loupe', 'rust', - version: '45.0', + version: '45.1', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', ],