Skip to content

Commit 1c7a354

Browse files
committed
Prepare for release
1 parent 85b0124 commit 1c7a354

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ case $(basename $DC) in
4040
esac
4141

4242
# Checks for libraries.
43-
GTKDVER=3.8.3
43+
GTKDVER=3.8.4
4444
# Use pkg-config to look for gtkd. Tries to find a compiler specific suffix, then falls back to suffix-less
4545
PKG_CHECK_MODULES([GTKD], [gtkd-3$DC_SUFFIX >= $GTKDVER vted-3$DC_SUFFIX >= $GTKDVER],,
4646
[PKG_CHECK_MODULES([GTKD], [gtkd-3 >= $GTKDVER vted-3 >= $GTKDVER])])

data/appdata/com.gexperts.Tilix.appdata.xml.in

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,13 @@
3838
</screenshots>
3939

4040
<releases>
41-
<release version="1.8.5" date="2018-08-27">
41+
<release version="1.8.7" date="2019-01-03">
4242
<description>
43-
<p>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.</p>
43+
<p>Some new features and bug fixes, please see https://gnunn1.github.io/tilix-web/ for specific information about this release.</p>
4444
</description>
4545
</release>
46-
<release version="1.8.3" date="2018-08-19"/>
4746
</releases>
48-
47+
4948
<kudos>
5049
<kudo>HiDpiIcon</kudo>
5150
<kudo>ModernToolkit</kudo>
@@ -64,4 +63,4 @@
6463
<provides>
6564
<binary>tilix</binary>
6665
</provides>
67-
</component>
66+
</component>

meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ sources_dir = include_directories('source/')
9494

9595
# Dependencies
9696
# Note relying on dub to fetch and build dependencies before running meson build is temporary due to a bug in Meson 0.48
97-
# gtkd_dep = dependency('gtkd-3', version: '>= 3.8.3')
98-
# vted_dep = dependency('vted-3', version: '>= 3.8.3')
97+
# gtkd_dep = dependency('gtkd-3', version: '>= 3.8.4')
98+
# vted_dep = dependency('vted-3', version: '>= 3.8.4')
9999

100-
gtkd_dep = dependency('gtk-d:gtkd', version: '>=3.8.3', method: 'dub')
101-
vted_dep = dependency('gtk-d:vte', version: '>=3.8.3', method: 'dub')
100+
gtkd_dep = dependency('gtk-d:gtkd', version: '>=3.8.4', method: 'dub')
101+
vted_dep = dependency('gtk-d:vte', version: '>=3.8.4', method: 'dub')
102102
xlib_dep = dependency('x11')
103103
libunwind_dep = dependency('libunwind')
104104
msgfmt = find_program('msgfmt')

source/gx/tilix/constants.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ enum APPLICATION_ID = "com.gexperts.Tilix";
6666

6767
// Application values used in About Dialog
6868
enum APPLICATION_NAME = "Tilix";
69-
enum APPLICATION_VERSION = "1.8.6-0.2.0";
69+
enum APPLICATION_VERSION = "1.8.7";
7070
enum APPLICATION_AUTHOR = "Gerald Nunn";
71-
enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2017 " ~ APPLICATION_AUTHOR;
71+
enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2019 " ~ APPLICATION_AUTHOR;
7272
enum APPLICATION_COMMENTS = N_("A VTE based terminal emulator for Linux");
7373
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/.");
7474
enum APPLICATION_ICON_NAME = "com.gexperts.Tilix";

0 commit comments

Comments
 (0)