Skip to content

Commit

Permalink
Bump version number for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Feb 27, 2016
1 parent 7d4923b commit 11861aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion source/gx/terminix/constants.d
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum APPLICATION_ID = "com.gexperts.Terminix";

// Application values used in About Dialog
enum APPLICATION_NAME = "Terminix";
enum APPLICATION_VERSION = "0.50.2";
enum APPLICATION_VERSION = "0.51.0";
enum APPLICATION_AUTHOR = "Gerald Nunn";
enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2016 " ~ APPLICATION_AUTHOR;
enum APPLICATION_COMMENTS = "A VTE based terminal emulator for Linux";
Expand Down
10 changes: 5 additions & 5 deletions source/gx/terminix/terminal/terminal.d
Original file line number Diff line number Diff line change
Expand Up @@ -909,11 +909,11 @@ private:
vte.getStyleContext().getColor(StateFlags.ACTIVE, fg);
vte.getStyleContext().getBackgroundColor(StateFlags.ACTIVE, bg);
} else {
if (!fg.parse(gsProfile.getString(SETTINGS_PROFILE_FG_COLOR_KEY)))
trace("Parsing foreground color failed");
if (!bg.parse(gsProfile.getString(SETTINGS_PROFILE_BG_COLOR_KEY)))
trace("Parsing background color failed");
}
if (!fg.parse(gsProfile.getString(SETTINGS_PROFILE_FG_COLOR_KEY)))
trace("Parsing foreground color failed");
if (!bg.parse(gsProfile.getString(SETTINGS_PROFILE_BG_COLOR_KEY)))
trace("Parsing background color failed");
}
bg.alpha = to!double(100 - gsProfile.getInt(SETTINGS_PROFILE_BG_TRANSPARENCY_KEY)) / 100.0;
string[] colors = gsProfile.getStrv(SETTINGS_PROFILE_PALETTE_COLOR_KEY);
foreach (i, color; colors) {
Expand Down

0 comments on commit 11861aa

Please sign in to comment.