Skip to content

Commit

Permalink
Bump version to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Huluti committed Oct 11, 2019
1 parent c1cce02 commit b5a1579
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
13 changes: 13 additions & 0 deletions data/com.github.huluti.ImCompressor.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@
<launchable type="desktop-id">com.github.huluti.ImCompressor.desktop</launchable>

<releases>
<release version="0.4" date="2019-10-11">
<description>
<ul>
<li>Add a setting to change the '-min' suffix</li>
<li>Add some explanations of applied settings</li>
<li>Add Ctrl+O shortcut to open files</li>
<li>Add Dutch and German translations</li>
<li>Display translators' names in about dialog</li>
<li>Don't block the UI anymore when performing compression</li>
<li>Fix size of the preferences window</li>
</ul>
</description>
</release>
<release version="0.3" date="2019-10-10">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('imcompressor',
version: '0.3',
version: '0.4',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
],
Expand Down
2 changes: 1 addition & 1 deletion src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit b5a1579

Please sign in to comment.