diff --git a/data/com.github.writeas.writeas-gtk.appdata.xml b/data/com.github.writeas.writeas-gtk.appdata.xml index dc45859..bbec7a3 100644 --- a/data/com.github.writeas.writeas-gtk.appdata.xml +++ b/data/com.github.writeas.writeas-gtk.appdata.xml @@ -77,6 +77,15 @@ none + + +

This update fixes a few minor visual issues.

+
    +
  • Fix black bar that appears in the editor on elementary OS
  • +
  • Fix currently-selected font not reflected in menu when app first loads
  • +
+
+

GTK updates and fixes.

diff --git a/debian/changelog b/debian/changelog index 330cd5b..c2050fd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +writeas-gtk (1.0.2-3) xenial; urgency=medium + + * Fix black bar that appears in the editor on elementary OS + * Fix currently-selected font not reflected in menu when app first loads + + -- Write.as Thu, 20 Dec 2018 14:20:45 -0500 + writeas-gtk (1.0.1-2) xenial; urgency=medium * Fix fonts, padding, cursor color diff --git a/meson.build b/meson.build index 224792e..f1f90cb 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('com.github.writeas.writeas-gtk', ['vala', 'c'], - version: '1.0.1', + version: '1.0.2', license: 'GPL', meson_version: '>=0.40.1') diff --git a/src/window.vala b/src/window.vala index ce81e2a..bbfd2c9 100644 --- a/src/window.vala +++ b/src/window.vala @@ -25,7 +25,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow { private Gtk.RadioMenuItem font_wrap_option; private static string data_dir = ".writeas"; - private static string version = "1.0.1"; + private static string version = "1.0.2"; private int font_size = 16; private bool dark_mode = false;