diff --git a/common/pdcurses.rc b/common/pdcurses.rc index fe9bdc31..2b13dc39 100644 --- a/common/pdcurses.rc +++ b/common/pdcurses.rc @@ -1,8 +1,8 @@ #include "winver.h" 1 VERSIONINFO - FILEVERSION 3,6,0,0 - PRODUCTVERSION 3,6,0,0 + FILEVERSION 3,7,0,0 + PRODUCTVERSION 3,7,0,0 FILEFLAGSMASK 0x3fL FILEFLAGS 0x0L FILEOS VOS_UNKNOWN @@ -15,12 +15,12 @@ BEGIN BEGIN VALUE "Maintainer", "William McBrine\0" VALUE "FileDescription", "Public Domain Curses\0" - VALUE "FileVersion", "3.6.0\0" + VALUE "FileVersion", "3.7.0\0" VALUE "InternalName", "PDCurses\0" VALUE "LegalCopyright", "Public Domain\0" VALUE "OriginalFilename", "PDCURSES.DLL\0" VALUE "ProductName", "Public Domain Curses Library\0" - VALUE "ProductVersion", "3.6.0\0" + VALUE "ProductVersion", "3.7.0\0" END END END diff --git a/curses.h b/curses.h index f71f9a1a..4e239b37 100644 --- a/curses.h +++ b/curses.h @@ -26,7 +26,7 @@ Defined by this header: **man-end****************************************************************/ -#define PDC_BUILD 3601 +#define PDC_BUILD 3701 #define PDCURSES 1 /* PDCurses-only routines */ #define CHTYPE_LONG 1 /* size of chtype; long */ diff --git a/demos/ozdemo.c b/demos/ozdemo.c index 17e7ee38..271670ca 100644 --- a/demos/ozdemo.c +++ b/demos/ozdemo.c @@ -327,7 +327,7 @@ int main(int argc, char **argv) init_pair(5, COLOR_BLUE, COLOR_WHITE); wattrset(win, COLOR_PAIR(5) | A_BLINK); mvwaddstr(win, height - 2, 2, - " PDCurses 3.6 - DOS, OS/2, Windows, X11, SDL"); + " PDCurses 3.7 - DOS, OS/2, Windows, X11, SDL"); wrefresh(win); /* Draw running messages */ diff --git a/docs/index.html b/docs/index.html index e6a9eabc..c7f4e4c4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -18,7 +18,7 @@ domain, free">

Public Domain Curses

-Stable: v3.6
+Stable: v3.7
Beta: See git repository

PDCurses is a public domain curses library for DOS, @@ -47,7 +47,7 @@ list archive.

Page by Mark Hessling and William McBrine. -Last updated: Dec 27 2018 +Last updated: Dec 31 2018
diff --git a/man/IMPLEMNT.md b/man/IMPLEMNT.md index 03ca1706..08a43fdf 100644 --- a/man/IMPLEMNT.md +++ b/man/IMPLEMNT.md @@ -1,7 +1,7 @@ PDCurses Implementor's Guide ============================ -- Version 1.4 - 2018/12/?? - new PDCurses.md location +- Version 1.4 - 2018/12/31 - PDCurses.md -> USERS.md, MANUAL.md; new dir - Version 1.3 - 2018/01/12 - notes about official ports, new indentation style; markdown - Version 1.2 - 2007/07/11 - added PDC_init_pair(), PDC_pair_content(), @@ -11,9 +11,9 @@ PDCurses Implementor's Guide This document is for those wishing to port PDCurses to a new platform, or just wanting to better understand how it works. Nothing here should -be needed for application programming; for that, refer to PDCurses.md, -as built in man/ . This document assumes that you've read the user-level -documentation and are very familiar with application-level curses +be needed for application programming; for that, refer to [USERS.md] and +[MANUAL.md], in man/ . This document assumes that you've read the user- +level documentation and are very familiar with application-level curses programming. If you want to submit your port for possible inclusion into the main @@ -327,3 +327,6 @@ pdcsetsc.c: ### int PDC_set_blink(bool blinkon); ### int PDC_set_bold(bool boldon); ### void PDC_set_title(const char *title); + +[USERS.md]: USERS.md +[MANUAL.md]: MANUAL.md diff --git a/pdcurses/initscr.c b/pdcurses/initscr.c index 144c9299..d45f2ff5 100644 --- a/pdcurses/initscr.c +++ b/pdcurses/initscr.c @@ -95,7 +95,7 @@ initscr char ttytype[128]; -const char *_curses_notice = "PDCurses 3.6 - Public Domain 2018"; +const char *_curses_notice = "PDCurses 3.7 - Public Domain 2018"; SCREEN *SP = (SCREEN*)NULL; /* curses variables */ WINDOW *curscr = (WINDOW *)NULL; /* the current screen image */ diff --git a/version.mif b/version.mif index 36f6454d..444c4086 100644 --- a/version.mif +++ b/version.mif @@ -1,4 +1,4 @@ # Version number macros for inclusion from makefiles -VER = 36 -VERDOT = 3.6 +VER = 37 +VERDOT = 3.7 diff --git a/x11/configure.ac b/x11/configure.ac index b5de4357..b28806d8 100644 --- a/x11/configure.ac +++ b/x11/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([PDCurses], [3.6], [wmcbrine@gmail.com], [PDCurses]) +AC_INIT([PDCurses], [3.7], [wmcbrine@gmail.com], [PDCurses]) AC_CONFIG_SRCDIR([pdcx11.h]) AC_SUBST(prefix) diff --git a/x11/xcurses-config.in b/x11/xcurses-config.in index 9eeaa79e..2f116490 100644 --- a/x11/xcurses-config.in +++ b/x11/xcurses-config.in @@ -4,7 +4,7 @@ # other packages, such as neon, libxml and gnome. # -verdot=3.6 +verdot=3.7 prefix=@prefix@ exec_prefix=@exec_prefix@