Skip to content

Commit

Permalink
Pre-release version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Alecaddd committed Sep 3, 2020
1 parent 0e9a9ca commit aff122b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
7 changes: 4 additions & 3 deletions data/com.github.akiraux.akira.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,17 @@
<binary>@APP_ID@</binary>
</provides>
<releases>
<release version="0.0.13" date="2020-08-17">
<release version="0.0.13" date="2020-09-02">
<description>
<p>Bug fixes and improvements</p>
<p>New Features and Bug Fixes</p>
<ul>
<li>New color picker for Fills and Borders.</li>
<li>Zooming with mouse wheel follows the position of the cursor.</li>
<li>Fix loading Artboards background color when opening a file.</li>
<li>Fix numbering of newly created items.</li>
<li>Fix Gtk-CRITICAL warning when opening the Export Dialog.</li>
<li>Fix flipping items inside Artboards.</li>
<li>Fix crash when dropping flipped items inside Artboards.</li>
<li>Zooming with mouse wheel follows the position of the cursor.</li>
<li>General code improvements and optimization.</li>
</ul>
</description>
Expand Down
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
com.github.akiraux.akira (0.0.13) xenial; urgency=medium

* New color picker for Fills and Borders.
* Zooming with mouse wheel follows the position of the cursor.
* Fix loading Artboards background color when opening a file.
* Fix numbering of newly created items.
* Fix Gtk-CRITICAL warning when opening the Export Dialog.
* Fix flipping items inside Artboards.
* Fix crash when dropping flipped items inside Artboards.
* Zooming with mouse wheel follows the position of the cursor.
* General code improvements and optimization.

-- Alessandro Castellani <castellani.ale@gmail.com> Sun, 17 Aug 2020 09:00:00 -0800
-- Alessandro Castellani <castellani.ale@gmail.com> Wed, 02 Sept 2020 09:00:00 -0800

com.github.akiraux.akira (0.0.12) xenial; urgency=medium

Expand Down
6 changes: 3 additions & 3 deletions src/Dialogs/ReleaseDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ public class Akira.Dialogs.ReleaseDialog : Gtk.Dialog {
app_version.get_style_context ().add_class ("h2");
app_version.selectable = true;

var version_title = new Gtk.Label ("Bug fixes and improvements");
var version_title = new Gtk.Label ("New Features and Bug Fixes");
version_title.get_style_context ().add_class ("h3");

var version_date = new Gtk.Label ("Aug 12th, 2020");
var version_date = new Gtk.Label ("Sept 2nd, 2020");
version_date.get_style_context ().add_class ("dim-label");

var header_grid = new Gtk.Grid ();
Expand All @@ -81,7 +81,7 @@ public class Akira.Dialogs.ReleaseDialog : Gtk.Dialog {
scrolled.expand = true;

var release_info = new Gtk.TextView ();
release_info.buffer.text = "✓ Fix loading Artboards background color when opening a file.\nGeneral code improvements and optimization.\nFix numbering of newly created items.\n✓ Fix Gtk-CRITICAL warning when opening the Export Dialog.\n✓ Fix flipping items inside Artboards.\n✓ Fix crash when dropping flipped items inside Artboards.\nZooming with mouse wheel follows the position of the cursor.\n";
release_info.buffer.text = "New color picker for Fills and Borders.\n✓ Zooming with mouse wheel follows the position of the cursor.\nFix loading Artboards background color when opening a file.\n✓ Fix numbering of newly created items.\n✓ Fix Gtk-CRITICAL warning when opening the Export Dialog.\n✓ Fix flipping items inside Artboards.\n✓ Fix crash when dropping flipped items inside Artboards.\nGeneral code improvements and optimization.\n";
release_info.pixels_below_lines = 3;
release_info.border_width = 12;
release_info.wrap_mode = Gtk.WrapMode.WORD;
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ conf_data.set('PREFIX', akira_prefix)
conf_data.set('DATADIR', akira_datadir)
conf_data.set('PKGDATADIR',akira_pkgdatadir)
conf_data.set('GETTEXT_PACKAGE', gettext_package)
conf_data.set('VERSION', '0.0.12')
conf_data.set('VERSION', '0.0.13')
conf_data.set('PROFILE', profile)
conf_data.set('APP_ID', application_id)

Expand Down

0 comments on commit aff122b

Please sign in to comment.