mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-22 23:05:24 +00:00
Updated for 3.7.
This commit is contained in:
@@ -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
|
||||
|
||||
2
curses.h
2
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 */
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -18,7 +18,7 @@ domain, free">
|
||||
|
||||
<h1>Public Domain Curses</h1>
|
||||
|
||||
Stable: <a href="https://github.com/wmcbrine/PDCurses/releases/tag/3.6">v3.6</a><br>
|
||||
Stable: <a href="https://github.com/wmcbrine/PDCurses/releases/tag/3.7">v3.7</a><br>
|
||||
Beta: <a href="https://github.com/wmcbrine/PDCurses">See git repository</a>
|
||||
|
||||
<p><strong>PDCurses</strong> is a public domain curses library for DOS,
|
||||
@@ -47,7 +47,7 @@ list archive.</a></p>
|
||||
<address>
|
||||
Page by Mark Hessling and <a
|
||||
href="https://wmcbrine.com/">William McBrine.</a>
|
||||
Last updated: Dec 27 2018
|
||||
Last updated: Dec 31 2018
|
||||
</address>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Version number macros for inclusion from makefiles
|
||||
|
||||
VER = 36
|
||||
VERDOT = 3.6
|
||||
VER = 37
|
||||
VERDOT = 3.7
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# other packages, such as neon, libxml and gnome.
|
||||
#
|
||||
|
||||
verdot=3.6
|
||||
verdot=3.7
|
||||
|
||||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
|
||||
Reference in New Issue
Block a user