Browse Source

Bump version to 1.0.2

tags/v1.0.2^0
Matt Baer 5 years ago
parent
commit
eee4191db9
4 changed files with 18 additions and 2 deletions
  1. +9
    -0
      data/writeas-gtk.appdata.xml
  2. +7
    -0
      debian/changelog
  3. +1
    -1
      meson.build
  4. +1
    -1
      src/window.vala

+ 9
- 0
data/writeas-gtk.appdata.xml View File

@@ -77,6 +77,15 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="1.0.2" date="2018-12-20">
<description>
<p>This update fixes a few minor visual issues.</p>
<ul>
<li>Fix black bar that appears in the editor on elementary OS</li>
<li>Fix currently-selected font not reflected in menu when app first loads</li>
</ul>
</description>
</release>
<release version="1.0.1" date="2018-12-14">
<description>
<p>GTK updates and fixes.</p>


+ 7
- 0
debian/changelog View File

@@ -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 <hello@write.as> Thu, 20 Dec 2018 14:20:45 -0500

writeas-gtk (1.0.1-2) xenial; urgency=medium

* Fix fonts, padding, cursor color


+ 1
- 1
meson.build View File

@@ -1,5 +1,5 @@
project('writeas-gtk', ['vala', 'c'],
version: '1.0.1',
version: '1.0.2',
license: 'GPL',
meson_version: '>=0.40.1')



+ 1
- 1
src/window.vala View File

@@ -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;


Loading…
Cancel
Save