diff --git a/configure.ac b/configure.ac index d07e3fcc..0b230e27 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,7 @@ case $(basename $DC) in esac # Checks for libraries. -GTKDVER=3.8.3 +GTKDVER=3.8.4 # Use pkg-config to look for gtkd. Tries to find a compiler specific suffix, then falls back to suffix-less PKG_CHECK_MODULES([GTKD], [gtkd-3$DC_SUFFIX >= $GTKDVER vted-3$DC_SUFFIX >= $GTKDVER],, [PKG_CHECK_MODULES([GTKD], [gtkd-3 >= $GTKDVER vted-3 >= $GTKDVER])]) diff --git a/data/appdata/com.gexperts.Tilix.appdata.xml.in b/data/appdata/com.gexperts.Tilix.appdata.xml.in index 8194132c..406856d8 100644 --- a/data/appdata/com.gexperts.Tilix.appdata.xml.in +++ b/data/appdata/com.gexperts.Tilix.appdata.xml.in @@ -38,14 +38,13 @@ - + -

This release is just to fix a bug that prevents the tilix preferences from working on GTK releases earlier then 3.22, no other changes have been made.

+

Some new features and bug fixes, please see https://gnunn1.github.io/tilix-web/ for specific information about this release.

-
- + HiDpiIcon ModernToolkit @@ -64,4 +63,4 @@ tilix - + \ No newline at end of file diff --git a/meson.build b/meson.build index c0909644..cfdb080e 100644 --- a/meson.build +++ b/meson.build @@ -94,11 +94,11 @@ sources_dir = include_directories('source/') # Dependencies # Note relying on dub to fetch and build dependencies before running meson build is temporary due to a bug in Meson 0.48 -# gtkd_dep = dependency('gtkd-3', version: '>= 3.8.3') -# vted_dep = dependency('vted-3', version: '>= 3.8.3') +# gtkd_dep = dependency('gtkd-3', version: '>= 3.8.4') +# vted_dep = dependency('vted-3', version: '>= 3.8.4') -gtkd_dep = dependency('gtk-d:gtkd', version: '>=3.8.3', method: 'dub') -vted_dep = dependency('gtk-d:vte', version: '>=3.8.3', method: 'dub') +gtkd_dep = dependency('gtk-d:gtkd', version: '>=3.8.4', method: 'dub') +vted_dep = dependency('gtk-d:vte', version: '>=3.8.4', method: 'dub') xlib_dep = dependency('x11') libunwind_dep = dependency('libunwind') msgfmt = find_program('msgfmt') diff --git a/source/gx/tilix/constants.d b/source/gx/tilix/constants.d index 84fe03f0..fdcc83c9 100644 --- a/source/gx/tilix/constants.d +++ b/source/gx/tilix/constants.d @@ -66,9 +66,9 @@ enum APPLICATION_ID = "com.gexperts.Tilix"; // Application values used in About Dialog enum APPLICATION_NAME = "Tilix"; -enum APPLICATION_VERSION = "1.8.6-0.2.0"; +enum APPLICATION_VERSION = "1.8.7"; enum APPLICATION_AUTHOR = "Gerald Nunn"; -enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2017 " ~ APPLICATION_AUTHOR; +enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2019 " ~ APPLICATION_AUTHOR; enum APPLICATION_COMMENTS = N_("A VTE based terminal emulator for Linux"); enum APPLICATION_LICENSE = N_("This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/."); enum APPLICATION_ICON_NAME = "com.gexperts.Tilix";