Skip to content

Commit

Permalink
Brought HISTORY.md and MANUAL.md up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill-Gray committed Dec 1, 2023
1 parent 087c20c commit 02a61c1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
11 changes: 10 additions & 1 deletion docs/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PDCursesMod 4.4.0 - 2023 October 13
PDCursesMod 4.4.0 - 2023 November 30
===================================

Note that because of SCREEN and WINDOW now being opaque, the WA_
Expand Down Expand Up @@ -30,6 +30,9 @@ Major new features
Minor new features
------------------

- SDL1, SDL2, and GL support double and triple mouse clicks.
a4e563d763

- 'widetest' now tests copying of both precomposed and combining
characters with getcchar() and setcchar(). 19169a1b18

Expand All @@ -52,9 +55,15 @@ Minor new features
- Added some small test programs for very specific feature/bug tests.
e6a5edee79

- You can set a 'thick' style for boxes/borders (wide-character builds
only). 5fd12f8ec9

Bug fixes
---------

- WinGUI keyboard responsiveness could be poor if it wasn't getting
enough CPU share. 087c20cc87

- Fixed a (very small) memory leak from reset_color_pairs. 9e236abb17

- Fixed some ncurses demo failures, due to incomplete HAVE_xxx
Expand Down
22 changes: 12 additions & 10 deletions docs/MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ attr
int wchgat(WINDOW *win, int n, attr_t attr, short color,
const void *opts);

chtype getattrs(WINDOW *win);
chtype getattrs(const WINDOW *win);

int underend(void);
int wunderend(WINDOW *win);
Expand Down Expand Up @@ -1182,14 +1182,14 @@ getyx
void getsyx(int y, int x);
void setsyx(int y, int x);

int getbegy(WINDOW *win);
int getbegx(WINDOW *win);
int getcury(WINDOW *win);
int getcurx(WINDOW *win);
int getpary(WINDOW *win);
int getparx(WINDOW *win);
int getmaxy(WINDOW *win);
int getmaxx(WINDOW *win);
int getbegy(const WINDOW *win);
int getbegx(const WINDOW *win);
int getcury(const WINDOW *win);
int getcurx(const WINDOW *win);
int getpary(const WINDOW *win);
int getparx(const WINDOW *win);
int getmaxy(const WINDOW *win);
int getmaxx(const WINDOW *win);

### Description

Expand Down Expand Up @@ -2656,7 +2656,9 @@ slk
the useable screen, depending on the format selected.

The line(s) removed from the screen are used as a separate window, in
which SLKs are displayed.
which SLKs are displayed. Mouse clicks on the SLKs are returned as
KEY_F() (function key) presses; for example, clicking on the leftmost
SLK will cause KEY_F(1) to be added to the key queue.

slk_init() requires a single parameter which describes the format of
the SLKs as follows:
Expand Down

0 comments on commit 02a61c1

Please sign in to comment.