diff --git a/docs/mintty.1.html b/docs/mintty.1.html index 1ab16ec1..271c9ade 100644 --- a/docs/mintty.1.html +++ b/docs/mintty.1.html @@ -1,5 +1,5 @@ - + @@ -176,6 +176,13 @@

OPTIONS control sequences. This feature is only available on the command line.

+

-B, --Border +frame|void

+ +

Suppress window title, display +only a frame or no border. This feature is only available on +the command line.

+

-u, --utmp

Create a utmp entry.

@@ -288,13 +295,25 @@

USAGE The font size can be increased or decreased using the keyboard shortcuts Ctrl+plus and Ctrl+minus, or by holding Ctrl while rolling the mousewheel. -Ctrl+zero returns the font size to the default.

+Ctrl+zero returns the font size to the default. If +Shift is also held while resizing, the window will be +resized to scale together with the font, keeping the +terminal character size if possible.

+ +

Drag +resize
+The usual windows function to drag on the window border +resizes the terminal. If Shift is also held while resizing, +the font will be scaled along with the resizing. Note that +due to the different height/width factors, this is not a +precise operation.

Full screen
Full screen mode can be toggled using either the Full Screen command in the menu or either of the -Alt+Enter and Alt+F11 keyboard shortcuts.

+Alt+Enter and Alt+F11 keyboard shortcuts, or +the generic window title functions.

Default size
@@ -417,7 +436,12 @@

USAGE − Alt+F4: Close
Alt+F8: Reset
Alt+F10: Default size
-− Alt+F11 or Alt+Enter: Full screen
+− Alt+F11 or Alt+Enter: Toggle full +screen
+− Shift+Alt+F11 or Shift+Alt+Enter: +Toggle full screen and zoom font (Note that due to the +different height/width factors, this is not a precise +operation)
Alt+F12: Flip screen
Alt+Space: Window menu
Ctrl+Tab: Next window
@@ -426,8 +450,11 @@

USAGE

Font zoom

− -Ctrl+plus: Zoom in
-− Ctrl+minus: Zoom out
+Ctrl+plus: Zoom font in
+− Ctrl+minus: Zoom font out
+− Ctrl+Shift+plus: Zoom font and window in
+− Ctrl+Shift+minus: Zoom font and window out +
Ctrl+zero: Back to configured font size

Ctrl+Shift+letter @@ -1029,7 +1056,9 @@

CONFIGURATION confirmation when the close button or Alt+F4 is pressed and the command invoked by mintty still has child processes. This is intended to help avoid closing programs -accidentally.

+accidentally. If possible, mintty also displays a list of +running child processes, using the procps command if +installed, or the ps command.

Command line
@@ -1238,6 +1267,24 @@

CONFIGURATION − BoldCyan=64,255,255
BoldWhite=255,255,255

+

Write if exited +(ExitWrite=no)

+ +

Together with a hold option +that keeps the terminal open after its child process +terminated, this option always writes an exit indication to +the screen. By default, only an error exit code is +displayed.

+ +

Change title if exited +(ExitTitle=)

+ +

Together with a hold option +that keeps the terminal open after its child process +terminated, this option prefixes the window title with its +string, for example -o ExitTitle="TERMINATED: " or +(in minttyrc) ExitTitle=TERMINATED: .

+

LIMITATIONS

diff --git a/src/appinfo.h b/src/appinfo.h index c8e767cd..c5bba9d9 100644 --- a/src/appinfo.h +++ b/src/appinfo.h @@ -5,8 +5,8 @@ #define WEBSITE "http://mintty.github.io/" #define MAJOR_VERSION 2 -#define MINOR_VERSION 0 -#define PATCH_NUMBER 3 +#define MINOR_VERSION 1 +#define PATCH_NUMBER 1 #define BUILD_NUMBER 0 // needed for res.rc diff --git a/wiki/Changelog.md b/wiki/Changelog.md index 0c37098d..bc3cfad0 100644 --- a/wiki/Changelog.md +++ b/wiki/Changelog.md @@ -1,3 +1,4 @@ +### 2.1.1 (23 July 2015) ### * Tweaked Ctrl+TAB to not put current window into the background (~ #260). * Ctrl+click spawning: Syncing environment to Windows to avoid dropping environment after Alt-F2 (#360). * Trying to keep window position within monitor work area on resizing (#79).