diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e1e987..754a89f 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.8] - DEV +## [0.8] - 2019-10-27 ### Added - Add an option to whether keep or not metadata of images. diff --git a/data/com.github.huluti.ImCompressor.appdata.xml.in b/data/com.github.huluti.ImCompressor.appdata.xml.in index 9260f1d..2fece3f 100644 --- a/data/com.github.huluti.ImCompressor.appdata.xml.in +++ b/data/com.github.huluti.ImCompressor.appdata.xml.in @@ -33,6 +33,15 @@ com.github.huluti.ImCompressor.desktop + + +
    +
  • Add an option to whether keep or not metadata of images
  • +
  • Replace mozjpeg lib by jpegoptim
  • +
  • Update translations
  • +
+
+
    diff --git a/meson.build b/meson.build index b56aaf8..2588d7b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('imcompressor', - version: '0.7', + version: '0.8', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', ], diff --git a/src/window.py b/src/window.py index f401f1a..3b00b0c 100644 --- a/src/window.py +++ b/src/window.py @@ -280,7 +280,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.7') + dialog.set_version('0.8') dialog.set_website('https://github.com/Huluti/ImCompressor') dialog.set_authors(['Hugo Posnic']) dialog.set_translator_credits(_("translator-credits"))