From 708de8f0ae86331aed7f3dd23c5ecc555d044650 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Fri, 14 Dec 2018 16:33:07 -0500 Subject: [PATCH] Bump version to 1.0.1 --- data/writeas-gtk.appdata.xml | 9 +++++++++ debian/changelog | 7 +++++++ meson.build | 2 +- src/window.vala | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/data/writeas-gtk.appdata.xml b/data/writeas-gtk.appdata.xml index 94636d9..74b7c67 100644 --- a/data/writeas-gtk.appdata.xml +++ b/data/writeas-gtk.appdata.xml @@ -77,6 +77,15 @@ none + + +

GTK updates and fixes.

+
    +
  • Fix fonts, padding, cursor color
  • +
  • Increase the default font size
  • +
+
+

Initial release

diff --git a/debian/changelog b/debian/changelog index 7b74212..330cd5b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +writeas-gtk (1.0.1-2) xenial; urgency=medium + + * Fix fonts, padding, cursor color + * Increase the default font size + + -- Write.as Fri, 14 Dec 2018 15:22:09 -0500 + writeas-gtk (1.0.0-1) xenial; urgency=medium * Initial Release. diff --git a/meson.build b/meson.build index 1ccd4b8..27c3037 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('writeas-gtk', ['vala', 'c'], - version: '1.0.0', + version: '1.0.1', license: 'GPL', meson_version: '>=0.40.1') diff --git a/src/window.vala b/src/window.vala index 494a450..9c0c64a 100644 --- a/src/window.vala +++ b/src/window.vala @@ -22,7 +22,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow { private Gtk.ToggleButton darkmode_button; private static string data_dir = ".writeas"; - private static string version = "1.0.0"; + private static string version = "1.0.1"; private int font_size = 16; private bool dark_mode = false;