From 57e18607e8ffe7c54e101562bf74c6898f5879e8 Mon Sep 17 00:00:00 2001 From: Louis Brauer Date: Thu, 10 Jun 2021 00:42:40 +0200 Subject: [PATCH] Prepare for release 1.4.0 --- data/com.github.louis77.tuner.appdata.xml.in | 17 +++++++++++++++++ debian/changelog | 11 +++++++++++ meson.build | 2 +- src/Application.vala | 2 +- 4 files changed, 30 insertions(+), 2 deletions(-) diff --git a/data/com.github.louis77.tuner.appdata.xml.in b/data/com.github.louis77.tuner.appdata.xml.in index f1e27bb..4336de0 100644 --- a/data/com.github.louis77.tuner.appdata.xml.in +++ b/data/com.github.louis77.tuner.appdata.xml.in @@ -59,6 +59,23 @@ + + +

New features:

+
    +
  • Show codec and bitrate on station
  • +
  • New volume control
  • +
  • New setting: Auto-play last station
  • +
+

Other improvements:

+
    +
  • Dark mode is now saved in settings
  • +
  • Improved Italian translation
  • +
  • Properly set Window name
  • +
+
+
+

Other improvements:

diff --git a/debian/changelog b/debian/changelog index 2732a8c..0e15ce9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +com.github.louis77.tuner (1.4.0) RELEASED; urgency=medium + + * Show codec and bitrate on station + * New volume control in header bar + * Dark mode is now saved in settings + * New setting: Auto-play last station + * Properly set Window name + + -- Louis Brauer Thu, 09 Jun 2021 23:00:00 +0200 + + com.github.louis77.tuner (1.3.1) RELEASED; urgency=medium * Added Turkish translation diff --git a/meson.build b/meson.build index 4c75387..6e4ce7b 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project ( 'com.github.louis77.tuner', 'vala', 'c', - version: '1.3.1' + version: '1.4.0' ) # if meson.get_compiler ('vala').get_id() == 'valac' diff --git a/src/Application.vala b/src/Application.vala index 7a3e017..09d6c32 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -27,7 +27,7 @@ public class Tuner.Application : Gtk.Application { public Window window; - public const string APP_VERSION = "1.3.1"; + public const string APP_VERSION = "1.4.0"; public const string APP_ID = "com.github.louis77.tuner"; public const string STAR_CHAR = "★ "; public const string UNSTAR_CHAR = "☆ ";