diff --git a/CHANGELOG.md b/CHANGELOG.md index 2844010..330b960 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. ## UNRELEASED + +## 1.10.0 - 2024-06-07 ### Added - Add a "Recursive Compression" setting. - Add Bulgarian translation. Thank's to @twlvnn. @@ -10,6 +12,7 @@ All notable changes to this project will be documented in this file. ### Changed - Update OxiPNG to v9.1.1 - Update translations. +- Change safe mode directly from warning banner button. ### Fixed - Fix opening files with "Open With...". Thank's to @ARAKHN1D. diff --git a/data/com.github.huluti.Curtail.appdata.xml.in b/data/com.github.huluti.Curtail.appdata.xml.in index f14d7db..ecf5e8e 100644 --- a/data/com.github.huluti.Curtail.appdata.xml.in +++ b/data/com.github.huluti.Curtail.appdata.xml.in @@ -38,6 +38,22 @@ curtail com.github.huluti.Curtail.desktop + + +

Here's the changelog of this version:

+
    +
  • Add a "Recursive Compression" setting
  • +
  • Add Bulgarian translation. Thank's to @twlvnn
  • +
  • Add Hindi translation. Thank's to @Scrambled777
  • +
  • Update OxiPNG to v9.1.1
  • +
  • Update translations
  • +
  • Change safe mode directly from warning banner button
  • +
  • Fix opening files with "Open With...". Thank's to @ARAKHN1D
  • +
  • Fix DnD with nested folders (recursive)
  • +
  • Fix translations not applied to the help overlay window
  • +
+
+

Here's the changelog of this version:

diff --git a/debian/changelog b/debian/changelog index 11ad20f..a073b61 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +curtail (1.10.0) focal; urgency=medium + + * Add a "Recursive Compression" setting. + * Add Bulgarian translation. Thank's to @twlvnn. + * Add Hindi translation. Thank's to @Scrambled777. + * Update OxiPNG to v9.1.1 + * Update translations. + * Change safe mode directly from warning banner button. + * Fix opening files with "Open With...". Thank's to @ARAKHN1D. + * Fix DnD with nested folders (recursive). + * Fix translations not applied to the help overlay window. + + -- Archisman Panigrahi Fri, 07 Jun 2024 13:15 +0200 + curtail (1.9.1) focal; urgency=medium * Use default decoration layout for screenshots. diff --git a/meson.build b/meson.build index 29394a0..04a5312 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('curtail', - version: '1.9.1', + version: '1.10.0', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/pyproject.toml b/pyproject.toml index d479e76..ee45cbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "curtail" -version = "1.9.1" +version = "1.10.0" description = "" authors = ["Hugo Posnic "] license = "GPLv3" diff --git a/src/window.py b/src/window.py index 0f4ee72..d41dbc5 100644 --- a/src/window.py +++ b/src/window.py @@ -366,7 +366,7 @@ class CurtailWindow(Adw.ApplicationWindow): license_type=Gtk.License.GPL_3_0, website='https://github.com/Huluti/Curtail', issue_url='https://github.com/Huluti/Curtail/issues/new', - version='1.9.1', + version='1.10.0', developers=[ 'Hugo Posnic https://github.com/Huluti' ],