Browse Source

Bump version to 1.0.1

master-code
Matt Baer 5 years ago
parent
commit
708de8f0ae
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.1" date="2018-12-14">
<description>
<p>GTK updates and fixes.</p>
<ul>
<li>Fix fonts, padding, cursor color</li>
<li>Increase the default font size</li>
</ul>
</description>
</release>
<release version="1.0.0" date="2018-10-01">
<description>
<p>Initial release</p>


+ 7
- 0
debian/changelog View File

@@ -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 <hello@write.as> Fri, 14 Dec 2018 15:22:09 -0500

writeas-gtk (1.0.0-1) xenial; urgency=medium

* Initial Release.


+ 1
- 1
meson.build View File

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



+ 1
- 1
src/window.vala View File

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


Loading…
Cancel
Save