Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Jan 4, 2019
1 parent 85b0124 commit 1c7a354
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -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])])
Expand Down
9 changes: 4 additions & 5 deletions data/appdata/com.gexperts.Tilix.appdata.xml.in
Expand Up @@ -38,14 +38,13 @@
</screenshots>

<releases>
<release version="1.8.5" date="2018-08-27">
<release version="1.8.7" date="2019-01-03">
<description>
<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>
<p>Some new features and bug fixes, please see https://gnunn1.github.io/tilix-web/ for specific information about this release.</p>
</description>
</release>
<release version="1.8.3" date="2018-08-19"/>

This comment has been minimized.

Copy link
@bilelmoussaoui

bilelmoussaoui Jan 4, 2019

Contributor

It's always better to keep at least two versions, a lot of Software centers will show
"Updating Tilix from X version to Y version."

</releases>

<kudos>
<kudo>HiDpiIcon</kudo>
<kudo>ModernToolkit</kudo>
Expand All @@ -64,4 +63,4 @@
<provides>
<binary>tilix</binary>
</provides>
</component>
</component>
8 changes: 4 additions & 4 deletions meson.build
Expand Up @@ -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')
Expand Down
4 changes: 2 additions & 2 deletions source/gx/tilix/constants.d
Expand Up @@ -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";
Expand Down

0 comments on commit 1c7a354

Please sign in to comment.