Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Jul 6, 2016
1 parent 578dac1 commit c4aea3c
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 14 deletions.
6 changes: 6 additions & 0 deletions docs/mintty.1
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,12 @@ The popup offers theme files as stored in a resource subdirectory
\fIthemes\fP for selection as a colour scheme.
The option can also be set to a filename (like D:/.../solarized-light.minttyrc).

The field can also be used as a drag-and-drop target for colour schemes
downloaded from the Color Scheme Configurator, or for theme files from the web
(note that the program \fBcurl\fP needs to be installed for the latter option).
See the Tips wiki page \fIhttps://github.com/mintty/mintty/wiki/Tips\fP
about this mechanism.

.TP
\fBTransparency\fP (Transparency=off)
Window transparency level, with the following choices:
Expand Down
80 changes: 72 additions & 8 deletions docs/mintty.1.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/appinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#define WEBSITE "http://mintty.github.io/"

#define MAJOR_VERSION 2
#define MINOR_VERSION 3
#define PATCH_NUMBER 7
#define MINOR_VERSION 4
#define PATCH_NUMBER 0
#define BUILD_NUMBER 0

// needed for res.rc
Expand Down
Empty file modified src/charset.h
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/config.c
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -1151,8 +1151,8 @@ add_file_resources(control *ctrl, wstring pattern)

init_config_dirs();
WIN32_FIND_DATAW ffd;
HANDLE hFind;
int ok;
HANDLE hFind = NULL;
int ok = false;
for (int i = last_config_dir; i >= 0; i--) {
wchar * rcpat = path_posix_to_win_w(config_dirs[i]);
int len = wcslen(rcpat);
Expand Down
Empty file modified src/ctrls.h
100755 → 100644
Empty file.
9 changes: 7 additions & 2 deletions wiki/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
### 2.4.0 (9 Jul 2016) ###

Configuration:
* Drag-and-drop for Theme and Wave sound file name configuration (#193).
* Link to Color Scheme Configurator in Options menu (#193).
* Drag-and-drop and Store from Color Scheme Configurator (#193).
* Drag-and-drop and Store from theme file on the web (#193).
* Loading theme and bell sound resources also from XDG default config dir (#525), Windows AppData dir, or /usr/share/mintty.
* Enabling cygwin path style for wave file configuration.
* Size option -s is not persisted in config file on Save.

Text display:
* Handling low-contrast of configured cursor colours more gracefully (#548).
* Tweaked manual underline to scale with font and avoid scroll glitches.
* Manual drawing of VT100 line drawing graphics (#130, ~#551).
* Handling low-contrast of configured cursor colours more gracefully (#548).
* Option WideIndic for double-width display of wide Indic characters (#553) (experimental).
* Fixed right-to-left mirroring of '('.
* Not combining characters to unexisting glyphs.
* Preventing mangled digit rendering if surrounded by certain scripts (~#285).
* Preventing mangled combining characters by drawing them separately (~#553, #295).
* Option WideIndic for double-width display of wide Indic characters (#553) (experimental).

Window handling:
* Tweaked DPI changes to stabilize roundtrips of font and window size (#470).
Expand Down
3 changes: 3 additions & 0 deletions wiki/Tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,9 @@ This dialog field can be used in different ways:
* Drag-and-drop a theme file from the Internet (may be embedded in HTML page)
* Drag-and-drop a colour scheme directly from the Color Scheme Designer (see below)

Note that the drag-and-drop theme file option needs the program ```curl```
to be installed (and properly configured for a proxy if needed).

After drag-and-drop of a colour scheme, you may Apply it for testing;
to keep the scheme in your popup selection, assign a name to it by typing it
into the Theme field, then click the “Store” button. After downloading a
Expand Down

0 comments on commit c4aea3c

Please sign in to comment.