From 5745f6d304d8cd50dd6e696728e5dab46306d59f Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Wed, 7 Aug 2019 19:43:12 +0200 Subject: [PATCH 1/2] Fix of overlapping elements --- src/views/Overview.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Overview.vala b/src/views/Overview.vala index d20f83f..2e6f81f 100644 --- a/src/views/Overview.vala +++ b/src/views/Overview.vala @@ -31,7 +31,7 @@ public class Views.Overview : Gtk.ScrolledWindow { loading_revealer.add (new Pages.LoadingPage ()); loading_revealer.reveal_child = true; - grid.attach (loading_revealer, 0, 1, 1, 1); + grid.attach (loading_revealer, 0, 0, 1, 1); var devices_label = new Gtk.Label (_("Devices")); devices_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL); From 031286ecd59c3a8f1fa5846978bcdca720fdcba6 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Wed, 7 Aug 2019 19:46:09 +0200 Subject: [PATCH 2/2] Release version 0.4.2 --- data/com.github.manexim.home.appdata.xml.in | 23 +++++++++++++++++++++ debian/changelog | 16 ++++++++++++++ src/config/Constants.vala | 2 +- 3 files changed, 40 insertions(+), 1 deletion(-) diff --git a/data/com.github.manexim.home.appdata.xml.in b/data/com.github.manexim.home.appdata.xml.in index 300fd16..1a0d482 100644 --- a/data/com.github.manexim.home.appdata.xml.in +++ b/data/com.github.manexim.home.appdata.xml.in @@ -21,6 +21,29 @@ com.github.manexim.home + + +

New:

+
    +
+

Improved:

+
    +
+

Fixed:

+
    +
  • Fix of overlapping elements
  • +
+

Translations:

+
    +
  • Russian (by camellan)
  • +
  • French (by NathanBnm)
  • +
  • German (by meisenzahl)
  • +
  • Japanese (by ryonakano)
  • +
  • Portuguese (by aimproxy)
  • +
  • Polish (by oskarkunik)
  • +
+
+

New:

diff --git a/debian/changelog b/debian/changelog index 8986356..1009c0b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +com.github.manexim.home (0.4.2) bionic; urgency=medium + +[NEW] +[IMPROVED] +[FIXED] + * Fix of overlapping elements +[TRANSLATIONS] + * Russian (by camellan) + * French (by NathanBnm) + * German (by meisenzahl) + * Japanese (by ryonakano) + * Portuguese (by aimproxy) + * Polish (by oskarkunik) + + -- Marius Meisenzahl Wed, 07 Aug 2019 19:43:12 +0200 + com.github.manexim.home (0.4.1) bionic; urgency=medium [NEW] diff --git a/src/config/Constants.vala b/src/config/Constants.vala index 9750105..1c17d67 100644 --- a/src/config/Constants.vala +++ b/src/config/Constants.vala @@ -23,5 +23,5 @@ namespace Config { public const string APP_ID = "com.github.manexim.home"; public const string APP_AUTHOR = "Manexim"; public const string APP_NAME = "Home"; - public const string APP_VERSION = "0.4.1"; + public const string APP_VERSION = "0.4.2"; }