Skip to content

Commit

Permalink
Pre-release version changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alecaddd committed Aug 12, 2020
1 parent 58d3928 commit bef93e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 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,16 @@
<binary>@APP_ID@</binary>
</provides>
<releases>
<release version="0.0.12" date="2020-08-11">
<release version="0.0.12" date="2020-08-12">
<description>
<p>Bug fixes and Artboards improvements</p>
<ul>
<li>Control Artboards background color.</li>
<li>Hide and Lock Artbaords from the Layers panel.</li>
<li>Items inside Artboards are masked when extending outside the edges of the Artboard.</li>
<li>Fix items reordering with the layers panel drag and drop</li>
<li>Fix random segfault at startup while setting accelerators</li>
<li>Updated goocanvas vapi</li>
<li>Fix items reordering with the layers panel drag and drop.</li>
<li>Fix random segfault at startup while setting accelerators.</li>
<li>Updated goocanvas vapi.</li>
</ul>
</description>
</release>
Expand Down Expand Up @@ -145,6 +145,6 @@
<custom>
<value key="x-appcenter-color-primary">#3f3f3f</value>
<value key="x-appcenter-color-primary-text">#ffffff</value>
<value key="x-appcenter-suggested-price">35</value>
<value key="x-appcenter-suggested-price">15</value>
</custom>
</component>
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ com.github.akiraux.akira (0.0.12) xenial; urgency=medium
* Fix random segfault at startup while setting accelerators.
* Updated goocanvas vapi.

-- Alessandro Castellani <castellani.ale@gmail.com> Sun, 11 Aug 2020 09:00:00 -0800
-- Alessandro Castellani <castellani.ale@gmail.com> Sun, 12 Aug 2020 09:00:00 -0800

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

var version_date = new Gtk.Label ("Apr 26th, 2020");
var version_date = new Gtk.Label ("Aug 12th, 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 = "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…";
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.";
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.11')
conf_data.set('VERSION', '0.0.12')
conf_data.set('PROFILE', profile)
conf_data.set('APP_ID', application_id)

Expand Down

0 comments on commit bef93e4

Please sign in to comment.