Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2013-01-14 17:23:55 +0400
committerCorinna Vinschen <corinna@vinschen.de>2013-01-14 17:23:55 +0400
commitd39e9d1596b1342202fc8918cdbc959b6da9217d (patch)
treec3916917843cbf89b55b75d91a6535757bc3a568
parentb712b4408ac6364121d9478af4ac82290ce4b72a (diff)
*** empty log message ***
-rw-r--r--winsup/cygwin/release/1.7.1827
1 files changed, 27 insertions, 0 deletions
diff --git a/winsup/cygwin/release/1.7.18 b/winsup/cygwin/release/1.7.18
index db2340463..f9bc4d4cd 100644
--- a/winsup/cygwin/release/1.7.18
+++ b/winsup/cygwin/release/1.7.18
@@ -4,7 +4,34 @@ What's new:
- For performance reasons, Cygwin does not try to create sparse files
automatically anymore, unless you use the new "sparse" mount option.
+- Added Windows console cursor appearance support:
+
+ - Show/Hide Cursor mode (DECTCEM): "ESC[?25h" / "ESC[?25l"
+
+ - Set cursor style (DECSCUSR): "ESC[n q" (note the space before the q);
+ where n is 0, 1, 2 for block cursor, 3, 4 for underline cursor (all
+ disregarding blinking mode), or > 4 to set the cursor height to a
+ percentage of the cell height.
+
+- New API: cfsetspeed.
Bug fixes:
----------
+- Fix handle leak in rewinddir(3). This affected Windows 2000 only.
+
+- Allow quoted filenames in @ argument expression when called from native
+ processes. Fixes http://cygwin.com/ml/cygwin/2012-12/msg00276.html
+
+- Fix a bug in initializing the stdio settings at process startup, which
+ could result in missing output.
+ Fixes http://cygwin.com/ml/cygwin/2013-01/msg00008.html
+
+- rename("dir1", "dir2") could result in deleting dir2, even if the rename
+ didn't take place, for instance, if dir1 and dir2 were not on the same
+ device.
+
+- rename("file1", "file2") would fail in almost all cases on NFS, due to a
+ bug in the NFS driver's implementation of the FileRenameInformation info
+ class.
+