From 18e395768ed1b8d11537d3b26c6825c0969b6a23 Mon Sep 17 00:00:00 2001 From: gnunn1 Date: Thu, 14 Jan 2016 19:34:30 -0500 Subject: [PATCH] Update version for release, add folks to the credits section --- source/gx/terminix/application.d | 2 +- source/gx/terminix/constants.d | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source/gx/terminix/application.d b/source/gx/terminix/application.d index 59375e8f..478d381f 100644 --- a/source/gx/terminix/application.d +++ b/source/gx/terminix/application.d @@ -182,7 +182,7 @@ private: setDocumenters(APPLICATION_DOCUMENTERS.dup); setTranslatorCredits(APPLICATION_TRANSLATORS); setLicense(APPLICATION_LICENSE); - //addCreditSection(_("Credits"), []) + addCreditSection(_("Credits"), APPLICATION_CREDITS); addOnResponse(delegate(int responseId, Dialog sender) { if (responseId == ResponseType.CANCEL || responseId == ResponseType.DELETE_EVENT) diff --git a/source/gx/terminix/constants.d b/source/gx/terminix/constants.d index c4e8c957..c88a443d 100644 --- a/source/gx/terminix/constants.d +++ b/source/gx/terminix/constants.d @@ -20,7 +20,7 @@ enum APPLICATION_ID = "com.gexperts.Terminix"; // Application values used in About Dialog enum APPLICATION_NAME = "Terminix"; -enum APPLICATION_VERSION = "0.35.0"; +enum APPLICATION_VERSION = "0.36.0"; enum APPLICATION_AUTHOR = "Gerald Nunn"; enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2015 " ~ APPLICATION_AUTHOR; enum APPLICATION_COMMENTS = _("A VTE based terminal emulator for Linux"); @@ -28,6 +28,7 @@ enum APPLICATION_LICENSE = _( "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/."); immutable string[] APPLICATION_AUTHORS = ["Gerald Nunn"]; +string[] APPLICATION_CREDITS = ["GTK VTE widget team, Terminix would not be possible without their work", "GtkD for providing such an excellent GTK wrapper", "Dlang.org for such an excellent language, D"]; immutable string[] APPLICATION_ARTISTS = []; immutable string[] APPLICATION_DOCUMENTERS = [""]; immutable string APPLICATION_TRANSLATORS = "";