diff --git a/data/com.github.akiraux.akira.appdata.xml.in.in b/data/com.github.akiraux.akira.appdata.xml.in.in index 61261eaa3..02c06e0d4 100644 --- a/data/com.github.akiraux.akira.appdata.xml.in.in +++ b/data/com.github.akiraux.akira.appdata.xml.in.in @@ -32,16 +32,16 @@ @APP_ID@ - +

Bug fixes and Artboards improvements

  • Control Artboards background color.
  • Hide and Lock Artbaords from the Layers panel.
  • Items inside Artboards are masked when extending outside the edges of the Artboard.
  • -
  • Fix items reordering with the layers panel drag and drop
  • -
  • Fix random segfault at startup while setting accelerators
  • -
  • Updated goocanvas vapi
  • +
  • Fix items reordering with the layers panel drag and drop.
  • +
  • Fix random segfault at startup while setting accelerators.
  • +
  • Updated goocanvas vapi.
@@ -145,6 +145,6 @@ #3f3f3f #ffffff - 35 + 15 diff --git a/debian/changelog b/debian/changelog index cd23ae0c0..6f145cea5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 11 Aug 2020 09:00:00 -0800 + -- Alessandro Castellani Sun, 12 Aug 2020 09:00:00 -0800 com.github.akiraux.akira (0.0.11) xenial; urgency=medium diff --git a/src/Dialogs/ReleaseDialog.vala b/src/Dialogs/ReleaseDialog.vala index 6ccb5adaf..f6234af06 100644 --- a/src/Dialogs/ReleaseDialog.vala +++ b/src/Dialogs/ReleaseDialog.vala @@ -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 (); @@ -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\n✓ Manage the fill and border properties of shapes\n✓ Import images\n✓ Export custom areas, selections, and artboards\n✓ So many crashes and missing features you wouldn't believe, but hey, this is an experimental alpha…"; + release_info.buffer.text = "✓ Control Artboards background color.\n✓ Hide and Lock Artbaords from the Layers panel.\n✓ Items inside Artboards are masked when extending outside the edges of the Artboard.\n✓ Fix 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; diff --git a/src/meson.build b/src/meson.build index 96ee19d26..bd5bece13 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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)