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 Jul 21, 2021
1 parent 568e89e commit 190a5c4
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
15 changes: 15 additions & 0 deletions data/com.github.akiraux.akira.appdata.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@
<binary>@APP_ID@</binary>
</provides>
<releases>
<release version="0.0.15" date="2021-07-20">
<description>
<p>Performance improvements and Global colors library</p>
<ul>
<li>Improved "Modes" detection (insert, select, transform).</li>
<li>Fixed Artboard label issues on zoom.</li>
<li>Improved Pixel Grid detection and z-index stack with other items.</li>
<li>Implemented editable zoom value.</li>
<li>Fix application activation when opening a new file.</li>
<li>Fix sizing issue when dropping images into the Canvas.</li>
<li>Implemented Global colors library.</li>
<li>Italian translation.</li>
</ul>
</description>
</release>
<release version="0.0.14" date="2021-04-25">
<description>
<p>New Features and Bug Fixes</p>
Expand Down
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
com.github.akiraux.akira (0.0.15) xenial; urgency=medium

* Improved "Modes" detection (insert, select, transform).
* Fixed Artboard label issues on zoom.
* Improved Pixel Grid detection and z-index stack with other items.
* Implemented editable zoom value.
* Fix application activation when opening a new file.
* Fix sizing issue when dropping images into the Canvas.
* Implemented Global colors library.
* Italian translation.

-- Alessandro Castellani <[email protected]> Tue, 20 Jul 2021 09:00:00 -0800

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

* Complete rebuild of the Canvas library architecture.
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 ("New Features and Bug Fixes");
var version_title = new Gtk.Label ("Performance improvements and Global colors library");
version_title.get_style_context ().add_class ("h3");

var version_date = new Gtk.Label ("Sept 2nd, 2020");
var version_date = new Gtk.Label ("Jul 20th, 2021");
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 = "Complete rebuild of the Canvas library architecture.\nImplemented Pixel Grid.\n✓ Customize color of Pixel Grid.\nImplemented smart Snapping Guides.\n✓ Customize color and magnetic threshold of Snapping Guides.\nAllow items resizing in all directions.\nAdd images via click and drag with the Image Tool.\nHandle multiple Fills and Border colors for each item.\n✓ Allow scaling items from the center.\nEnable dropping images on the canvas.\nA lot of code improvements and optimization.\n";
release_info.buffer.text = "Improved 'Modes' detection (insert, select, transform).\nFixed Artboard label issues on zoom.\nImproved Pixel Grid detection and z-index stack with other items.\nImplemented editable zoom value.\nFix application activation when opening a new file.\nFix sizing issue when dropping images into the Canvas.\nImplemented Global colors library.\nItalian translation.\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.14')
conf_data.set('VERSION', '0.0.15')
conf_data.set('PROFILE', profile)
conf_data.set('APP_ID', application_id)

Expand Down

0 comments on commit 190a5c4

Please sign in to comment.