From aff122b4b37dac846569820c9bc531aa51766823 Mon Sep 17 00:00:00 2001 From: Alecaddd Date: Wed, 2 Sep 2020 21:26:33 -0700 Subject: [PATCH] Pre-release version bump --- data/com.github.akiraux.akira.appdata.xml.in.in | 7 ++++--- debian/changelog | 5 +++-- src/Dialogs/ReleaseDialog.vala | 6 +++--- src/meson.build | 2 +- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/data/com.github.akiraux.akira.appdata.xml.in.in b/data/com.github.akiraux.akira.appdata.xml.in.in index ee7a537ad..63853e807 100644 --- a/data/com.github.akiraux.akira.appdata.xml.in.in +++ b/data/com.github.akiraux.akira.appdata.xml.in.in @@ -32,16 +32,17 @@ @APP_ID@ - + -

Bug fixes and improvements

+

New Features and Bug Fixes

    +
  • New color picker for Fills and Borders.
  • +
  • Zooming with mouse wheel follows the position of the cursor.
  • Fix loading Artboards background color when opening a file.
  • Fix numbering of newly created items.
  • Fix Gtk-CRITICAL warning when opening the Export Dialog.
  • Fix flipping items inside Artboards.
  • Fix crash when dropping flipped items inside Artboards.
  • -
  • Zooming with mouse wheel follows the position of the cursor.
  • General code improvements and optimization.
diff --git a/debian/changelog b/debian/changelog index 789e65724..0e575cbfd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,14 +1,15 @@ com.github.akiraux.akira (0.0.13) xenial; urgency=medium + * New color picker for Fills and Borders. + * Zooming with mouse wheel follows the position of the cursor. * Fix loading Artboards background color when opening a file. * Fix numbering of newly created items. * Fix Gtk-CRITICAL warning when opening the Export Dialog. * Fix flipping items inside Artboards. * Fix crash when dropping flipped items inside Artboards. - * Zooming with mouse wheel follows the position of the cursor. * General code improvements and optimization. - -- Alessandro Castellani Sun, 17 Aug 2020 09:00:00 -0800 + -- Alessandro Castellani Wed, 02 Sept 2020 09:00:00 -0800 com.github.akiraux.akira (0.0.12) xenial; urgency=medium diff --git a/src/Dialogs/ReleaseDialog.vala b/src/Dialogs/ReleaseDialog.vala index 5fa0216c7..77c8cd8c1 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 ("Bug fixes and improvements"); + var version_title = new Gtk.Label ("New Features and Bug Fixes"); version_title.get_style_context ().add_class ("h3"); - var version_date = new Gtk.Label ("Aug 12th, 2020"); + var version_date = new Gtk.Label ("Sept 2nd, 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 = "✓ Fix loading Artboards background color when opening a file.\n✓ General code improvements and optimization.\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.\n✓ Zooming with mouse wheel follows the position of the cursor.\n"; + release_info.buffer.text = "✓ New color picker for Fills and Borders.\n✓ Zooming with mouse wheel follows the position of the cursor.\n✓ Fix 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.\n✓ General code improvements and optimization.\n"; 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 6d6c1310c..ce38c12cc 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.12') +conf_data.set('VERSION', '0.0.13') conf_data.set('PROFILE', profile) conf_data.set('APP_ID', application_id)