diff --git a/CHANGELOG.md b/CHANGELOG.md index d794f21..958a08b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. + +## 1.9.1 - 2024-04-12 +### Fixed +- Use default decoration layout for screenshots + ## 1.9.0 - 2024-04-12 ### Changed - Correct title case, reword subtitles, remove periods. Thank's to @MonsterObserver. diff --git a/data/com.github.huluti.Curtail.appdata.xml.in b/data/com.github.huluti.Curtail.appdata.xml.in index a707ddb..f14d7db 100644 --- a/data/com.github.huluti.Curtail.appdata.xml.in +++ b/data/com.github.huluti.Curtail.appdata.xml.in @@ -38,6 +38,14 @@ curtail com.github.huluti.Curtail.desktop + + +

Here's the changelog of this version:

+
    +
  • Use default decoration layout for screenshots
  • +
+
+

Here's the changelog of this version:

diff --git a/debian/changelog b/debian/changelog index 9b5ffb1..11ad20f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +curtail (1.9.1) focal; urgency=medium + + * Use default decoration layout for screenshots. + + -- Archisman Panigrahi Fri, 12 Apr 2024 13:40 +0200 + curtail (1.9.0) focal; urgency=medium * Correct title case, reword subtitles, remove periods. Thank's to @MonsterObserver. diff --git a/meson.build b/meson.build index 41efb80..29394a0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('curtail', - version: '1.9.0', + version: '1.9.1', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/pyproject.toml b/pyproject.toml index d6ba067..7765dd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "curtail" -version = "1.9.0" +version = "1.9.1" description = "" authors = ["Hugo Posnic "] license = "GPLv3" diff --git a/src/window.py b/src/window.py index 2573021..0f0f37d 100644 --- a/src/window.py +++ b/src/window.py @@ -363,7 +363,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.0', + version='1.9.1', developers=[ 'Hugo Posnic https://github.com/Huluti' ],