diff --git a/CHANGELOG.md b/CHANGELOG.md index d45a90f..62d3289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.3.1] - 2022-07-12 +### Added +- Make size columns sortable. +- Add Korean translation. Thank's to @MarongHappy. + +### Changed +- Update screnshots. +- Update Turkish translation. Thank's to @libreajans. +- Update French translation. Thank's to @rene-coty. +- Update Dutch translation. Thank's to @Vistaus. + +### Fixed +- Fix savings column sorting. + ## [1.3.0] - 2022-05-01 ### Added - Add option to preserve file attributes if possible. diff --git a/data/com.github.huluti.Curtail.appdata.xml.in b/data/com.github.huluti.Curtail.appdata.xml.in index a208348..db65853 100644 --- a/data/com.github.huluti.Curtail.appdata.xml.in +++ b/data/com.github.huluti.Curtail.appdata.xml.in @@ -35,6 +35,20 @@ com.github.huluti.Curtail.desktop + + +

Here's the changelog of this version:

+
    +
  • Make size columns sortable.
  • +
  • Add Korean translation. Thank's to @MarongHappy.
  • +
  • Update screnshots.
  • +
  • Update Turkish translation. Thank's to @libreajans.
  • +
  • Update French translation. Thank's to @rene-coty.
  • +
  • Update Dutch translation. Thank's to @Vistaus.
  • +
  • Fix savings column sorting.
  • +
+
+

Here's the changelog of this version:

diff --git a/debian/changelog b/debian/changelog index 4b0de5c..5b783b1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +curtail (1.3.1) focal; urgency=medium + + * Make size columns sortable. + * Add Korean translation. Thank's to @MarongHappy. + * Update screnshots. + * Update Turkish translation. Thank's to @libreajans. + * Update French translation. Thank's to @rene-coty. + * Update Dutch translation. Thank's to @Vistaus. + * Fix savings column sorting. + + -- Archisman Panigrahi Tue, 12 Jul 2022 22:56:00 +0200 + curtail (1.3.0) focal; urgency=medium * Add option to preserve file attributes if possible. diff --git a/meson.build b/meson.build index 293f179..dbb78ec 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('curtail', - version: '1.3.0', + version: '1.3.1', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', ], diff --git a/src/window.py b/src/window.py index c92bc1c..51e583a 100644 --- a/src/window.py +++ b/src/window.py @@ -326,7 +326,7 @@ def on_about(self, *args): dialog = Gtk.AboutDialog(transient_for=self) dialog.set_logo_icon_name('com.github.huluti.Curtail') dialog.set_program_name('Curtail') - dialog.set_version('1.3.0') + dialog.set_version('1.3.1') dialog.set_website('https://github.com/Huluti/Curtail') dialog.set_authors(['Hugo Posnic', 'Steven Teskey', 'Andrey Kozlovskiy', 'Balló György', 'olokelo', 'Archisman Panigrahi']) dialog.set_translator_credits(_("translator-credits"))