Skip to content

Commit bef93e4

Browse files
committed
Pre-release version changes
1 parent 58d3928 commit bef93e4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@
3232
<binary>@APP_ID@</binary>
3333
</provides>
3434
<releases>
35-
<release version="0.0.12" date="2020-08-11">
35+
<release version="0.0.12" date="2020-08-12">
3636
<description>
3737
<p>Bug fixes and Artboards improvements</p>
3838
<ul>
3939
<li>Control Artboards background color.</li>
4040
<li>Hide and Lock Artbaords from the Layers panel.</li>
4141
<li>Items inside Artboards are masked when extending outside the edges of the Artboard.</li>
42-
<li>Fix items reordering with the layers panel drag and drop</li>
43-
<li>Fix random segfault at startup while setting accelerators</li>
44-
<li>Updated goocanvas vapi</li>
42+
<li>Fix items reordering with the layers panel drag and drop.</li>
43+
<li>Fix random segfault at startup while setting accelerators.</li>
44+
<li>Updated goocanvas vapi.</li>
4545
</ul>
4646
</description>
4747
</release>
@@ -145,6 +145,6 @@
145145
<custom>
146146
<value key="x-appcenter-color-primary">#3f3f3f</value>
147147
<value key="x-appcenter-color-primary-text">#ffffff</value>
148-
<value key="x-appcenter-suggested-price">35</value>
148+
<value key="x-appcenter-suggested-price">15</value>
149149
</custom>
150150
</component>

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ com.github.akiraux.akira (0.0.12) xenial; urgency=medium
77
* Fix random segfault at startup while setting accelerators.
88
* Updated goocanvas vapi.
99

10-
-- Alessandro Castellani <[email protected]> Sun, 11 Aug 2020 09:00:00 -0800
10+
-- Alessandro Castellani <[email protected]> Sun, 12 Aug 2020 09:00:00 -0800
1111

1212
com.github.akiraux.akira (0.0.11) xenial; urgency=medium
1313

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 ("Experimental Alpha Release, say Hi to Akira!");
66+
var version_title = new Gtk.Label ("Bug fixes and Artboards improvements");
6767
version_title.get_style_context ().add_class ("h3");
6868

69-
var version_date = new Gtk.Label ("Apr 26th, 2020");
69+
var version_date = new Gtk.Label ("Aug 12th, 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 = "Create Artboards and nested basic shapes\nManage the fill and border properties of shapes\nImport images\n✓ Export custom areas, selections, and artboards\nSo many crashes and missing features you wouldn't believe, but hey, this is an experimental alpha…";
84+
release_info.buffer.text = "Control Artboards background color.\nHide and Lock Artbaords from the Layers panel.\nItems inside Artboards are masked when extending outside the edges of the Artboard.\nFix items reordering with the layers panel drag and drop.\n✓ Fix random segfault at startup while setting accelerators.\n✓ Updated goocanvas vapi.";
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.11')
7+
conf_data.set('VERSION', '0.0.12')
88
conf_data.set('PROFILE', profile)
99
conf_data.set('APP_ID', application_id)
1010

0 commit comments

Comments
 (0)