Skip to content

Commit aff122b

Browse files
committed
Pre-release version bump
1 parent 0e9a9ca commit aff122b

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,17 @@
3232
<binary>@APP_ID@</binary>
3333
</provides>
3434
<releases>
35-
<release version="0.0.13" date="2020-08-17">
35+
<release version="0.0.13" date="2020-09-02">
3636
<description>
37-
<p>Bug fixes and improvements</p>
37+
<p>New Features and Bug Fixes</p>
3838
<ul>
39+
<li>New color picker for Fills and Borders.</li>
40+
<li>Zooming with mouse wheel follows the position of the cursor.</li>
3941
<li>Fix loading Artboards background color when opening a file.</li>
4042
<li>Fix numbering of newly created items.</li>
4143
<li>Fix Gtk-CRITICAL warning when opening the Export Dialog.</li>
4244
<li>Fix flipping items inside Artboards.</li>
4345
<li>Fix crash when dropping flipped items inside Artboards.</li>
44-
<li>Zooming with mouse wheel follows the position of the cursor.</li>
4546
<li>General code improvements and optimization.</li>
4647
</ul>
4748
</description>

debian/changelog

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
com.github.akiraux.akira (0.0.13) xenial; urgency=medium
22

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

11-
-- Alessandro Castellani <[email protected]> Sun, 17 Aug 2020 09:00:00 -0800
12+
-- Alessandro Castellani <[email protected]> Wed, 02 Sept 2020 09:00:00 -0800
1213

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

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 ("Bug fixes and improvements");
66+
var version_title = new Gtk.Label ("New Features and Bug Fixes");
6767
version_title.get_style_context ().add_class ("h3");
6868

69-
var version_date = new Gtk.Label ("Aug 12th, 2020");
69+
var version_date = new Gtk.Label ("Sept 2nd, 2020");
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 = "✓ 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";
84+
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";
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.12')
7+
conf_data.set('VERSION', '0.0.13')
88
conf_data.set('PROFILE', profile)
99
conf_data.set('APP_ID', application_id)
1010

0 commit comments

Comments
 (0)