From b5a15793dc24da222a06512b910c51378be66ace Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Fri, 11 Oct 2019 17:55:13 +0200 Subject: [PATCH] Bump version to 0.4 --- CHANGELOG.md | 2 +- data/com.github.huluti.ImCompressor.appdata.xml.in | 13 +++++++++++++ meson.build | 2 +- src/window.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03637cf..2c386d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. -## [0.4] - DEV +## [0.4] - 2019-10-11 ### Added - Add a setting to change the '-min' suffix. - Add some explanations of applied settings. diff --git a/data/com.github.huluti.ImCompressor.appdata.xml.in b/data/com.github.huluti.ImCompressor.appdata.xml.in index f4e2f64..47149ea 100644 --- a/data/com.github.huluti.ImCompressor.appdata.xml.in +++ b/data/com.github.huluti.ImCompressor.appdata.xml.in @@ -32,6 +32,19 @@ com.github.huluti.ImCompressor.desktop + + +
    +
  • Add a setting to change the '-min' suffix
  • +
  • Add some explanations of applied settings
  • +
  • Add Ctrl+O shortcut to open files
  • +
  • Add Dutch and German translations
  • +
  • Display translators' names in about dialog
  • +
  • Don't block the UI anymore when performing compression
  • +
  • Fix size of the preferences window
  • +
+
+
    diff --git a/meson.build b/meson.build index eece9ed..e139e8b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('imcompressor', - version: '0.3', + version: '0.4', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', ], diff --git a/src/window.py b/src/window.py index 180a10a..2dadbf9 100644 --- a/src/window.py +++ b/src/window.py @@ -254,7 +254,7 @@ def on_about(self, *args): dialog = Gtk.AboutDialog(transient_for=self) dialog.set_logo_icon_name('com.github.huluti.ImCompressor') dialog.set_program_name('ImCompressor') - dialog.set_version('0.3') + dialog.set_version('0.4') dialog.set_website('https://github.com/Huluti/ImCompressor') dialog.set_authors(['Hugo Posnic']) dialog.set_translator_credits(_("translator-credits"))