From 8ef616a08769596e18c7ae1f433d87b6eb07e8e7 Mon Sep 17 00:00:00 2001 From: Bill-Gray Date: Sat, 17 Jun 2023 19:25:53 -0400 Subject: [PATCH] Updated MANUAL.md, HISTORY.md, and version constants for a new release. --- curses.h | 4 ++-- docs/HISTORY.md | 6 +++++- docs/MANUAL.md | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/curses.h b/curses.h index b77fe6b5..dcc492f1 100644 --- a/curses.h +++ b/curses.h @@ -39,10 +39,10 @@ Defined by this header: /* the 'endwin_*' #defines below should be updated. */ #define PDC_VER_MAJOR 4 #define PDC_VER_MINOR 3 -#define PDC_VER_CHANGE 6 +#define PDC_VER_CHANGE 7 #define PDC_VER_YEAR 2023 #define PDC_VER_MONTH 06 -#define PDC_VER_DAY 11 +#define PDC_VER_DAY 17 #define PDC_STRINGIZE( x) #x #define PDC_stringize( x) PDC_STRINGIZE( x) diff --git a/docs/HISTORY.md b/docs/HISTORY.md index 5995b274..8564446a 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -1,4 +1,5 @@ -Changes as of 2023 June 12 +PDCursesMod 4.3.7 - 2023 June 17 +================================ Major new features ------------------ @@ -115,6 +116,9 @@ Bug fixes - In Windows SDL2, Alt-keystrokes were ignored (see wmcbrine/PDCurses#142). Fix provided by Benjamin Adamson. 7f1e1bba34 +- In SDL2, programmatic resizes caused further spurious resizes, + leading to KEY_RESIZE events. b09c91ea15 + - Scrolling a window could result in a crash when the window was freed. 72521a1697 diff --git a/docs/MANUAL.md b/docs/MANUAL.md index 46ae69aa..947e3be2 100644 --- a/docs/MANUAL.md +++ b/docs/MANUAL.md @@ -73,8 +73,8 @@ a fourth bit is reserved. Default chtypes have enough character bits to support the full range of Unicode, all attributes, and 2^20 = 1048576 color pairs. Note, though, -that as of 2022 Jun 17, only WinGUI, VT, X11, Linux framebuffer, and -SDLn have COLOR_PAIRS = 1048576. Other platforms (DOSVGA, Plan9, WinCon) +that as of 2022 Jun 17, only WinGUI, VT, X11, Linux framebuffer, OpenGL, +and SDLn have COLOR_PAIRS = 1048576. Other platforms (DOSVGA, Plan9, WinCon) may join them. Some (DOS, OS/2) simply do not have full-color capability.