Skip to content

Commit

Permalink
Update version for release, add folks to the credits section
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Jan 15, 2016
1 parent f50ea9e commit 18e3957
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/gx/terminix/application.d
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion source/gx/terminix/constants.d
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ 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");
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 = "";
Expand Down

0 comments on commit 18e3957

Please sign in to comment.