bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

ANN: ncurses-6.0-20171028


From: Thomas Dickey
Subject: ANN: ncurses-6.0-20171028
Date: Sun, 29 Oct 2017 00:44:49 +0000
User-agent: Mutt/1.5.21 (2010-09-15)

Files:
        ftp://ftp.invisible-island.net/AdaCurses/current/AdaCurses-20171028.tgz
        
ftp://ftp.invisible-island.net/AdaCurses/current/AdaCurses-20171028.tgz.asc
        
ftp://ftp.invisible-island.net/AdaCurses/current/AdaCurses-small-20171028.tgz
        
ftp://ftp.invisible-island.net/AdaCurses/current/AdaCurses-small-20171028.tgz.asc
        
ftp://ftp.invisible-island.net/ncurses-examples/current/ncurses-examples-20171028.tgz
        
ftp://ftp.invisible-island.net/ncurses-examples/current/ncurses-examples-20171028.tgz.asc
        ftp://ftp.invisible-island.net/ncurses/6.0/MD5sums
        ftp://ftp.invisible-island.net/ncurses/6.0/dev-patches.zip
        ftp://ftp.invisible-island.net/ncurses/6.0/ncurses-6.0-20171028.patch.gz
        
ftp://ftp.invisible-island.net/ncurses/6.0/ncurses-6.0-20171028.patch.gz.asc
        ftp://ftp.invisible-island.net/ncurses/current/ncurses-6.0-20171028.tgz
        
ftp://ftp.invisible-island.net/ncurses/current/ncurses-6.0-20171028.tgz.asc
        ftp://ftp.invisible-island.net/ncurses/win32/mingw32-20171028.zip
        ftp://ftp.invisible-island.net/ncurses/win32/mingw64-20171028.zip

 ncurses 6.0 - patch 20171028 - Thomas E. Dickey

 ------------------------------------------------------------------------------

 Ncurses 6.0 is at
        ftp.gnu.org:/pub/gnu

 Patches for ncurses 6.0 can be found at
        ftp://ftp.invisible-island.net/ncurses/6.0
        http://invisible-mirror.net/archives/ncurses/6.0 

 ------------------------------------------------------------------------------
 ftp://ftp.invisible-island.net/ncurses/6.0/ncurses-6.0-20171028.patch.gz
 patch by Thomas E. Dickey <address@hidden>
 created  Sun Oct 29 00:35:34 UTC 2017
 ------------------------------------------------------------------------------
 MANIFEST                              |    1 
 NEWS                                  |   23 +
 VERSION                               |    2 
 dist.mk                               |    4 
 doc/html/man/adacurses6-config.1.html |    2 
 doc/html/man/captoinfo.1m.html        |    2 
 doc/html/man/clear.1.html             |    2 
 doc/html/man/curs_inch.3x.html        |    4 
 doc/html/man/curs_inwstr.3x.html      |   49 +-
 doc/html/man/form.3x.html             |    2 
 doc/html/man/infocmp.1m.html          |    2 
 doc/html/man/infotocap.1m.html        |    2 
 doc/html/man/menu.3x.html             |    2 
 doc/html/man/ncurses.3x.html          |    2 
 doc/html/man/ncurses6-config.1.html   |    2 
 doc/html/man/panel.3x.html            |    2 
 doc/html/man/tabs.1.html              |    2 
 doc/html/man/terminfo.5.html          |    2 
 doc/html/man/tic.1m.html              |    2 
 doc/html/man/toe.1m.html              |    2 
 doc/html/man/tput.1.html              |    2 
 doc/html/man/tset.1.html              |    2 
 include/ncurses_defs                  |    9 
 man/curs_inch.3x                      |    4 
 man/curs_inwstr.3x                    |   40 +-
 misc/run_tic.in                       |   47 +-
 ncurses-6.0-20171028/test/padview.c   |  524 ++++++++++++++++++++++++++++++++
 ncurses/base/lib_box.c                |   14 
 ncurses/base/lib_color.c              |    4 
 ncurses/base/lib_hline.c              |   14 
 ncurses/base/lib_pad.c                |   10 
 ncurses/base/lib_vline.c              |   14 
 ncurses/tinfo/make_hash.c             |    4 
 ncurses/widechar/lib_inwstr.c         |   12 
 package/debian-mingw/changelog        |    4 
 package/debian-mingw64/changelog      |    4 
 package/debian/changelog              |    4 
 package/mingw-ncurses.nsi             |    4 
 package/mingw-ncurses.spec            |    2 
 package/ncurses.spec                  |    2 
 test/README                           |  142 ++++----
 test/dots.c                           |    4 
 test/dots_curses.c                    |    4 
 test/dots_mvcur.c                     |    4 
 test/dots_termcap.c                   |    6 
 test/modules                          |    3 
 test/ncurses.c                        |  454 ++++++++++++++++++++++-----
 test/programs                         |    3 
 test/view.c                           |   39 +-
 49 files changed, 1206 insertions(+), 284 deletions(-)
 ------------------------------------------------------------------------------
 
20171028
        + improve man/curs_inwstr.3x, correct end-logic for lib_inwstr.c
          (report by Midolikawa H).
        + fix typo in a few places for "improvements" (patch by Sven Joachim).
        + clear the other half of a double-width character on which a line
          drawing character is drawn.
        + make test/ncurses.c "s" test easier to understand which subtests are
          available; add a "S" wide-character overlap test-screen.
        + modify test/ncurses.c C/c tests to allow for extended color pairs.
        + add endwin() call in error-returns from test/ncurses.c omitted in
          recent redesign of its menu (cf: 20170923).
        + improve install of hashed-db by removing the ".db" file as done for
          directory-tree terminal databases.
        + repair a few overlooked items in include/ncurses_defs from recent
          port/refactoring of test-programs (cf: 20170909).
        + add test/padview.c, to compare pads with direct updates in view.c

@@ -2742,7 +2759,7 @@
 
        + various improvements for MinGW (Juergen Pfeifer):
@@ -5193,7 +5210,7 @@
-       + fix a few terminfo.src typos exposed by improvments to "-f" option.
        + fix a few terminfo.src typos exposed by improvements to "-f" option.
 

-- 
Thomas E. Dickey <address@hidden>
https://invisible-island.net
ftp://ftp.invisible-island.net

Attachment: signature.asc
Description: Digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]