diff --git a/data/com.github.devalien.workspaces.appdata.xml.in b/data/com.github.devalien.workspaces.appdata.xml.in index a31b6f2..0e5811e 100644 --- a/data/com.github.devalien.workspaces.appdata.xml.in +++ b/data/com.github.devalien.workspaces.appdata.xml.in @@ -67,7 +67,15 @@ - + + +

Fixes

+
    +
  • Fix control file for deb packaging
  • +
+
+
+

Improvementes

    diff --git a/debian/changelog b/debian/changelog index 85949d1..a237fdb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +com.github.devalien.workspaces (1.0.5) RELEASED; urgency=low + + * Fix control file for deb packaging. * + + -- Goncalo Margalho Mon, 17 Aug 2020 13:41:57 +0200 + com.github.devalien.workspaces (1.0.4) RELEASED; urgency=low * Release for elementary OS. * diff --git a/debian/control b/debian/control index bc944cf..812bc15 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Goncalo Margalho Build-Depends: cmake (>= 2.8), debhelper (>= 9), libgtk-3-dev, - valac (>= 0.40.0) + valac (>= 0.40.0), libgranite-dev, libjson-glib-dev, libgee-0.8-dev diff --git a/meson.build b/meson.build index 4349a4a..e314854 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project ( 'com.github.devalien.workspaces', 'vala', 'c', - version: '1.0.4' + version: '1.0.5' ) # Translation module diff --git a/src/Application.vala b/src/Application.vala index 693b81a..2ee701e 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -27,7 +27,7 @@ public class Workspaces.Application : Gtk.Application { public Workspaces.Controllers.WorkspacesController workspaces_controller; - public const string APP_VERSION = "1.0.4"; + public const string APP_VERSION = "1.0.5"; public const string APP_ID = "com.github.devalien.workspaces"; private bool show_quick_launch = false;