Skip to content

Commit 190a5c4

Browse files
committed
Pre-release version bump
1 parent 568e89e commit 190a5c4

File tree

4 files changed

+32
-4
lines changed

4 files changed

+32
-4
lines changed

data/com.github.akiraux.akira.appdata.xml.in.in

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,21 @@
3232
<binary>@APP_ID@</binary>
3333
</provides>
3434
<releases>
35+
<release version="0.0.15" date="2021-07-20">
36+
<description>
37+
<p>Performance improvements and Global colors library</p>
38+
<ul>
39+
<li>Improved "Modes" detection (insert, select, transform).</li>
40+
<li>Fixed Artboard label issues on zoom.</li>
41+
<li>Improved Pixel Grid detection and z-index stack with other items.</li>
42+
<li>Implemented editable zoom value.</li>
43+
<li>Fix application activation when opening a new file.</li>
44+
<li>Fix sizing issue when dropping images into the Canvas.</li>
45+
<li>Implemented Global colors library.</li>
46+
<li>Italian translation.</li>
47+
</ul>
48+
</description>
49+
</release>
3550
<release version="0.0.14" date="2021-04-25">
3651
<description>
3752
<p>New Features and Bug Fixes</p>

debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
com.github.akiraux.akira (0.0.15) xenial; urgency=medium
2+
3+
* Improved "Modes" detection (insert, select, transform).
4+
* Fixed Artboard label issues on zoom.
5+
* Improved Pixel Grid detection and z-index stack with other items.
6+
* Implemented editable zoom value.
7+
* Fix application activation when opening a new file.
8+
* Fix sizing issue when dropping images into the Canvas.
9+
* Implemented Global colors library.
10+
* Italian translation.
11+
12+
-- Alessandro Castellani <[email protected]> Tue, 20 Jul 2021 09:00:00 -0800
13+
114
com.github.akiraux.akira (0.0.14) xenial; urgency=medium
215

316
* Complete rebuild of the Canvas library architecture.

src/Dialogs/ReleaseDialog.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public class Akira.Dialogs.ReleaseDialog : Gtk.Dialog {
6363
app_version.get_style_context ().add_class ("h2");
6464
app_version.selectable = true;
6565

66-
var version_title = new Gtk.Label ("New Features and Bug Fixes");
66+
var version_title = new Gtk.Label ("Performance improvements and Global colors library");
6767
version_title.get_style_context ().add_class ("h3");
6868

69-
var version_date = new Gtk.Label ("Sept 2nd, 2020");
69+
var version_date = new Gtk.Label ("Jul 20th, 2021");
7070
version_date.get_style_context ().add_class ("dim-label");
7171

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

8383
var release_info = new Gtk.TextView ();
84-
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";
84+
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";
8585
release_info.pixels_below_lines = 3;
8686
release_info.border_width = 12;
8787
release_info.wrap_mode = Gtk.WrapMode.WORD;

src/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ conf_data.set('PREFIX', akira_prefix)
44
conf_data.set('DATADIR', akira_datadir)
55
conf_data.set('PKGDATADIR',akira_pkgdatadir)
66
conf_data.set('GETTEXT_PACKAGE', gettext_package)
7-
conf_data.set('VERSION', '0.0.14')
7+
conf_data.set('VERSION', '0.0.15')
88
conf_data.set('PROFILE', profile)
99
conf_data.set('APP_ID', application_id)
1010

0 commit comments

Comments
 (0)