curses 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/Dockerfile +132 -0
- data/.devcontainer/devcontainer.json +58 -0
- data/.devcontainer/init-firewall.sh +139 -0
- data/.github/workflows/gh-pages.yml +4 -4
- data/.github/workflows/macos.yml +5 -2
- data/.github/workflows/push_gem.yml +7 -2
- data/.github/workflows/ubuntu.yml +5 -2
- data/.github/workflows/windows.yml +5 -2
- data/.gitmodules +3 -3
- data/README.md +2 -2
- data/curses.gemspec +1 -1
- data/ext/curses/extconf.rb +5 -2
- data/lib/curses.rb +1 -1
- data/vendor/PDCursesMod/.github/workflows/github_actions_build.yml +42 -0
- data/vendor/PDCursesMod/.gitignore +47 -0
- data/vendor/PDCursesMod/.travis.yml +308 -0
- data/vendor/PDCursesMod/CMakeLists.txt +77 -0
- data/vendor/PDCursesMod/README.md +60 -0
- data/vendor/PDCursesMod/appveyor.yml +300 -0
- data/vendor/PDCursesMod/cmake/README.md +71 -0
- data/vendor/PDCursesMod/cmake/build_dependencies.cmake +186 -0
- data/vendor/PDCursesMod/cmake/build_options.cmake +29 -0
- data/vendor/PDCursesMod/cmake/dll_version.cmake +24 -0
- data/vendor/PDCursesMod/cmake/gen_config_header.cmake +40 -0
- data/vendor/PDCursesMod/cmake/get_version.cmake +17 -0
- data/vendor/PDCursesMod/cmake/project_common.cmake +131 -0
- data/vendor/PDCursesMod/cmake/sdl2_ttf/CMakeLists.txt +95 -0
- data/vendor/PDCursesMod/cmake/version.in.cmake +61 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos16_toolchain.cmake +90 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos32_toolchain.cmake +89 -0
- data/vendor/PDCursesMod/cmake/watcom_open_os2v2_toolchain.cmake +88 -0
- data/vendor/PDCursesMod/cmake/watcom_open_win32_toolchain.cmake +12 -0
- data/vendor/PDCursesMod/common/acs_defs.h +288 -0
- data/vendor/PDCursesMod/common/approx.c +163 -0
- data/vendor/PDCursesMod/common/beep.c +70 -0
- data/vendor/PDCursesMod/common/blink.c +90 -0
- data/vendor/PDCursesMod/common/config_curses.c +134 -0
- data/vendor/PDCursesMod/common/dos_key.h +59 -0
- data/vendor/PDCursesMod/common/dosutil.c +136 -0
- data/vendor/PDCursesMod/common/font437.h +386 -0
- data/vendor/PDCursesMod/common/icon32.xpm +42 -0
- data/vendor/PDCursesMod/common/icon64.xpm +74 -0
- data/vendor/PDCursesMod/common/iconbmp.h +24 -0
- data/vendor/PDCursesMod/common/libobjs.mif +32 -0
- data/vendor/PDCursesMod/common/mouse.c +293 -0
- data/vendor/PDCursesMod/common/pdcclip.c +135 -0
- data/vendor/PDCursesMod/common/pdccolor.c +223 -0
- data/vendor/PDCursesMod/common/pdccolor.h +17 -0
- data/vendor/PDCursesMod/common/pdccolor.txt +81 -0
- data/vendor/PDCursesMod/common/pdcurses.rc +35 -0
- data/vendor/PDCursesMod/common/psf.c +250 -0
- data/vendor/PDCursesMod/common/psf.h +13 -0
- data/vendor/PDCursesMod/common/psf_wide.h +584 -0
- data/vendor/PDCursesMod/common/watcom.mif +224 -0
- data/vendor/PDCursesMod/common/winclip.c +151 -0
- data/vendor/PDCursesMod/common/xlates.h +142 -0
- data/vendor/PDCursesMod/curses.h +1972 -0
- data/vendor/PDCursesMod/curspriv.h +295 -0
- data/vendor/PDCursesMod/demos/UTF-8-demo.txt +225 -0
- data/vendor/PDCursesMod/demos/calendar.c +278 -0
- data/vendor/PDCursesMod/demos/curses.priv.h +37 -0
- data/vendor/PDCursesMod/demos/dates.txt +2576 -0
- data/vendor/PDCursesMod/demos/firework.c +149 -0
- data/vendor/PDCursesMod/demos/init_col.c +152 -0
- data/vendor/PDCursesMod/demos/mbrot.c +366 -0
- data/vendor/PDCursesMod/demos/nctests.mif +299 -0
- data/vendor/PDCursesMod/demos/ncurses_cfg.h +100 -0
- data/vendor/PDCursesMod/demos/newtest.c +608 -0
- data/vendor/PDCursesMod/demos/ozdemo.c +444 -0
- data/vendor/PDCursesMod/demos/picsview.c +516 -0
- data/vendor/PDCursesMod/demos/ptest.c +315 -0
- data/vendor/PDCursesMod/demos/rain.c +161 -0
- data/vendor/PDCursesMod/demos/snprintf.c +30 -0
- data/vendor/PDCursesMod/demos/speed.c +124 -0
- data/vendor/PDCursesMod/demos/test_pan.c +372 -0
- data/vendor/PDCursesMod/demos/testcurs.c +1978 -0
- data/vendor/PDCursesMod/demos/tui.c +816 -0
- data/vendor/PDCursesMod/demos/tui.h +65 -0
- data/vendor/PDCursesMod/demos/tuidemo.c +231 -0
- data/vendor/PDCursesMod/demos/version.c +66 -0
- data/vendor/PDCursesMod/demos/widetest.c +130 -0
- data/vendor/PDCursesMod/demos/worm.c +450 -0
- data/vendor/PDCursesMod/demos/xmas.c +955 -0
- data/vendor/PDCursesMod/docs/HISTORY.md +3850 -0
- data/vendor/PDCursesMod/docs/IMPLEMNT.md +321 -0
- data/vendor/PDCursesMod/docs/MANUAL.md +3304 -0
- data/vendor/PDCursesMod/docs/README.md +51 -0
- data/vendor/PDCursesMod/docs/USERS.md +451 -0
- data/vendor/PDCursesMod/docs/manext.awk +15 -0
- data/vendor/PDCursesMod/docs/mkman.sh +7 -0
- data/vendor/PDCursesMod/dos/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dos/Makefile +85 -0
- data/vendor/PDCursesMod/dos/Makefile.bcc +81 -0
- data/vendor/PDCursesMod/dos/Makefile.dmc +315 -0
- data/vendor/PDCursesMod/dos/Makefile.wcc +44 -0
- data/vendor/PDCursesMod/dos/README.md +49 -0
- data/vendor/PDCursesMod/dos/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dos/pdcdisp.c +164 -0
- data/vendor/PDCursesMod/dos/pdcdos.h +173 -0
- data/vendor/PDCursesMod/dos/pdcgetsc.c +81 -0
- data/vendor/PDCursesMod/dos/pdckbd.c +428 -0
- data/vendor/PDCursesMod/dos/pdcscrn.c +707 -0
- data/vendor/PDCursesMod/dos/pdcsetsc.c +120 -0
- data/vendor/PDCursesMod/dos/pdcutil.c +11 -0
- data/vendor/PDCursesMod/dosvga/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dosvga/Makefile +109 -0
- data/vendor/PDCursesMod/dosvga/Makefile.bcc +82 -0
- data/vendor/PDCursesMod/dosvga/Makefile.dmc +318 -0
- data/vendor/PDCursesMod/dosvga/Makefile.wcc +40 -0
- data/vendor/PDCursesMod/dosvga/README.md +58 -0
- data/vendor/PDCursesMod/dosvga/cp437.h +184 -0
- data/vendor/PDCursesMod/dosvga/font.h +454 -0
- data/vendor/PDCursesMod/dosvga/hexize.c +45 -0
- data/vendor/PDCursesMod/dosvga/mk_font.c +35 -0
- data/vendor/PDCursesMod/dosvga/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dosvga/pdcdisp.c +684 -0
- data/vendor/PDCursesMod/dosvga/pdcdos.h +201 -0
- data/vendor/PDCursesMod/dosvga/pdcgetsc.c +47 -0
- data/vendor/PDCursesMod/dosvga/pdckbd.c +484 -0
- data/vendor/PDCursesMod/dosvga/pdcscrn.c +1693 -0
- data/vendor/PDCursesMod/dosvga/pdcsetsc.c +79 -0
- data/vendor/PDCursesMod/dosvga/pdcutil.c +13 -0
- data/vendor/PDCursesMod/dosvga/pdcvesa.h +88 -0
- data/vendor/PDCursesMod/fb/Makefile +150 -0
- data/vendor/PDCursesMod/fb/README.md +52 -0
- data/vendor/PDCursesMod/fb/cursor.c +111 -0
- data/vendor/PDCursesMod/fb/drm.c +264 -0
- data/vendor/PDCursesMod/fb/pdcclip.c +1 -0
- data/vendor/PDCursesMod/fb/pdcdisp.c +521 -0
- data/vendor/PDCursesMod/fb/pdcfb.h +11 -0
- data/vendor/PDCursesMod/fb/pdcgetsc.c +1 -0
- data/vendor/PDCursesMod/fb/pdckbd.c +114 -0
- data/vendor/PDCursesMod/fb/pdcmouse.c +185 -0
- data/vendor/PDCursesMod/fb/pdcscrn.c +539 -0
- data/vendor/PDCursesMod/fb/pdcsetsc.c +3 -0
- data/vendor/PDCursesMod/fb/pdcutil.c +5 -0
- data/vendor/PDCursesMod/gl/CMakeLists.txt +66 -0
- data/vendor/PDCursesMod/gl/Makefile +188 -0
- data/vendor/PDCursesMod/gl/Makefile.vc +129 -0
- data/vendor/PDCursesMod/gl/README.md +134 -0
- data/vendor/PDCursesMod/gl/glfuncs.h +159 -0
- data/vendor/PDCursesMod/gl/pdcclip.c +93 -0
- data/vendor/PDCursesMod/gl/pdcdisp.c +867 -0
- data/vendor/PDCursesMod/gl/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/gl/pdcgl.h +51 -0
- data/vendor/PDCursesMod/gl/pdckbd.c +548 -0
- data/vendor/PDCursesMod/gl/pdcscrn.c +700 -0
- data/vendor/PDCursesMod/gl/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/gl/pdcutil.c +35 -0
- data/vendor/PDCursesMod/ncurses/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/ncurses/Makefile +38 -0
- data/vendor/PDCursesMod/os2/Makefile +150 -0
- data/vendor/PDCursesMod/os2/Makefile.bcc +85 -0
- data/vendor/PDCursesMod/os2/Makefile.wcc +26 -0
- data/vendor/PDCursesMod/os2/iccos2.lrf +49 -0
- data/vendor/PDCursesMod/os2/iccos2.mak +260 -0
- data/vendor/PDCursesMod/os2/pdcclip.c +172 -0
- data/vendor/PDCursesMod/os2/pdcdisp.c +130 -0
- data/vendor/PDCursesMod/os2/pdcgetsc.c +52 -0
- data/vendor/PDCursesMod/os2/pdckbd.c +435 -0
- data/vendor/PDCursesMod/os2/pdcos2.h +21 -0
- data/vendor/PDCursesMod/os2/pdcscrn.c +231 -0
- data/vendor/PDCursesMod/os2/pdcsetsc.c +110 -0
- data/vendor/PDCursesMod/os2/pdcutil.c +51 -0
- data/vendor/PDCursesMod/os2gui/.gitignore +1 -0
- data/vendor/PDCursesMod/os2gui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/os2gui/Makefile +139 -0
- data/vendor/PDCursesMod/os2gui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/os2gui/README.md +69 -0
- data/vendor/PDCursesMod/os2gui/pdcclip.c +165 -0
- data/vendor/PDCursesMod/os2gui/pdcdisp.c +2021 -0
- data/vendor/PDCursesMod/os2gui/pdcgetsc.c +26 -0
- data/vendor/PDCursesMod/os2gui/pdckbd.c +79 -0
- data/vendor/PDCursesMod/os2gui/pdcscrn.c +2433 -0
- data/vendor/PDCursesMod/os2gui/pdcsetsc.c +115 -0
- data/vendor/PDCursesMod/os2gui/pdcutil.c +42 -0
- data/vendor/PDCursesMod/os2gui/pdcwin.h +106 -0
- data/vendor/PDCursesMod/os2gui/table.py +112 -0
- data/vendor/PDCursesMod/os2gui/unitable.h +3933 -0
- data/vendor/PDCursesMod/panel.h +41 -0
- data/vendor/PDCursesMod/pdcurses/addch.c +838 -0
- data/vendor/PDCursesMod/pdcurses/addchstr.c +232 -0
- data/vendor/PDCursesMod/pdcurses/addstr.c +245 -0
- data/vendor/PDCursesMod/pdcurses/attr.c +430 -0
- data/vendor/PDCursesMod/pdcurses/beep.c +78 -0
- data/vendor/PDCursesMod/pdcurses/bkgd.c +233 -0
- data/vendor/PDCursesMod/pdcurses/border.c +413 -0
- data/vendor/PDCursesMod/pdcurses/clear.c +161 -0
- data/vendor/PDCursesMod/pdcurses/color.c +761 -0
- data/vendor/PDCursesMod/pdcurses/debug.c +157 -0
- data/vendor/PDCursesMod/pdcurses/delch.c +96 -0
- data/vendor/PDCursesMod/pdcurses/deleteln.c +149 -0
- data/vendor/PDCursesMod/pdcurses/getch.c +871 -0
- data/vendor/PDCursesMod/pdcurses/getstr.c +487 -0
- data/vendor/PDCursesMod/pdcurses/getyx.c +152 -0
- data/vendor/PDCursesMod/pdcurses/inch.c +133 -0
- data/vendor/PDCursesMod/pdcurses/inchstr.c +217 -0
- data/vendor/PDCursesMod/pdcurses/initscr.c +524 -0
- data/vendor/PDCursesMod/pdcurses/inopts.c +490 -0
- data/vendor/PDCursesMod/pdcurses/insch.c +273 -0
- data/vendor/PDCursesMod/pdcurses/insstr.c +268 -0
- data/vendor/PDCursesMod/pdcurses/instr.c +253 -0
- data/vendor/PDCursesMod/pdcurses/kernel.c +338 -0
- data/vendor/PDCursesMod/pdcurses/keyname.c +149 -0
- data/vendor/PDCursesMod/pdcurses/mouse.c +469 -0
- data/vendor/PDCursesMod/pdcurses/move.c +84 -0
- data/vendor/PDCursesMod/pdcurses/outopts.c +283 -0
- data/vendor/PDCursesMod/pdcurses/overlay.c +204 -0
- data/vendor/PDCursesMod/pdcurses/pad.c +303 -0
- data/vendor/PDCursesMod/pdcurses/pairs.txt +94 -0
- data/vendor/PDCursesMod/pdcurses/panel.c +551 -0
- data/vendor/PDCursesMod/pdcurses/printw.c +180 -0
- data/vendor/PDCursesMod/pdcurses/refresh.c +372 -0
- data/vendor/PDCursesMod/pdcurses/scanw.c +582 -0
- data/vendor/PDCursesMod/pdcurses/scr_dump.c +311 -0
- data/vendor/PDCursesMod/pdcurses/scroll.c +115 -0
- data/vendor/PDCursesMod/pdcurses/slk.c +660 -0
- data/vendor/PDCursesMod/pdcurses/termattr.c +177 -0
- data/vendor/PDCursesMod/pdcurses/terminfo.c +243 -0
- data/vendor/PDCursesMod/pdcurses/touch.c +255 -0
- data/vendor/PDCursesMod/pdcurses/util.c +502 -0
- data/vendor/PDCursesMod/pdcurses/window.c +708 -0
- data/vendor/PDCursesMod/plan9/README.md +57 -0
- data/vendor/PDCursesMod/plan9/header.patch +11 -0
- data/vendor/PDCursesMod/plan9/mkfile +103 -0
- data/vendor/PDCursesMod/plan9/mkfile_demo +42 -0
- data/vendor/PDCursesMod/plan9/pdcclip.c +1 -0
- data/vendor/PDCursesMod/plan9/pdcdisp.c +62 -0
- data/vendor/PDCursesMod/plan9/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/plan9/pdckbd.c +53 -0
- data/vendor/PDCursesMod/plan9/pdcplan9.h +10 -0
- data/vendor/PDCursesMod/plan9/pdcscrn.c +103 -0
- data/vendor/PDCursesMod/plan9/pdcsetsc.c +51 -0
- data/vendor/PDCursesMod/plan9/pdcutil.c +370 -0
- data/vendor/PDCursesMod/psffonts/10x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/18x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/4x6.psf +0 -0
- data/vendor/PDCursesMod/psffonts/6x12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/8x13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x15.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/README +38 -0
- data/vendor/PDCursesMod/psffonts/README.md +14 -0
- data/vendor/PDCursesMod/psffonts/bmp2psf2.c +130 -0
- data/vendor/PDCursesMod/psffonts/cour11x17.psf +0 -0
- data/vendor/PDCursesMod/psffonts/cour20x29.psf +0 -0
- data/vendor/PDCursesMod/psffonts/default.psf +0 -0
- data/vendor/PDCursesMod/psffonts/dosemu.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/2_hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/README +285 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/antique-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apls-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabdrft-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabkufi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabnaf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arbnaskh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/art-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/ascii-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/backward-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bdeclo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexall-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexbox-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexlo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/binaryed-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/blcksnsf-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/block-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/broadway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bthin-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/computer-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/copyleft.txt +209 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/courier-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437bgr-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril_b-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrillic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/decorate-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/draw-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/drawhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/europe-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-09.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-11.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/farsi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/finnish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fontorig.txt +308 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fractur-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/future-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/georgian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-06.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hack4th-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-7bit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-big-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-bold-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-ktab-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-med-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-snsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebboldk-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebclrgf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebyogi-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercital-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/history.txt +45 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hollow-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hrkgreek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hylas-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/icons-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/inverted-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso4-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/italics-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_large-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_misc-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbarabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbscript-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lcd-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/mac-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/madrid-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/medieval-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/modern-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-f-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_6-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_7-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/police-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_sser-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl7-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl8-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/reverse-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rimrock-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rmrkbold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rom8pix-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/runic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/script-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl----16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl~~~-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/security-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/side-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/slant-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smalcaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smcapnum-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/square-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/stretch-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/subsup-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/super-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-av-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbox-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbx2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thai-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinasci-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thincaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thindemo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinscrp-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/turkish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/urdu-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/voynich-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/wiggly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/yugosla-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/lc12x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/makefile +2 -0
- data/vendor/PDCursesMod/psffonts/mappings/8859-3.TXT +285 -0
- data/vendor/PDCursesMod/psffonts/mappings/APL-ISO-IR-68.TXT +273 -0
- data/vendor/PDCursesMod/psffonts/mappings/ATARIST.TXT +320 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1006.TXT +302 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1250.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1251.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1252.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1253.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1254.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1255.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1256.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1257.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1258.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP424.TXT +304 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP437.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP737.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP775.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP850.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP851.TXT +276 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP852.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP855.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP856.TXT +303 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP857.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP860.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP861.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP862.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP863.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP864.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP865.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP866.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP869.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP874.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP932.TXT +7998 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP936.TXT +22065 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP949.TXT +17322 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP950.TXT +13777 -0
- data/vendor/PDCursesMod/psffonts/mappings/IBMGRAPH.TXT +99 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-R.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-U.TXT +301 -0
- data/vendor/PDCursesMod/psffonts/mappings/KPS9566.TXT +17166 -0
- data/vendor/PDCursesMod/psffonts/mappings/KZ1048.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/ReadMe.txt +20 -0
- data/vendor/PDCursesMod/psffonts/mappings/SGML.TXT +1041 -0
- data/vendor/PDCursesMod/psffonts/medieval2.psf +0 -0
- data/vendor/PDCursesMod/psffonts/vga11x19.psf +0 -0
- data/vendor/PDCursesMod/sdl1/Makefile +140 -0
- data/vendor/PDCursesMod/sdl1/README.md +200 -0
- data/vendor/PDCursesMod/sdl1/pdcclip.c +1 -0
- data/vendor/PDCursesMod/sdl1/pdcdisp.c +462 -0
- data/vendor/PDCursesMod/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl1/pdckbd.c +417 -0
- data/vendor/PDCursesMod/sdl1/pdcscrn.c +396 -0
- data/vendor/PDCursesMod/sdl1/pdcsdl.h +34 -0
- data/vendor/PDCursesMod/sdl1/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl1/pdcutil.c +34 -0
- data/vendor/PDCursesMod/sdl1/sdltest.c +79 -0
- data/vendor/PDCursesMod/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/sdl2/Makefile +207 -0
- data/vendor/PDCursesMod/sdl2/Makefile.vc +132 -0
- data/vendor/PDCursesMod/sdl2/README.md +215 -0
- data/vendor/PDCursesMod/sdl2/pdcclip.c +93 -0
- data/vendor/PDCursesMod/sdl2/pdcdisp.c +536 -0
- data/vendor/PDCursesMod/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl2/pdckbd.c +540 -0
- data/vendor/PDCursesMod/sdl2/pdcscrn.c +529 -0
- data/vendor/PDCursesMod/sdl2/pdcsdl.h +46 -0
- data/vendor/PDCursesMod/sdl2/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl2/pdcutil.c +35 -0
- data/vendor/PDCursesMod/sdl2/sdltest.c +91 -0
- data/vendor/PDCursesMod/sdl2/versions.mif +2 -0
- data/vendor/PDCursesMod/term.h +48 -0
- data/vendor/PDCursesMod/tests/README.md +16 -0
- data/vendor/PDCursesMod/tests/brk_test.c +42 -0
- data/vendor/PDCursesMod/tests/del_test.c +95 -0
- data/vendor/PDCursesMod/tests/focus.c +53 -0
- data/vendor/PDCursesMod/tests/ins_del.c +108 -0
- data/vendor/PDCursesMod/tests/keytest.c +87 -0
- data/vendor/PDCursesMod/tests/naptest.c +43 -0
- data/vendor/PDCursesMod/tests/opaque.c +42 -0
- data/vendor/PDCursesMod/tests/restart.c +60 -0
- data/vendor/PDCursesMod/tests/ripoff.c +141 -0
- data/vendor/PDCursesMod/tests/show_col.c +55 -0
- data/vendor/PDCursesMod/tests/show_uni.c +163 -0
- data/vendor/PDCursesMod/tests/vt0.c +472 -0
- data/vendor/PDCursesMod/vt/CMakeLists.txt +35 -0
- data/vendor/PDCursesMod/vt/Makefile +204 -0
- data/vendor/PDCursesMod/vt/Makefile.bcc +101 -0
- data/vendor/PDCursesMod/vt/Makefile.dmc +313 -0
- data/vendor/PDCursesMod/vt/Makefile.vc +145 -0
- data/vendor/PDCursesMod/vt/Makefile.wcc +48 -0
- data/vendor/PDCursesMod/vt/README.md +82 -0
- data/vendor/PDCursesMod/vt/pdcclip.c +8 -0
- data/vendor/PDCursesMod/vt/pdcdisp.c +424 -0
- data/vendor/PDCursesMod/vt/pdckbd.c +603 -0
- data/vendor/PDCursesMod/vt/pdcscrn.c +492 -0
- data/vendor/PDCursesMod/vt/pdcsetsc.c +158 -0
- data/vendor/PDCursesMod/vt/pdcutil.c +85 -0
- data/vendor/PDCursesMod/vt/pdcvt.h +25 -0
- data/vendor/PDCursesMod/wincon/CMakeLists.txt +29 -0
- data/vendor/PDCursesMod/wincon/Makefile +190 -0
- data/vendor/PDCursesMod/wincon/Makefile.bcc +87 -0
- data/vendor/PDCursesMod/wincon/Makefile.dmc +275 -0
- data/vendor/PDCursesMod/wincon/Makefile.vc +132 -0
- data/vendor/PDCursesMod/wincon/Makefile.wcc +33 -0
- data/vendor/PDCursesMod/wincon/README.md +76 -0
- data/vendor/PDCursesMod/wincon/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wincon/pdcdisp.c +408 -0
- data/vendor/PDCursesMod/wincon/pdcgetsc.c +42 -0
- data/vendor/PDCursesMod/wincon/pdckbd.c +778 -0
- data/vendor/PDCursesMod/wincon/pdcscrn.c +733 -0
- data/vendor/PDCursesMod/wincon/pdcsetsc.c +130 -0
- data/vendor/PDCursesMod/wincon/pdcutil.c +38 -0
- data/vendor/PDCursesMod/wincon/pdcwin.h +35 -0
- data/vendor/PDCursesMod/wingui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/wingui/Makefile +186 -0
- data/vendor/PDCursesMod/wingui/Makefile.bcc +80 -0
- data/vendor/PDCursesMod/wingui/Makefile.dmc +314 -0
- data/vendor/PDCursesMod/wingui/Makefile.vc +144 -0
- data/vendor/PDCursesMod/wingui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/wingui/README.md +92 -0
- data/vendor/PDCursesMod/wingui/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wingui/pdcdisp.c +576 -0
- data/vendor/PDCursesMod/wingui/pdckbd.c +89 -0
- data/vendor/PDCursesMod/wingui/pdcscrn.c +2235 -0
- data/vendor/PDCursesMod/wingui/pdcsetsc.c +124 -0
- data/vendor/PDCursesMod/wingui/pdcutil.c +44 -0
- data/vendor/PDCursesMod/wingui/pdcwin.h +85 -0
- data/vendor/PDCursesMod/x11/Makefile.in +1047 -0
- data/vendor/PDCursesMod/x11/README.md +227 -0
- data/vendor/PDCursesMod/x11/aclocal.m4 +553 -0
- data/vendor/PDCursesMod/x11/config.guess +1774 -0
- data/vendor/PDCursesMod/x11/config.h.in +37 -0
- data/vendor/PDCursesMod/x11/config.sub +1907 -0
- data/vendor/PDCursesMod/x11/configure +5944 -0
- data/vendor/PDCursesMod/x11/configure.ac +175 -0
- data/vendor/PDCursesMod/x11/pdcclip.c +254 -0
- data/vendor/PDCursesMod/x11/pdcdisp.c +418 -0
- data/vendor/PDCursesMod/x11/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/x11/pdckbd.c +743 -0
- data/vendor/PDCursesMod/x11/pdcscrn.c +848 -0
- data/vendor/PDCursesMod/x11/pdcsetsc.c +108 -0
- data/vendor/PDCursesMod/x11/pdcutil.c +41 -0
- data/vendor/PDCursesMod/x11/pdcx11.h +82 -0
- data/vendor/PDCursesMod/x11/sb.c +331 -0
- data/vendor/PDCursesMod/x11/scrlbox.c +348 -0
- data/vendor/PDCursesMod/x11/scrlbox.h +47 -0
- data/vendor/PDCursesMod/x11/xcurses-config.in +81 -0
- data/vendor/PDCursesMod/x11new/Makefile +151 -0
- data/vendor/PDCursesMod/x11new/README.md +63 -0
- data/vendor/PDCursesMod/x11new/pdcclip.c +221 -0
- data/vendor/PDCursesMod/x11new/pdcdisp.c +195 -0
- data/vendor/PDCursesMod/x11new/pdcgetsc.c +27 -0
- data/vendor/PDCursesMod/x11new/pdckbd.c +722 -0
- data/vendor/PDCursesMod/x11new/pdcscrn.c +277 -0
- data/vendor/PDCursesMod/x11new/pdcsetsc.c +90 -0
- data/vendor/PDCursesMod/x11new/pdcutil.c +38 -0
- data/vendor/PDCursesMod/x11new/pdcx11.h +16 -0
- metadata +692 -246
- data/vendor/PDCurses/.gitignore +0 -47
- data/vendor/PDCurses/.travis.yml +0 -49
- data/vendor/PDCurses/CMakeLists.txt +0 -68
- data/vendor/PDCurses/HISTORY.md +0 -2036
- data/vendor/PDCurses/IMPLEMNT.md +0 -327
- data/vendor/PDCurses/Makefile +0 -27
- data/vendor/PDCurses/README.md +0 -77
- data/vendor/PDCurses/acs_defs.h +0 -265
- data/vendor/PDCurses/appveyor.yml +0 -218
- data/vendor/PDCurses/cmake/README.md +0 -71
- data/vendor/PDCurses/cmake/build_dependencies.cmake +0 -178
- data/vendor/PDCurses/cmake/build_options.cmake +0 -25
- data/vendor/PDCurses/cmake/dll_version.cmake +0 -26
- data/vendor/PDCurses/cmake/gen_config_header.cmake +0 -43
- data/vendor/PDCurses/cmake/get_version.cmake +0 -17
- data/vendor/PDCurses/cmake/project_common.cmake +0 -121
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +0 -83
- data/vendor/PDCurses/cmake/version.in.cmake +0 -73
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +0 -96
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +0 -106
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +0 -105
- data/vendor/PDCurses/curses.h +0 -1846
- data/vendor/PDCurses/curspriv.h +0 -134
- data/vendor/PDCurses/demos/firework.c +0 -144
- data/vendor/PDCurses/demos/newtest.c +0 -581
- data/vendor/PDCurses/demos/ozdemo.c +0 -447
- data/vendor/PDCurses/demos/ptest.c +0 -283
- data/vendor/PDCurses/demos/rain.c +0 -157
- data/vendor/PDCurses/demos/testcurs.c +0 -1607
- data/vendor/PDCurses/demos/tui.c +0 -1048
- data/vendor/PDCurses/demos/tui.h +0 -65
- data/vendor/PDCurses/demos/tuidemo.c +0 -233
- data/vendor/PDCurses/demos/version.c +0 -61
- data/vendor/PDCurses/demos/worm.c +0 -432
- data/vendor/PDCurses/demos/xmas.c +0 -955
- data/vendor/PDCurses/dos/CMakeLists.txt +0 -47
- data/vendor/PDCurses/dos/Makefile +0 -105
- data/vendor/PDCurses/dos/Makefile.bcc +0 -83
- data/vendor/PDCurses/dos/Makefile.dmc +0 -257
- data/vendor/PDCurses/dos/Makefile.msc +0 -113
- data/vendor/PDCurses/dos/Makefile.wcc +0 -107
- data/vendor/PDCurses/dos/README.md +0 -51
- data/vendor/PDCurses/dos/bccdos.lrf +0 -9
- data/vendor/PDCurses/dos/mscdos.lrf +0 -50
- data/vendor/PDCurses/dos/pdcclip.c +0 -132
- data/vendor/PDCurses/dos/pdcdisp.c +0 -135
- data/vendor/PDCurses/dos/pdcdos.h +0 -194
- data/vendor/PDCurses/dos/pdcgetsc.c +0 -98
- data/vendor/PDCurses/dos/pdckbd.c +0 -513
- data/vendor/PDCurses/dos/pdcscrn.c +0 -785
- data/vendor/PDCurses/dos/pdcsetsc.c +0 -101
- data/vendor/PDCurses/dos/pdcutil.c +0 -212
- data/vendor/PDCurses/libobjs.mif +0 -26
- data/vendor/PDCurses/makedist.mif +0 -20
- data/vendor/PDCurses/man/Makefile +0 -37
- data/vendor/PDCurses/man/README.md +0 -21
- data/vendor/PDCurses/man/intro.md +0 -361
- data/vendor/PDCurses/man/manext.c +0 -119
- data/vendor/PDCurses/man/sdl.md +0 -152
- data/vendor/PDCurses/man/sdl2.md +0 -58
- data/vendor/PDCurses/man/x11.md +0 -407
- data/vendor/PDCurses/ncurses/CMakeLists.txt +0 -66
- data/vendor/PDCurses/ncurses/makefile +0 -29
- data/vendor/PDCurses/os2/Makefile +0 -132
- data/vendor/PDCurses/os2/Makefile.bcc +0 -90
- data/vendor/PDCurses/os2/Makefile.wcc +0 -43
- data/vendor/PDCurses/os2/iccos2.lrf +0 -50
- data/vendor/PDCurses/os2/iccos2.mak +0 -256
- data/vendor/PDCurses/os2/pdcclip.c +0 -188
- data/vendor/PDCurses/os2/pdcdisp.c +0 -93
- data/vendor/PDCurses/os2/pdcgetsc.c +0 -89
- data/vendor/PDCurses/os2/pdckbd.c +0 -521
- data/vendor/PDCurses/os2/pdcos2.h +0 -55
- data/vendor/PDCurses/os2/pdcscrn.c +0 -449
- data/vendor/PDCurses/os2/pdcsetsc.c +0 -112
- data/vendor/PDCurses/os2/pdcutil.c +0 -52
- data/vendor/PDCurses/panel.h +0 -56
- data/vendor/PDCurses/pdcurses/addch.c +0 -693
- data/vendor/PDCurses/pdcurses/addchstr.c +0 -245
- data/vendor/PDCurses/pdcurses/addstr.c +0 -240
- data/vendor/PDCurses/pdcurses/attr.c +0 -359
- data/vendor/PDCurses/pdcurses/beep.c +0 -68
- data/vendor/PDCurses/pdcurses/bkgd.c +0 -223
- data/vendor/PDCurses/pdcurses/border.c +0 -411
- data/vendor/PDCurses/pdcurses/clear.c +0 -159
- data/vendor/PDCurses/pdcurses/color.c +0 -298
- data/vendor/PDCurses/pdcurses/debug.c +0 -109
- data/vendor/PDCurses/pdcurses/delch.c +0 -96
- data/vendor/PDCurses/pdcurses/deleteln.c +0 -211
- data/vendor/PDCurses/pdcurses/deprec.c +0 -27
- data/vendor/PDCurses/pdcurses/getch.c +0 -417
- data/vendor/PDCurses/pdcurses/getstr.c +0 -474
- data/vendor/PDCurses/pdcurses/getyx.c +0 -139
- data/vendor/PDCurses/pdcurses/inch.c +0 -127
- data/vendor/PDCurses/pdcurses/inchstr.c +0 -214
- data/vendor/PDCurses/pdcurses/initscr.c +0 -367
- data/vendor/PDCurses/pdcurses/inopts.c +0 -324
- data/vendor/PDCurses/pdcurses/insch.c +0 -271
- data/vendor/PDCurses/pdcurses/insstr.c +0 -264
- data/vendor/PDCurses/pdcurses/instr.c +0 -246
- data/vendor/PDCurses/pdcurses/kernel.c +0 -259
- data/vendor/PDCurses/pdcurses/keyname.c +0 -157
- data/vendor/PDCurses/pdcurses/mouse.c +0 -438
- data/vendor/PDCurses/pdcurses/move.c +0 -57
- data/vendor/PDCurses/pdcurses/outopts.c +0 -159
- data/vendor/PDCurses/pdcurses/overlay.c +0 -214
- data/vendor/PDCurses/pdcurses/pad.c +0 -260
- data/vendor/PDCurses/pdcurses/panel.c +0 -633
- data/vendor/PDCurses/pdcurses/printw.c +0 -126
- data/vendor/PDCurses/pdcurses/refresh.c +0 -279
- data/vendor/PDCurses/pdcurses/scanw.c +0 -578
- data/vendor/PDCurses/pdcurses/scr_dump.c +0 -213
- data/vendor/PDCurses/pdcurses/scroll.c +0 -101
- data/vendor/PDCurses/pdcurses/slk.c +0 -591
- data/vendor/PDCurses/pdcurses/termattr.c +0 -182
- data/vendor/PDCurses/pdcurses/terminfo.c +0 -217
- data/vendor/PDCurses/pdcurses/touch.c +0 -163
- data/vendor/PDCurses/pdcurses/util.c +0 -312
- data/vendor/PDCurses/pdcurses/window.c +0 -569
- data/vendor/PDCurses/sdl1/Makefile +0 -129
- data/vendor/PDCurses/sdl1/Makefile.mng +0 -110
- data/vendor/PDCurses/sdl1/README.md +0 -31
- data/vendor/PDCurses/sdl1/deffont.h +0 -385
- data/vendor/PDCurses/sdl1/deficon.h +0 -23
- data/vendor/PDCurses/sdl1/pdcclip.c +0 -131
- data/vendor/PDCurses/sdl1/pdcdisp.c +0 -373
- data/vendor/PDCurses/sdl1/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl1/pdckbd.c +0 -405
- data/vendor/PDCurses/sdl1/pdcscrn.c +0 -414
- data/vendor/PDCurses/sdl1/pdcsdl.h +0 -31
- data/vendor/PDCurses/sdl1/pdcsetsc.c +0 -64
- data/vendor/PDCurses/sdl1/pdcutil.c +0 -40
- data/vendor/PDCurses/sdl1/sdltest.c +0 -79
- data/vendor/PDCurses/sdl2/CMakeLists.txt +0 -76
- data/vendor/PDCurses/sdl2/Makefile +0 -135
- data/vendor/PDCurses/sdl2/Makefile.vc +0 -164
- data/vendor/PDCurses/sdl2/README.md +0 -34
- data/vendor/PDCurses/sdl2/deffont.h +0 -385
- data/vendor/PDCurses/sdl2/deficon.h +0 -23
- data/vendor/PDCurses/sdl2/pdcclip.c +0 -93
- data/vendor/PDCurses/sdl2/pdcdisp.c +0 -534
- data/vendor/PDCurses/sdl2/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl2/pdckbd.c +0 -480
- data/vendor/PDCurses/sdl2/pdcscrn.c +0 -443
- data/vendor/PDCurses/sdl2/pdcsdl.h +0 -33
- data/vendor/PDCurses/sdl2/pdcsetsc.c +0 -67
- data/vendor/PDCurses/sdl2/pdcutil.c +0 -39
- data/vendor/PDCurses/sdl2/sdltest.c +0 -81
- data/vendor/PDCurses/term.h +0 -48
- data/vendor/PDCurses/version.mif +0 -7
- data/vendor/PDCurses/vt/CMakeLists.txt +0 -28
- data/vendor/PDCurses/vt/Makefile +0 -135
- data/vendor/PDCurses/vt/Makefile.bcc +0 -111
- data/vendor/PDCurses/vt/Makefile.dmc +0 -258
- data/vendor/PDCurses/vt/Makefile.vc +0 -144
- data/vendor/PDCurses/vt/Makefile.wcc +0 -107
- data/vendor/PDCurses/vt/README.md +0 -64
- data/vendor/PDCurses/vt/pdcclip.c +0 -20
- data/vendor/PDCurses/vt/pdcdisp.c +0 -284
- data/vendor/PDCurses/vt/pdckbd.c +0 -394
- data/vendor/PDCurses/vt/pdcscrn.c +0 -434
- data/vendor/PDCurses/vt/pdcsetsc.c +0 -45
- data/vendor/PDCurses/vt/pdcutil.c +0 -43
- data/vendor/PDCurses/vt/pdcvt.h +0 -16
- data/vendor/PDCurses/watcom.mif +0 -68
- data/vendor/PDCurses/wincon/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wincon/Makefile.bcc +0 -88
- data/vendor/PDCurses/wincon/Makefile.dmc +0 -256
- data/vendor/PDCurses/wincon/Makefile.lcc +0 -273
- data/vendor/PDCurses/wincon/Makefile.mng +0 -176
- data/vendor/PDCurses/wincon/Makefile.vc +0 -144
- data/vendor/PDCurses/wincon/Makefile.wcc +0 -51
- data/vendor/PDCurses/wincon/README.md +0 -85
- data/vendor/PDCurses/wincon/pdcclip.c +0 -174
- data/vendor/PDCurses/wincon/pdcdisp.c +0 -143
- data/vendor/PDCurses/wincon/pdcgetsc.c +0 -55
- data/vendor/PDCurses/wincon/pdckbd.c +0 -786
- data/vendor/PDCurses/wincon/pdcscrn.c +0 -717
- data/vendor/PDCurses/wincon/pdcsetsc.c +0 -91
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +0 -28
- data/vendor/PDCurses/wincon/pdcutil.c +0 -41
- data/vendor/PDCurses/wincon/pdcwin.h +0 -31
- data/vendor/PDCurses/wingui/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wingui/Makefile.bcc +0 -85
- data/vendor/PDCurses/wingui/Makefile.dmc +0 -259
- data/vendor/PDCurses/wingui/Makefile.lcc +0 -273
- data/vendor/PDCurses/wingui/Makefile.mng +0 -171
- data/vendor/PDCurses/wingui/Makefile.vc +0 -144
- data/vendor/PDCurses/wingui/Makefile.wcc +0 -51
- data/vendor/PDCurses/wingui/README.md +0 -93
- data/vendor/PDCurses/wingui/pdcclip.c +0 -174
- data/vendor/PDCurses/wingui/pdcdisp.c +0 -718
- data/vendor/PDCurses/wingui/pdckbd.c +0 -143
- data/vendor/PDCurses/wingui/pdcscrn.c +0 -2797
- data/vendor/PDCurses/wingui/pdcsetsc.c +0 -89
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +0 -28
- data/vendor/PDCurses/wingui/pdcutil.c +0 -61
- data/vendor/PDCurses/wingui/pdcwin.h +0 -122
- data/vendor/PDCurses/x11/Makefile.in +0 -754
- data/vendor/PDCurses/x11/PDCurses.spec +0 -82
- data/vendor/PDCurses/x11/README.md +0 -62
- data/vendor/PDCurses/x11/ScrollBox.c +0 -319
- data/vendor/PDCurses/x11/ScrollBox.h +0 -51
- data/vendor/PDCurses/x11/ScrollBoxP.h +0 -70
- data/vendor/PDCurses/x11/aclocal.m4 +0 -994
- data/vendor/PDCurses/x11/big_icon.xbm +0 -46
- data/vendor/PDCurses/x11/compose.h +0 -201
- data/vendor/PDCurses/x11/config.guess +0 -1500
- data/vendor/PDCurses/x11/config.h.in +0 -100
- data/vendor/PDCurses/x11/config.sub +0 -1616
- data/vendor/PDCurses/x11/configure +0 -6700
- data/vendor/PDCurses/x11/configure.ac +0 -295
- data/vendor/PDCurses/x11/debian/changelog +0 -6
- data/vendor/PDCurses/x11/debian/compat +0 -1
- data/vendor/PDCurses/x11/debian/control +0 -11
- data/vendor/PDCurses/x11/debian/copyright +0 -27
- data/vendor/PDCurses/x11/debian/rules +0 -98
- data/vendor/PDCurses/x11/little_icon.xbm +0 -14
- data/vendor/PDCurses/x11/ncurses_cfg.h +0 -45
- data/vendor/PDCurses/x11/pdcclip.c +0 -173
- data/vendor/PDCurses/x11/pdcdisp.c +0 -85
- data/vendor/PDCurses/x11/pdcgetsc.c +0 -28
- data/vendor/PDCurses/x11/pdckbd.c +0 -104
- data/vendor/PDCurses/x11/pdcscrn.c +0 -258
- data/vendor/PDCurses/x11/pdcsetsc.c +0 -95
- data/vendor/PDCurses/x11/pdcutil.c +0 -52
- data/vendor/PDCurses/x11/pdcx11.c +0 -316
- data/vendor/PDCurses/x11/pdcx11.h +0 -191
- data/vendor/PDCurses/x11/sb.c +0 -155
- data/vendor/PDCurses/x11/x11.c +0 -3686
- data/vendor/PDCurses/x11/xcurses-config.in +0 -81
- /data/vendor/{PDCurses → PDCursesMod}/cmake/make_uninstall.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/resource.in.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/target_arch.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/demos/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/ncurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/CMakeLists.txt +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/pdcurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/vt/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/wingui/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/x11/install-sh +0 -0
|
@@ -0,0 +1,3850 @@
|
|
|
1
|
+
Generally speaking, this history mentions only the more significant
|
|
2
|
+
changes. See the git log for full details.
|
|
3
|
+
|
|
4
|
+
PDCursesMod 4.5.4 - 2026 April 07
|
|
5
|
+
=================================
|
|
6
|
+
|
|
7
|
+
Minor new features
|
|
8
|
+
------------------
|
|
9
|
+
|
|
10
|
+
- Added 'vt0.c' example code for a PDCurses/PDCursesMod-based terminal
|
|
11
|
+
emulator. 2df44e183f, several subsequent commits.
|
|
12
|
+
|
|
13
|
+
- Framebuffer and DRM ports can show fullwidth characters. bc3b4d8449
|
|
14
|
+
|
|
15
|
+
- chtypes can be short (16-bit) integers. This is mostly of use in very
|
|
16
|
+
memory-restricted environments, such as in some DOS code. e215a6d4b5
|
|
17
|
+
a3762aa3fd
|
|
18
|
+
|
|
19
|
+
- For the GL port, the 'resize' mode can be set via the PDC_RESIZE
|
|
20
|
+
environment variable. b8f822040e
|
|
21
|
+
|
|
22
|
+
- Added a new 'show_uni' test program to display Unicode data. d0c2ef2953
|
|
23
|
+
|
|
24
|
+
- 'naptest.c' (test code for the DOS napms() function) improved and now
|
|
25
|
+
works with compilers other than just Digital Mars. 677ec0c9da
|
|
26
|
+
|
|
27
|
+
- VT platform can be compiled with djgpp and runs correctly (see issue
|
|
28
|
+
#340). Parts of the fix by Gisle Vanem. 222b475523
|
|
29
|
+
|
|
30
|
+
- OpenWATCOM builds in DOS, DOSVGA, and VT ports allow you to specify
|
|
31
|
+
CHTYPE_32=Y or CHTYPE_16=Y (default is 64-bit chtypes). 8e415f1351
|
|
32
|
+
|
|
33
|
+
- Unicode fullwidth/halfwidth/zero-width definitions updated from the
|
|
34
|
+
Unicode 16.0.0 standard to 17.0.0. 6ab0d4f2a8
|
|
35
|
+
|
|
36
|
+
- DOS key remapping for the VT port now uses the same table as the DOS,
|
|
37
|
+
DOSVGA, and OS/2 ports. This results in slightly simpler code, and
|
|
38
|
+
means a DOS VT port recognizes quite a few more keys. 4ce36296ad
|
|
39
|
+
|
|
40
|
+
- Blinking and PDC_gotoyx() code is almost identical between the SDLn,
|
|
41
|
+
x11new, GL, WinGUI, and framebuffer/DRM ports; that code is now
|
|
42
|
+
in common/blink.c. This allows the cursor to blink in all of those
|
|
43
|
+
ports and (in some cases) for the caret and hollow-box cursor styles
|
|
44
|
+
to be supported. f06ab53f0a f6657a39a5 fec5d8be50 9e3cde79ae
|
|
45
|
+
4c8d3a0398 9e3cde79ae
|
|
46
|
+
|
|
47
|
+
- DOSVGA now supports ~16 million (2^24 + 256) colors and 1M (2^20)
|
|
48
|
+
color pairs, similar to (and using the same underlying code as)
|
|
49
|
+
WinGUI, SDLs, GL, framebuffer/DRM, and x11new. It also now
|
|
50
|
+
supports blinking and a few cursor styles (caret, half-block,
|
|
51
|
+
underscore, full block). bd4cc9c616 ac0c9459aa
|
|
52
|
+
|
|
53
|
+
- DOSVGA Makefile revised to simplify use of DJGPP, and to use full
|
|
54
|
+
warnings. A few 'nuisance' warnings were corrected. 141b7f642b
|
|
55
|
+
|
|
56
|
+
- VT platform now beeps.
|
|
57
|
+
|
|
58
|
+
Bug fixes
|
|
59
|
+
---------
|
|
60
|
+
|
|
61
|
+
- Input processing now follows the Open Group (SUSv2) specifications.
|
|
62
|
+
9e0b701fb0
|
|
63
|
+
|
|
64
|
+
- VT now works fully on Microsoft Windows and MS-DOS, fixing several
|
|
65
|
+
display issues. Also, mouse clicks are correctly handled in the
|
|
66
|
+
VT platform on Windows, and window resizing is (mostly) handled.
|
|
67
|
+
(Mouse control sequences appear to not be done in DOS, so VT in
|
|
68
|
+
DOS continues to ignore mouse events.) 9401517387 b3e0830262
|
|
69
|
+
4861583385 ac2c5441f5 b3f4eca4bf 410f5cfad4 ace6fc1248
|
|
70
|
+
|
|
71
|
+
- PDC_millisecs() now will usually pick a better underlying timekeeping
|
|
72
|
+
function. 7906c61500
|
|
73
|
+
|
|
74
|
+
- Overflow in PDC_millisecs() could conceivably happen, affecting the
|
|
75
|
+
handling of mouse clicks. e23eb347f6
|
|
76
|
+
|
|
77
|
+
- On Microsoft Windows, the VT port should emit alternative character
|
|
78
|
+
set glyphs using code page 437 characters for 8-bit character builds
|
|
79
|
+
and Unicode characters for wide builds. 615a32c652
|
|
80
|
+
|
|
81
|
+
- WinGUI : mouse modifiers (Ctr, Alt, Shift) became 'stuck' from the
|
|
82
|
+
previous keys hit, and were not turned off when the modifier keys
|
|
83
|
+
in question were released. 9f9819fe8d
|
|
84
|
+
|
|
85
|
+
- The DOS/DOSVGA napms() code didn't handle negative nap times correctly.
|
|
86
|
+
Also fixed a timing error of one part in 250 million (only a theoretical
|
|
87
|
+
problem; no DOS clock is that accurate). 75da2de072
|
|
88
|
+
|
|
89
|
+
- Fixed unknown attribute warning when compiling WinCon for (mostly)
|
|
90
|
+
non-Intel(R) platforms. Report from nhmall. 2067b43551
|
|
91
|
+
|
|
92
|
+
- WinGUI : positions returned for mouse wheel events were wrong.
|
|
93
|
+
cd8cd7efd8
|
|
94
|
+
|
|
95
|
+
- WinCon : a typo prevented mouse wheel events from working at all.
|
|
96
|
+
Fix provided by Jordan Hemming. 93dba3adf6
|
|
97
|
+
|
|
98
|
+
- Fullwidth characters are now shown correctly for 32-bit chtypes (if they
|
|
99
|
+
are supported on that platform in the first place, and the font
|
|
100
|
+
actually has glyphs for them). 3d6bc63caa
|
|
101
|
+
|
|
102
|
+
- wchgat( ) didn't mask out colors from 'attr'. This could lead to
|
|
103
|
+
garbage display when those colors were ORred with those from the
|
|
104
|
+
'color' parameter. f19bc59406d
|
|
105
|
+
|
|
106
|
+
PDCursesMod 4.5.3 - 2025 August 11
|
|
107
|
+
==================================
|
|
108
|
+
|
|
109
|
+
Minor new features
|
|
110
|
+
------------------
|
|
111
|
+
|
|
112
|
+
- More fixes a la those in 'upstream' PDCurses to make MANUAL.md more
|
|
113
|
+
markdown-friendly. 3e528a85d4 ed3103d705
|
|
114
|
+
|
|
115
|
+
- Framebuffer and DRM ports now have full mouse support. 7ec7b956f0
|
|
116
|
+
2728d46838 04a5f1de93
|
|
117
|
+
|
|
118
|
+
- Zooming/panning around in 'picsview' no longer flickers. af4a7c5d72
|
|
119
|
+
|
|
120
|
+
- Start made on making use of individual flags in curses_trace().
|
|
121
|
+
Previously, debug output was all or nothing (still is, mostly, but
|
|
122
|
+
that can now be changed). 8f73eb0c1b
|
|
123
|
+
|
|
124
|
+
- Various fixes to allow compilation of WinGUI and WinCon with Microsoft
|
|
125
|
+
Visual C 5.0. b56ea997e7 5bd5a1d535 1de3e4d6b4 2b48f9541e
|
|
126
|
+
f381244bf5
|
|
127
|
+
|
|
128
|
+
Bug fixes
|
|
129
|
+
---------
|
|
130
|
+
|
|
131
|
+
- stdin/stdout redirection now works on the Windows console platform. Fix
|
|
132
|
+
supplied by Robin Haberkorn. 6855b3247f 8fbb3a64ea
|
|
133
|
+
|
|
134
|
+
- C23-compliant compilers (and some others) objected to the casting of
|
|
135
|
+
function pointers returned by GetProcAddress(). ce60aa6608 7309a03c81
|
|
136
|
+
|
|
137
|
+
- If PDC_NCMOUSE is #defined, the behavior of the mouse routines should
|
|
138
|
+
copy that of ncurses, warts and all. Scroll-up and down are mapped
|
|
139
|
+
to presses on buttons 4 and 5, and tilt-scroll events and "real"
|
|
140
|
+
button 4 and 5 events are ignored. 0de9f723e3
|
|
141
|
+
|
|
142
|
+
- Minor fixes for Digital Mars and OpenWATCOM compilation of WinCon and
|
|
143
|
+
WinGUI. a4c01532e8 6af988940d 6eedea061c
|
|
144
|
+
|
|
145
|
+
- Fixes for the VT port for DOS. fdd95ca370 4e23068f85 2006f0a085
|
|
146
|
+
1994189705 bb1f6e4bc9 277765ecdc 6ab0a9b1a5 dd7a0a89f0
|
|
147
|
+
|
|
148
|
+
- 'widetest.c' had a bad test to determine if wchar_t was two bytes
|
|
149
|
+
(instead of the obvious choice of four). Pointed out by Gisle Vanem
|
|
150
|
+
in issue #340. 0baaa34d0e
|
|
151
|
+
|
|
152
|
+
- COLOR_PAIRS could be effectively truncated to 8192. 20160b07e0
|
|
153
|
+
|
|
154
|
+
- Colors could get mangled if sizeof( int) == 2. 4682321794
|
|
155
|
+
|
|
156
|
+
PDCursesMod 4.5.2 - 2025 June 19
|
|
157
|
+
================================
|
|
158
|
+
|
|
159
|
+
Minor new features
|
|
160
|
+
------------------
|
|
161
|
+
|
|
162
|
+
- Framebuffer/DRM shows a mouse cursor now, if built with HAVE_MOUSE=Y.
|
|
163
|
+
It doesn't actually respond to mouse events yet, but that should be
|
|
164
|
+
relatively straightforward. 7578a604b9
|
|
165
|
+
|
|
166
|
+
- x11new and framebuffer/DRM ports cleaned up, READMEs updated, some
|
|
167
|
+
unnecessary code removed. b08805c7dd 6221595646 f300bfa0c0 bae06a863c
|
|
168
|
+
|
|
169
|
+
- Fixes for C90 compliance : removed some C++-style // comments, moved
|
|
170
|
+
variables to the top of code blocks, used TRUE/FALSE instead of
|
|
171
|
+
true/false. 880000943a 9efd32336c
|
|
172
|
+
|
|
173
|
+
- In x11new, you can hit Ctrl-Minus and Ctrl-Plus to go to the next smaller
|
|
174
|
+
or larger font size, respectively. 43066a8c8c
|
|
175
|
+
|
|
176
|
+
- The `PDC_KEY_MODIFIER_REPEAT` modifier was not applied in SDL1 and x11new,
|
|
177
|
+
and was broken in SDL2. 83fa89ce74 6bf92e1a06
|
|
178
|
+
|
|
179
|
+
- Changed some documentation to be more markdown-friendly when read into
|
|
180
|
+
MANUAL.md, a la William McBrine's work upstream. 07a5469785
|
|
181
|
+
b786e76322 1cc01e4ec3 7cc0f0d1bb c58fd922d0 a06e0be5ab
|
|
182
|
+
|
|
183
|
+
Bug fixes
|
|
184
|
+
---------
|
|
185
|
+
|
|
186
|
+
- getch() triggered an assert() if fed a character that expanded to a
|
|
187
|
+
multi-byte string in PDC_FORCE_UTF8 builds (issue #335, reported by
|
|
188
|
+
Robin Haberkorn). 6306ac2d48
|
|
189
|
+
|
|
190
|
+
- WinCon/pdckbd.c contained a poorly-written cast to which the C23 standard
|
|
191
|
+
objects, resulting in warnings/errors when built to that standard
|
|
192
|
+
(issue #333). Fix supplied by Gisle Vanem. 2426dbc85e
|
|
193
|
+
|
|
194
|
+
- The `PDC_KEY_MODIFIER_REPEAT` modifier was broken in SDL2. 6bf92e1a06
|
|
195
|
+
|
|
196
|
+
PDCursesMod 4.5.1 - 2025 May 12
|
|
197
|
+
===============================
|
|
198
|
+
|
|
199
|
+
Major new features
|
|
200
|
+
------------------
|
|
201
|
+
|
|
202
|
+
- Added an 'x11new' port : X11 written from scratch to require fewer
|
|
203
|
+
dependencies and to allow a memory-leakage-free build.
|
|
204
|
+
|
|
205
|
+
Minor new features
|
|
206
|
+
------------------
|
|
207
|
+
|
|
208
|
+
- Framebuffer/DRM : simplified specifying which display to use. If you
|
|
209
|
+
have suitable permissions, Alt-= will cycle through displays.
|
|
210
|
+
db3cbb7b0e
|
|
211
|
+
|
|
212
|
+
- `testcurs` now allows one to specify mouse mask parameters more precisely,
|
|
213
|
+
and/or to set a zero mouse interval (which should result in clicks being
|
|
214
|
+
converted to presses and releases). Also, can test using the ncurses
|
|
215
|
+
mouse interface instead of the 'classic' undocumented SysV mouse interface.
|
|
216
|
+
de6c742b4a 7a520f6261 91645ceb9b
|
|
217
|
+
|
|
218
|
+
- VT port now works on Haiku. e8f098d6de
|
|
219
|
+
|
|
220
|
+
Bug fixes
|
|
221
|
+
---------
|
|
222
|
+
|
|
223
|
+
- Framebuffer/DRM port cursor didn't rotate when you rotated the screen.
|
|
224
|
+
f3188affb9
|
|
225
|
+
|
|
226
|
+
- When restarting Curses, the foreground/background weren't stored,
|
|
227
|
+
resulting in odd colors. 433dbfb1d7
|
|
228
|
+
|
|
229
|
+
- The ncurses forms library does not build correctly for wide characters.
|
|
230
|
+
Until it's fixed, it and the tests relying on it are only built in
|
|
231
|
+
narrow-character (8-bit) mode. 0f3125393c
|
|
232
|
+
|
|
233
|
+
- Fixed possible read-outside-bounds error in UTF8 conversion. 5a6170982e
|
|
234
|
+
|
|
235
|
+
- `testcurs` called scanw() with a "plain" %s format specifier. The lack of
|
|
236
|
+
a width left it open to buffer overflow if more than 79 bytes were entered.
|
|
237
|
+
8bf383a7b5
|
|
238
|
+
|
|
239
|
+
- VT build failed when using GNU make to cross-compile demos and tests for
|
|
240
|
+
Windows using MinGW. d391921be0
|
|
241
|
+
|
|
242
|
+
- Mouse input inconsistently respected `mousemask()` on most platforms.
|
|
243
|
+
The common logic for combining press/releases into clicks, double- and
|
|
244
|
+
triple-clicks has been abstracted into `common/mouse.c`, and is now used
|
|
245
|
+
by the WinCon, WinGUI, x11new, and VT platforms (and will probably be
|
|
246
|
+
used eventually by most other platforms). See issue #330. 52d206870c
|
|
247
|
+
9e857e7792 812bd6953a 592d27f164
|
|
248
|
+
|
|
249
|
+
PDCursesMod 4.5.0 - 2024 Dec 31
|
|
250
|
+
=================================
|
|
251
|
+
|
|
252
|
+
Major new features
|
|
253
|
+
------------------
|
|
254
|
+
|
|
255
|
+
- Added an OS/2 GUI port, provided by chasonr. 23b1fbed61 267f92a2c0
|
|
256
|
+
|
|
257
|
+
- The ncurses 'menu' library can be compiled and used with PDCursesMod,
|
|
258
|
+
and the ncurses program 'demo_menus' built to test it out. (The
|
|
259
|
+
'forms' library can be built in 8-bit character mode -- it currently
|
|
260
|
+
uses ncurses internals for wide mode -- but doesn't appear to
|
|
261
|
+
actually work yet.) 07bc4ac785 1ad9562b9a
|
|
262
|
+
|
|
263
|
+
Minor new features
|
|
264
|
+
------------------
|
|
265
|
+
|
|
266
|
+
- The DRM and Linux framebuffer port now allows for screen rotation.
|
|
267
|
+
Hit Alt-/ for a 90-degree rotation. This should pave the way for
|
|
268
|
+
support on phones and other rotatable displays (and already helps if
|
|
269
|
+
you have a monitor in portrait mode). 0e41ba5e68 1b7b432f9c
|
|
270
|
+
|
|
271
|
+
- Added is_cbreak(), is_echo(), is_nl(), is_raw() functions to access
|
|
272
|
+
members of the non-opaque SCREEN struct. The first two replace
|
|
273
|
+
PDC_getcbreak() and PDC_getecho(). 98b6969a7e
|
|
274
|
+
|
|
275
|
+
- Windows can be created, moved, and resized that go off the right
|
|
276
|
+
and bottom edges of the screen, a la ncurses. (I think this was
|
|
277
|
+
an acknowledgment of the fact that after resizing a screen, windows
|
|
278
|
+
might go over those edges anyway.) Windows still cannot go off the
|
|
279
|
+
left or top edges. bc51d18ff1
|
|
280
|
+
|
|
281
|
+
- Added a new 'test' program for the issues mentioned above with
|
|
282
|
+
scrolling and winsertln(), wdeleteln(), winsdelln(). 98c7405a3f
|
|
283
|
+
|
|
284
|
+
- Three new small test programs to investigate various aspects of
|
|
285
|
+
how curses works (or doesn't work). 5cef1e3d00
|
|
286
|
+
|
|
287
|
+
- The 'tests' programs can now be built, on some platforms, with
|
|
288
|
+
'make -f Makefile tests'. 200b548516 e611673b49 63138eaf34
|
|
289
|
+
80fdfe7095 218aa8c0ed
|
|
290
|
+
|
|
291
|
+
- Switched from defaulting to ncurses-6.4 tests to ncurses-6.5.
|
|
292
|
+
|
|
293
|
+
- WinGUI now defaults to resizable windows, similar to SDLn, WinCon,
|
|
294
|
+
and X11. 58807ea498
|
|
295
|
+
|
|
296
|
+
- winsnstr() handled 513 _bytes_ from the input, instead of the clearly
|
|
297
|
+
intended 513 wchar_ts. This worked, but was an unnecessarily low
|
|
298
|
+
limitation. It is now fixed, and the function can now handle
|
|
299
|
+
arbitrarily long strings via recursion. Added some code to test this
|
|
300
|
+
in 'show_col.c'. 3f8dfa9e06 18ef78de69
|
|
301
|
+
|
|
302
|
+
- PDC_wcwidth( ) updated from Unicode 14.0.0 to 16.0.0 93e32ef a5f13c2
|
|
303
|
+
|
|
304
|
+
Bug fixes
|
|
305
|
+
---------
|
|
306
|
+
|
|
307
|
+
- In rare cases, blinking on the framebuffer port could be disabled
|
|
308
|
+
due to an integer rollover. eaee2a61f2
|
|
309
|
+
|
|
310
|
+
- In WinGUI, we could potentially read memory out of bounds. From
|
|
311
|
+
slipher. 70d27245d1
|
|
312
|
+
|
|
313
|
+
- In WinGUI, theoretically 'monospaced' fonts were not necessarily
|
|
314
|
+
monospaced. Reverted to drawing each character separately. b99fed1acb
|
|
315
|
+
|
|
316
|
+
- In WinGUI, when redrawing a string of characters, the preceding and
|
|
317
|
+
subsequent glyphs were also redrawn. This was apparently needed at
|
|
318
|
+
one time to avoid stray pixels, but appears to be unnecessary now.
|
|
319
|
+
8466f73e21
|
|
320
|
+
|
|
321
|
+
- In WinGUI and WinCon, PDC_clearclipboard() would fail if the clipboard
|
|
322
|
+
was not open. From Mark Hessling. a071130c95
|
|
323
|
+
|
|
324
|
+
- If napms() was called with a negative value, it would lock. 65dfa7e61a
|
|
325
|
+
|
|
326
|
+
- Framebuffer/DRM port didn't redraw upon changing fonts if the new font
|
|
327
|
+
was the same size as the old one. c714cd9bcc
|
|
328
|
+
|
|
329
|
+
- wsetscrreg() required the cursor for the window to be positioned
|
|
330
|
+
between the 'top' and 'bottom' of the new scroll region. 5a0d5becee
|
|
331
|
+
|
|
332
|
+
- wdeleteln() would delete the line currently under the cursor, then
|
|
333
|
+
bring up lines down to the end of the current scroll region, inserting
|
|
334
|
+
a blank line there. It really should delete all the way to the bottom
|
|
335
|
+
of the window. See also wmcbrine/PDCurses/issues/165. b02f94fd3d
|
|
336
|
+
|
|
337
|
+
- The 'picsview' demo had a possible buffer overrun error. Reported and
|
|
338
|
+
fix proposed by Michael Knap. fcd2dd0cb8
|
|
339
|
+
|
|
340
|
+
- Plan9 port ran into a compile error due to different timekeeping
|
|
341
|
+
functions. Also was missing a few demos and term.h. 1e8472cdbf
|
|
342
|
+
|
|
343
|
+
- Removed an assert() in mvwin() when the window was moved outside the
|
|
344
|
+
screen area. Some programs (including 'test_pan') assume they can try
|
|
345
|
+
moving a window, then check the return value to see if it was actually
|
|
346
|
+
on screen. c801354044
|
|
347
|
+
|
|
348
|
+
- PDC_set_box_type() has been removed, because it's an unneeded redundancy.
|
|
349
|
+
You can get double-lined or thick-lined boxes, and/or rounded corners,
|
|
350
|
+
via the standard Curses wborder_set() function, and it'll work with
|
|
351
|
+
ncurses and other libraries. 'test_pan' revised to provide an example
|
|
352
|
+
of how that's done. f8d87ed549 099fa2876c
|
|
353
|
+
|
|
354
|
+
- printw() overflowed a buffer when asked to output more than 512 bytes.
|
|
355
|
+
ddf80d010f
|
|
356
|
+
|
|
357
|
+
- napms() rounded _up_ to the nearest clock tick on DOS and DOSVGA; it now
|
|
358
|
+
rounds _to_ the nearest clock tick (with at least one tick being used).
|
|
359
|
+
Modified the documentation to reflect this. 785113f0b9
|
|
360
|
+
|
|
361
|
+
- PDC_wcstombs() could overflow a buffer in the UTF8 decoding. 7d704dd618
|
|
362
|
+
|
|
363
|
+
- DOS and DOSVGA builds failed on Digital Mars. Several small fixes were
|
|
364
|
+
required. 981893b997 d22725b90a 32f22660c4 fd1ddf866c
|
|
365
|
+
|
|
366
|
+
- Fixes for Borland Turbo C compilation. a59f452e78 26128c29aa
|
|
367
|
+
d6b7e998eb
|
|
368
|
+
|
|
369
|
+
- panel_hidden() is now portable, returning TRUE (1) and FALSE (0) instead
|
|
370
|
+
of OK (0) and ERR (-1) This may break existing applications, so you possibly
|
|
371
|
+
want to check for the PDCursesMod build (PDC_BUILD < 4500).
|
|
372
|
+
|
|
373
|
+
PDCursesMod 4.4.0 - 2023 November 30
|
|
374
|
+
===================================
|
|
375
|
+
|
|
376
|
+
Note that because of SCREEN and WINDOW now being opaque, the WA_
|
|
377
|
+
flags and some A_ flags changing, and KEY_MAX being redefined, this
|
|
378
|
+
is _not_ binary compatible with 4.3.x. However, you'll get a link
|
|
379
|
+
error if you get versions mixed up, so this shouldn't cause any
|
|
380
|
+
real trouble.
|
|
381
|
+
|
|
382
|
+
Major new features
|
|
383
|
+
------------------
|
|
384
|
+
|
|
385
|
+
- The SCREEN and WINDOW structures are now opaque. 11671880e2
|
|
386
|
+
3259719b37
|
|
387
|
+
|
|
388
|
+
- The WA_ flags are now distinct, in builds with 64-bit chtypes and
|
|
389
|
+
attr_ts (the default). This led to considerable documentation
|
|
390
|
+
changes and an attempt to make the distinction between WA_ macros
|
|
391
|
+
(for use with wattr_t) and A_ macros (for use with chtype) clearer.
|
|
392
|
+
Most implementations of curses have wattr_t == chtype, including
|
|
393
|
+
PDCurses* and ncurses, but you can't really rely on it.
|
|
394
|
+
78658c94cd
|
|
395
|
+
|
|
396
|
+
- KEY_MAX was increased to reserve some key codes for future use.
|
|
397
|
+
16ac494c25
|
|
398
|
+
|
|
399
|
+
- The FILE arguments passed to newterm() are now actually used on the
|
|
400
|
+
VT platform. Changes by Pavel Stehule. 9c16db9589
|
|
401
|
+
|
|
402
|
+
Minor new features
|
|
403
|
+
------------------
|
|
404
|
+
|
|
405
|
+
- SDL1, SDL2, and GL support double and triple mouse clicks.
|
|
406
|
+
From Lyle Tafoya. a4e563d763
|
|
407
|
+
|
|
408
|
+
- 'widetest' now tests copying of both precomposed and combining
|
|
409
|
+
characters with getcchar() and setcchar(). 19169a1b18
|
|
410
|
+
|
|
411
|
+
- VT flavor gets the correct initial screen size in Windows.
|
|
412
|
+
d62083a096
|
|
413
|
+
|
|
414
|
+
- 'panels' library almost completely rewritten. The new version is
|
|
415
|
+
better at figuring out what parts need to be updated, and is
|
|
416
|
+
generally easier to understand. 8830b71392.
|
|
417
|
+
|
|
418
|
+
- PDC_transform_line_sliced() used to break up lines to ensure that
|
|
419
|
+
PDC_transform_line() will not be fed packets of excessive size, nor
|
|
420
|
+
packets that continue after fullwidth or combining characters.
|
|
421
|
+
This avoids buffer overruns and problems with mishandled characters.
|
|
422
|
+
cb8c87b287
|
|
423
|
+
|
|
424
|
+
- 'testcurs' attribute test now lists which flags in term_attrs() are
|
|
425
|
+
set. 4da423c59e
|
|
426
|
+
|
|
427
|
+
- Added some small test programs for very specific feature/bug tests.
|
|
428
|
+
e6a5edee79
|
|
429
|
+
|
|
430
|
+
- You can set a 'thick' style for boxes/borders (wide-character builds
|
|
431
|
+
only). 5fd12f8ec9
|
|
432
|
+
|
|
433
|
+
Bug fixes
|
|
434
|
+
---------
|
|
435
|
+
|
|
436
|
+
- WinGUI keyboard responsiveness could be poor if it wasn't getting
|
|
437
|
+
enough CPU share. 087c20cc87
|
|
438
|
+
|
|
439
|
+
- Fixed a (very small) memory leak from reset_color_pairs. 9e236abb17
|
|
440
|
+
|
|
441
|
+
- Fixed some ncurses demo failures, due to incomplete HAVE_xxx
|
|
442
|
+
descriptions. From William McBrine's PDCurses. 2d114bf406
|
|
443
|
+
|
|
444
|
+
- Panels were only redrawn on window resizes if they overlapped other
|
|
445
|
+
panels, and even then, only the overlapping lines were redrawn.
|
|
446
|
+
e2b2205da6
|
|
447
|
+
|
|
448
|
+
- Numeric keypad presses were duplicated on SDL2 and GL for Windows.
|
|
449
|
+
7c26ec92ed
|
|
450
|
+
|
|
451
|
+
- The SDL2 makefile had a recursive definition of CC and PREFIX.
|
|
452
|
+
ac96c5511e
|
|
453
|
+
|
|
454
|
+
- If the screen was resized, either programmatically or by the user,
|
|
455
|
+
the "pseudo-panel" for that screen was not resized. 6b571be281
|
|
456
|
+
|
|
457
|
+
- waddnwstr() could read characters one element past the array bounds.
|
|
458
|
+
(Theoretically fixed in commit c03e650a70, but I'd messed it up.)
|
|
459
|
+
5735a1cb31
|
|
460
|
+
|
|
461
|
+
- touchoverlap() un-touched some parts of the window that didn't
|
|
462
|
+
overlap. 5c0bc334f8
|
|
463
|
+
|
|
464
|
+
- Line attributes were not reliably updated after PDC_set_line_color().
|
|
465
|
+
3b54290f13
|
|
466
|
+
|
|
467
|
+
- Ripped-off lines did not necessarily work initially and always got
|
|
468
|
+
mangled when the screen was resized. 05e09e5368
|
|
469
|
+
|
|
470
|
+
PDCursesMod 4.3.7 - 2023 June 17
|
|
471
|
+
================================
|
|
472
|
+
|
|
473
|
+
Major new features
|
|
474
|
+
------------------
|
|
475
|
+
|
|
476
|
+
- SDL2 GL port, from Julius Ikkala. This is (on most systems)
|
|
477
|
+
faster than the "traditional" SDL2 port. Many commits, starting
|
|
478
|
+
at 4678131a39.
|
|
479
|
+
|
|
480
|
+
Minor new features
|
|
481
|
+
------------------
|
|
482
|
+
|
|
483
|
+
- Support on Windows for Unicode input in the SMP (codepoints above
|
|
484
|
+
above 0xFFFF, for instance emojis.) 2050706649 75b62ea015
|
|
485
|
+
|
|
486
|
+
- WinCon: supports full unicode output including SMP. 3ec63c9067
|
|
487
|
+
7089b2eae1 fac87bd938
|
|
488
|
+
|
|
489
|
+
- WinCon, WinGUI can be cross-compiled for Windows on Arm. 158e8ae5b7
|
|
490
|
+
|
|
491
|
+
- 'newtest': extended the SLK testing. 'newtest' and 'testcurs' now
|
|
492
|
+
use wget_wch( ) in wide builds, so the actual character is shown on
|
|
493
|
+
input tests (instead of the multibyte stream). 'testcurs' gradient
|
|
494
|
+
example (showing colors beyond 256 palette entries) is a little more
|
|
495
|
+
logically set out. c744e3ec03 7089b57d07
|
|
496
|
+
|
|
497
|
+
- WinCon can support a 'default' (transparent) background. 81cbefbd4b
|
|
498
|
+
|
|
499
|
+
- 'curspriv.h' modified to allow C++ compilation. 52a2fdf518
|
|
500
|
+
|
|
501
|
+
- Clarified compatibility for ACS_ and WACS_ box characters, and added
|
|
502
|
+
many missing aliases. From a suggestion by Simon Sobisch. e8f7b33bbf
|
|
503
|
+
|
|
504
|
+
- Fixed warnings with OpenWATCOM. We now compile with -we ("treat
|
|
505
|
+
warnings as errors"). f27369e93b abbd8f5268 89e3426248
|
|
506
|
+
|
|
507
|
+
- If you try to compile the DOS version with WIDE=Y, you get an error
|
|
508
|
+
message explaining that wide characters don't work on that platform.
|
|
509
|
+
d07b884502
|
|
510
|
+
|
|
511
|
+
- Now using ncurses-6.4 tests instead of 6.3.
|
|
512
|
+
|
|
513
|
+
Bug fixes
|
|
514
|
+
---------
|
|
515
|
+
|
|
516
|
+
- WinCon: Key modifiers were incorrectly cleared without a key event.
|
|
517
|
+
9229f08604
|
|
518
|
+
|
|
519
|
+
- VT: Ctrl-Alt-letter input was off by one. Hit, say, Ctrl-Alt-T,
|
|
520
|
+
and you'd get Ctrl-Alt-U. 65568582af
|
|
521
|
+
|
|
522
|
+
- Fixed some casting issues with GetProcAddress( ) in Windows and a
|
|
523
|
+
deprecation warning with MinGW, with considerable help from Arnold
|
|
524
|
+
Tremblay and Chuck Haatvedt. Further work may be required (it works,
|
|
525
|
+
but pedantic compilation can get you warnings). bbae4bb0e8 28cbcfcc34
|
|
526
|
+
|
|
527
|
+
- CMake's list of demos is now up to date for DOS, DOSVGA, WinCon,
|
|
528
|
+
WinGUI. Others to follow. 4f3dc96436
|
|
529
|
+
|
|
530
|
+
- Pasting text from the clipboard was done with a buffer lacking room
|
|
531
|
+
for a null terminator, resulting in a memory overwrite. Reported by
|
|
532
|
+
nhmall (issue #295). 0a4e1e9065
|
|
533
|
+
|
|
534
|
+
- realloc( ptr, 0); was assumed to free ptr and return NULL. This is
|
|
535
|
+
usually true, but isn't guaranteed and isn't true on FreeBSD, and
|
|
536
|
+
caused an assert to be triggered in endwin(). abbb6de7de
|
|
537
|
+
|
|
538
|
+
- 'terminfo' functions were not included in the DOSVGA builds, nor in
|
|
539
|
+
WinCon when using the Microsoft VC makefile. Also, the WinCon Digital
|
|
540
|
+
Mars makefile was broken. c51efbbf88
|
|
541
|
+
|
|
542
|
+
- 'picsview' and 'mbrot' demos now work correctly with ncurses. Some
|
|
543
|
+
unnecessary distinctions between PDCurses* and ncurses were removed.
|
|
544
|
+
89727917e7
|
|
545
|
+
|
|
546
|
+
PDCursesMod 4.3.6 - 2023 April 12
|
|
547
|
+
=================================
|
|
548
|
+
|
|
549
|
+
Minor new features
|
|
550
|
+
------------------
|
|
551
|
+
|
|
552
|
+
- SDL2 can now show Unicode past 0xffff (Supplemental Multilingual
|
|
553
|
+
Planes). 602bc380f81
|
|
554
|
+
|
|
555
|
+
- VT port supports output redirection. a6618d94d7 6925d0f571
|
|
556
|
+
65939aaccd
|
|
557
|
+
|
|
558
|
+
- WinGUI support DPI awareness, for better font display on high-res
|
|
559
|
+
screens. 012e3d90f8
|
|
560
|
+
|
|
561
|
+
- SDL1 and 2 and X11 support user handling of the window close button,
|
|
562
|
+
using PDC_set_function_key. 89b2287d66 791318dfaa
|
|
563
|
+
|
|
564
|
+
- 'terminfo' functions (really stubs) are compiled and linked in for
|
|
565
|
+
all platforms. ab1c007273 248146021e
|
|
566
|
+
|
|
567
|
+
- Build support added for LLVM and Windows on ARM, from Mioki.
|
|
568
|
+
158e8ae5b7 2fb65608b3 86c1296d89 4884ce2c6d
|
|
569
|
+
|
|
570
|
+
Bug fixes
|
|
571
|
+
---------
|
|
572
|
+
|
|
573
|
+
- HiDPI support for WinGUI crashed (reported by Chuck Haatvedt), fixed
|
|
574
|
+
by Casey Langen. 489f5d6317
|
|
575
|
+
|
|
576
|
+
- Resizing 'ptest' caused it to move to the next panel display
|
|
577
|
+
in the series. 0ed72b9f91
|
|
578
|
+
|
|
579
|
+
- Partial fix so that getch( ) will return byte codes, expanding characters
|
|
580
|
+
beyond 256 into multi-byte strings. bd50b2b2ab
|
|
581
|
+
|
|
582
|
+
- Negative window sizes for newwin() and resize() were not error-checked,
|
|
583
|
+
resulting in segfaults. c6c7f2d074
|
|
584
|
+
|
|
585
|
+
- In Windows SDL2, Alt-keystrokes were ignored (see wmcbrine/PDCurses#142).
|
|
586
|
+
Fix provided by Benjamin Adamson. 7f1e1bba34
|
|
587
|
+
|
|
588
|
+
- In SDL2, programmatic resizes caused further spurious resizes,
|
|
589
|
+
leading to KEY_RESIZE events. b09c91ea15
|
|
590
|
+
|
|
591
|
+
- Scrolling a window could result in a crash when the window was
|
|
592
|
+
freed. 72521a1697
|
|
593
|
+
|
|
594
|
+
- Decoding UTF8 was broken for SMP. ad7cd29a23
|
|
595
|
+
|
|
596
|
+
- WinGUI could get confused if the window was resized, resulting in
|
|
597
|
+
input being ignored. bc340c0d20
|
|
598
|
+
|
|
599
|
+
- Text selection & copying could cause memory corruption with 4 byte UTF-8
|
|
600
|
+
codepoints when WIDE=Y. bff53ab114
|
|
601
|
+
|
|
602
|
+
See the git log for more details.
|
|
603
|
+
|
|
604
|
+
PDCursesMod 4.3.5 - 2022 November 27
|
|
605
|
+
====================================
|
|
606
|
+
|
|
607
|
+
Major new features
|
|
608
|
+
------------------
|
|
609
|
+
|
|
610
|
+
- WinGUI is again single-threaded, resulting in considerably simpler
|
|
611
|
+
code and fixing some resizing issues. See pull request #240.
|
|
612
|
+
6962ab6e9d
|
|
613
|
+
|
|
614
|
+
Minor new features
|
|
615
|
+
------------------
|
|
616
|
+
|
|
617
|
+
- Framebuffer port can now use either the (deprecated) Linux framebuffer
|
|
618
|
+
system or the DRM (Direct Rendering Manager) system. DRM is not
|
|
619
|
+
supported on some older systems and the Linux framebuffer is not
|
|
620
|
+
supported on newer ones. DRM also can be used with *BSD; the Linux
|
|
621
|
+
framebuffer really is a Linux-only solution. e9bc09c083
|
|
622
|
+
|
|
623
|
+
- GNU Makefiles for VT and framebuffer ports work out of the box on
|
|
624
|
+
FreeBSD. 2b5f0036fe
|
|
625
|
+
|
|
626
|
+
- Much revision internal to the PDCursesMod library (no effect as far
|
|
627
|
+
as users of the library are concerned) to move static variables into
|
|
628
|
+
the SCREEN structure, in a way that preserves binary compatibility
|
|
629
|
+
and keeps those variables opaque outside the library. 0d5e4dc5b4
|
|
630
|
+
3e167172ff 7449df5369
|
|
631
|
+
|
|
632
|
+
- delwin() now returns ERR if you attempt to delete a window with
|
|
633
|
+
active subwindows, or a window that wasn't allocated by PDCursesMod
|
|
634
|
+
or which has already been freed. c643c0da95 3b14813dbb
|
|
635
|
+
|
|
636
|
+
- delscreen() deletes all windows associated with a SCREEN. 26e473c60b
|
|
637
|
+
|
|
638
|
+
- Made the PANEL and PANELOBS structures opaque. f55e55a0fb 78039d10c3
|
|
639
|
+
|
|
640
|
+
- Checking for key hits is much, much faster on most platforms.
|
|
641
|
+
6612df5af6
|
|
642
|
+
|
|
643
|
+
- Added ncurses extensions for opaque WINDOW structs, from Markus Uhlin.
|
|
644
|
+
7bb822b2a4 22fecc1cf6
|
|
645
|
+
|
|
646
|
+
- You can specify the library name during a GCC build with LIBNAME=(name)
|
|
647
|
+
and the shared library name with DLLNAME=(name). Support is, as yet,
|
|
648
|
+
incomplete, but it should be possible to expand this to MSVC and
|
|
649
|
+
OpenWATCOM builds. 44e5aa323e
|
|
650
|
+
|
|
651
|
+
- 'ptest' and 'speed' demos free all memory on exit. This helps (slightly)
|
|
652
|
+
when testing with Valgrind.
|
|
653
|
+
|
|
654
|
+
- On gcc and mingw builds for WinCon, WinGUI, and VT, one can run 'make
|
|
655
|
+
configure (options)' to revise 'curses.h' to use the specified options.
|
|
656
|
+
This may be extended to other compilers and platforms. fe39e244d2
|
|
657
|
+
9c0f475287
|
|
658
|
+
|
|
659
|
+
Bug fixes
|
|
660
|
+
---------
|
|
661
|
+
|
|
662
|
+
- In some situations, cursor movement/changes were not immediately made
|
|
663
|
+
on VT and SDL2. a805ec2b15 18abe3dbd5
|
|
664
|
+
|
|
665
|
+
- Keyboard entry in SDL2 was defective for some numeric keypad hits, and
|
|
666
|
+
shift-F(n) keys gave no response. d87b7bd917 8a41f2ed57
|
|
667
|
+
|
|
668
|
+
- PDC_free_memory_allocations() (see below) was unnecessary; if we follow
|
|
669
|
+
the specifications for delscreen(), as we now do, all that memory
|
|
670
|
+
gets freed in the natural course of things. 0223039ec0 60138ca8ec
|
|
671
|
+
|
|
672
|
+
- SDL2 had problems finding the default TrueType font on Rocky Linux 9
|
|
673
|
+
builds. Mark Hessling added a bit of code so that a secondary default
|
|
674
|
+
path is specified; if one path fails, we try the other. 1e4bcc9676
|
|
675
|
+
|
|
676
|
+
- SDL1 was similarly updated; it also got some better default locations
|
|
677
|
+
for TrueType fonts on Windows and Apple, borrowed from fixes that had
|
|
678
|
+
already been done for SDL2. 9cf041e835
|
|
679
|
+
|
|
680
|
+
- Both SDL1 and SDL2 failed to free some memory when delscreen(SP) was
|
|
681
|
+
called. The result was that you couldn't cleanly shut down curses
|
|
682
|
+
completely and restart it. c62edf7752
|
|
683
|
+
|
|
684
|
+
- Fixed some problems with Digital Mars compiles and added missing demos.
|
|
685
|
+
e798d30e63 4781b742b5 e39528f9e8 5efbea3676 aba598f492
|
|
686
|
+
|
|
687
|
+
- wgetnstr() was broken on platforms where wint_t != wchar_t. 54bc1a16fb
|
|
688
|
+
|
|
689
|
+
- AltCharSet display was broken in DOSVGA 8-bit character builds. e00e33650b
|
|
690
|
+
|
|
691
|
+
- getch() and wget_wch() could return erroneous values in WinCon for values
|
|
692
|
+
greater than 127. e54d03fc80 e86d9c3568
|
|
693
|
+
|
|
694
|
+
- Made PDC_set_default_colors() an internal function. Exposing it basically
|
|
695
|
+
amounted to a bug. f1786064ee acd143144f
|
|
696
|
+
|
|
697
|
+
- In SDLn in fullscreen mode, mouse events near the bottom or right-hand
|
|
698
|
+
sides of the screen could trigger segfaults. 03eb51cefc
|
|
699
|
+
|
|
700
|
+
PDCursesMod 4.3.4 - 2022 July 29
|
|
701
|
+
================================
|
|
702
|
+
|
|
703
|
+
Minor new features
|
|
704
|
+
------------------
|
|
705
|
+
|
|
706
|
+
- As a small step to avoiding direct access to the SCREEN structure
|
|
707
|
+
outside private PDCurses code, added PDC_getbreak() and PDC_getecho()
|
|
708
|
+
functions to access SP->cbreak and SP->echo. 59bd4b5653 5da7c96fe8
|
|
709
|
+
|
|
710
|
+
- You can free remaining internal buffers by calling the new
|
|
711
|
+
PDC_free_memory_allocations() function. 8d10534143 2259f29d5f
|
|
712
|
+
(Note that this has been reverted.)
|
|
713
|
+
|
|
714
|
+
- On Linux, we use the system-provided wcwidth() instead of our own.
|
|
715
|
+
Aside from avoiding redundant code, this may help in non-Unicode
|
|
716
|
+
locales (our wcwidth() is for Unicode only). fc520ca19f
|
|
717
|
+
|
|
718
|
+
- PDC_wcwidth( ) updated from Unicode 5.0 to 14.0.0, and now uses the
|
|
719
|
+
16-bit tables generated by uniset. 68b38102bc
|
|
720
|
+
|
|
721
|
+
- When building SDL1 on OS/2, Ctrl-(letter) and Alt-(letter) combinations
|
|
722
|
+
were not returned. Pointed out and fix contributed by Mark Hessling.
|
|
723
|
+
2968f3198d
|
|
724
|
+
|
|
725
|
+
- Mark also found some neglected VT key sequences and added them.
|
|
726
|
+
c47ce9f724
|
|
727
|
+
|
|
728
|
+
- Windows clipboard functions consolidated in the 'common' directory.
|
|
729
|
+
This provides the clipboard code for the WinCon and WinGUI platforms,
|
|
730
|
+
and for VT when compiled in Windows. It would probably work with SDL1
|
|
731
|
+
when compiled in Windows, but that would need testing. 02d55b890e
|
|
732
|
+
|
|
733
|
+
- putwin() should produce files that can be read by getwin() even if
|
|
734
|
+
the putting code and the getting code are compiled with different
|
|
735
|
+
chtypes (i.e., wide vs. narrow and 32-bit vs. 64-bit chtypes).
|
|
736
|
+
6824e49bab 98e3f56580
|
|
737
|
+
|
|
738
|
+
- Miscellaneous code cleanup.
|
|
739
|
+
|
|
740
|
+
Bug fixes
|
|
741
|
+
---------
|
|
742
|
+
|
|
743
|
+
- CMake builds of SDL2 with WIDE=Y were not actually making wide builds.
|
|
744
|
+
797f688dd4 99e90f20c5 f6b73892c3
|
|
745
|
+
|
|
746
|
+
- endwin() was not signal-safe. While in endwin(), we shouldn't free
|
|
747
|
+
memory or have debug logging on (we were doing both). See "upstream"
|
|
748
|
+
issue wmcbrine/PDCurses#134 for discussion. c5ca238fac 18ff2cb00c
|
|
749
|
+
8d10534143
|
|
750
|
+
|
|
751
|
+
- WinGUI could block if there was no key delay (threading contention).
|
|
752
|
+
b84cf0cbb8
|
|
753
|
+
|
|
754
|
+
- Alternative character set glyphs could be shown when they shouldn't
|
|
755
|
+
be, or not shown when they should be. d6d338a8ee
|
|
756
|
+
|
|
757
|
+
- Revised mouse click handling on VT. The previous logic sometimes missed
|
|
758
|
+
double-clicks and could get confused with press/move/release.
|
|
759
|
+
93d0d931a0
|
|
760
|
+
|
|
761
|
+
- VT platform missed some function keys on some platforms. 043ca72355
|
|
762
|
+
|
|
763
|
+
- SDL2 got duplicated key presses if Shift-(numpad) keys were hit (issue #234).
|
|
764
|
+
9b86c29aa1
|
|
765
|
+
|
|
766
|
+
- Fixed (I think) problem with AppVeyor failing to get OpenWATCOM 1.9 to
|
|
767
|
+
work, causing almost every run to fail. cb59c93039 61929c222d 18abcfdbd6
|
|
768
|
+
|
|
769
|
+
- wattr_on() and attr_on() ignored the 'opts' parameter. When non-NULL, it
|
|
770
|
+
should (and now is) treated as a pointer to an integer color pair.
|
|
771
|
+
23374b894b
|
|
772
|
+
|
|
773
|
+
PDCursesMod 4.3.3 - 2022 May 25
|
|
774
|
+
===============================
|
|
775
|
+
|
|
776
|
+
Major new features
|
|
777
|
+
------------------
|
|
778
|
+
|
|
779
|
+
- OS/2 code replaced with William McBrine's current version, with some
|
|
780
|
+
modifications to accommodate PDCursesMod. This basically means that
|
|
781
|
+
the OS/2 port works again (it was rather thoroughly broken). 0b3cbc038f
|
|
782
|
+
bd39b611288
|
|
783
|
+
|
|
784
|
+
Minor new features
|
|
785
|
+
------------------
|
|
786
|
+
|
|
787
|
+
- Clipboard handling is implemented in a common manner for DOS, DOSVGA,
|
|
788
|
+
VT, SDL1, and framebuffer ports. This means the VT and framebuffer
|
|
789
|
+
ports actually store the clipboard text in a buffer and can retrieve it,
|
|
790
|
+
instead of basically doing nothing at all. 050b3532e1 d97b6a4171
|
|
791
|
+
|
|
792
|
+
- Two new demos, 'mbrot' (Mandelbrot display, exercises some of the
|
|
793
|
+
more esoteric color/palette functions) and 'calendar' (shows a calendar).
|
|
794
|
+
cbd59aca60
|
|
795
|
+
|
|
796
|
+
- Screen resizing no longer requires a call to resize_term(0,0). No
|
|
797
|
+
one appears to know why that call was required in the first place.
|
|
798
|
+
Commit 3110e3f624.
|
|
799
|
+
|
|
800
|
+
- The 'opts' parameter for certain functions, heretofore ignored, can
|
|
801
|
+
now be used to handle integer-sized color pair indices, a la ncurses.
|
|
802
|
+
9be6bde504
|
|
803
|
+
|
|
804
|
+
Bug fixes
|
|
805
|
+
---------
|
|
806
|
+
|
|
807
|
+
- Color 8 defaulted to black on X11, WinGUI, Linux framebuffer, and
|
|
808
|
+
the SDLn platforms. It should be (and now is) a medium gray.
|
|
809
|
+
ab8b038dc9
|
|
810
|
+
|
|
811
|
+
- Wide-character string input functions, such as get_wstr(), generated
|
|
812
|
+
display artifacts when fullwidth text was input. 549e4635e6
|
|
813
|
+
|
|
814
|
+
- VT port handles Alt-letter + shift/control modifiers better, setting
|
|
815
|
+
the appropriate modifier flags. 74b84cc28f
|
|
816
|
+
|
|
817
|
+
- WinGUI now interprets Shift-numpad keys correctly. eacd04d1aa
|
|
818
|
+
|
|
819
|
+
- VT and framebuffer ports (again) capture Ctrl-C with an interrupt
|
|
820
|
+
handler. Without this, you could hit Ctrl-C and not have anything
|
|
821
|
+
actually happen until getch() was called, so your code could hang
|
|
822
|
+
easily. Ctrls-Z, S, Q are now enabled on both platforms. cac097f235
|
|
823
|
+
|
|
824
|
+
- If the screen was user-resized, KEY_RESIZE was only returned if you'd
|
|
825
|
+
called `keypad( stdstr, 1)`. That requirement appeared to be unneeded
|
|
826
|
+
and has been removed (see issue #230 on GitHub). 3110e3f624
|
|
827
|
+
|
|
828
|
+
PDCursesMod 4.3.2 - 2022 February 06
|
|
829
|
+
====================================
|
|
830
|
+
|
|
831
|
+
Minor new features
|
|
832
|
+
------------------
|
|
833
|
+
|
|
834
|
+
- In 32-bit chtype, non-wide-character builds, you get 4096 color
|
|
835
|
+
pairs and all twelve attribute bits that you would get with any
|
|
836
|
+
64-bit chtype build. d498305c35
|
|
837
|
+
|
|
838
|
+
- Color pair management for find_pair(), alloc_pair(), free_pair()
|
|
839
|
+
sped up considerably. 4d41c85101 864f02523d7
|
|
840
|
+
|
|
841
|
+
- 'testcurs' modified to show A_DIM and to show supergradients when
|
|
842
|
+
possible. dfb2387ff8
|
|
843
|
+
|
|
844
|
+
- Almost all ncurses demos are now built, and this also now applies
|
|
845
|
+
to X11. d742c1c708 e11eb4ed11
|
|
846
|
+
|
|
847
|
+
- Default framebuffer font now includes all WCS/WACS glyphs. 88fbc83b29
|
|
848
|
+
41ab7af534
|
|
849
|
+
|
|
850
|
+
- X11, VT, and framebuffer ports all compile with full warnings and
|
|
851
|
+
-Werror. eabeb4cb99 fa98024a54 3c77a5b569
|
|
852
|
+
|
|
853
|
+
- New 'widetest' demo exercises getcchar() and setcchar(), neither of
|
|
854
|
+
which actually got tested at all in other demos. This was actually
|
|
855
|
+
added in 4.3.1, though it wasn't built by default in most ports.
|
|
856
|
+
0a815ea432 9dbd63846b a75727c5b2 4cd9338b56
|
|
857
|
+
|
|
858
|
+
- Automated builds on Windows now include the VT platform (commits
|
|
859
|
+
ceeb2de9e5, 6c3791f447). But VT codes are indifferently supported
|
|
860
|
+
by Microsoft; use of it is deprecated, with WinCon or WinGUI being
|
|
861
|
+
suggested instead (commit d6e517eb36).
|
|
862
|
+
|
|
863
|
+
- The 'mangling' of initscr() (see curses.h) that was done to ensure that
|
|
864
|
+
library version errors would be caught at link time is now done to
|
|
865
|
+
'endwin()' instead. We can really do either, but it turns out that
|
|
866
|
+
some build processes rely on initscr() being unmangled. 1e19a2eb96
|
|
867
|
+
|
|
868
|
+
- PDC_set_function_key( ) is not really platform dependent. This eliminated
|
|
869
|
+
some redundant code and enabled Ctrl-C to be returned on WinGUI and WinCon.
|
|
870
|
+
Added a corresponding PDC_get_function_key( ). 95b0843f69
|
|
871
|
+
|
|
872
|
+
Bug fixes
|
|
873
|
+
---------
|
|
874
|
+
|
|
875
|
+
- VT and framebuffer ports returned 10 for Enter and Ctrl-M,
|
|
876
|
+
instead of 13, and ignored ^C and ^Z. Fixed by Mark Hessling (issue #225
|
|
877
|
+
and pull request #227). 0dace8c90e ab0da09435
|
|
878
|
+
|
|
879
|
+
- WinCon port could mangle attributes for non-ANSI characters. It
|
|
880
|
+
still can (unavoidably so), but the damage no longer extends to
|
|
881
|
+
adjacent ANSI characters. Partly from a fix made by William
|
|
882
|
+
McBrine to PDCurses. 6553e40a37
|
|
883
|
+
|
|
884
|
+
- Removed completely meaningless PDC_MOUSE_POSITION and MOUSE_POS_REPORTS
|
|
885
|
+
macros. See issue wmcbrine/PDCurses#129. b4e7429976
|
|
886
|
+
|
|
887
|
+
- The terminfo dummy functions were not exported in shared library/DLL
|
|
888
|
+
builds. Fix by Simon Sobisch. e8723349de 24ffa99b03
|
|
889
|
+
|
|
890
|
+
- DOS alternative character set (ACS) was improperly displayed. 5db85b1157
|
|
891
|
+
|
|
892
|
+
PDCursesMod 4.3.1 - 2021 November 28
|
|
893
|
+
====================================
|
|
894
|
+
|
|
895
|
+
Major new features
|
|
896
|
+
------------------
|
|
897
|
+
|
|
898
|
+
- Added a Linux framebuffer port. dd5b99ce81 and many others.
|
|
899
|
+
|
|
900
|
+
Minor new features
|
|
901
|
+
------------------
|
|
902
|
+
|
|
903
|
+
- Added the ncurses extension WACS_T_* (thick-line box character)
|
|
904
|
+
alternate character set defines. 5cefe5fa00
|
|
905
|
+
|
|
906
|
+
- Added four ncurses demos. 948f4cf41d
|
|
907
|
+
|
|
908
|
+
- Eliminated CHTYPE_LONG and CHTYPE_64. Neither is really needed
|
|
909
|
+
anymore; we just have CHTYPE_32. e275cadd78 91b0b0dd5d
|
|
910
|
+
|
|
911
|
+
- It should now be difficult, if not impossible, to link code for
|
|
912
|
+
one PDCursesMod binary API to code for another. 7e06e8c264
|
|
913
|
+
|
|
914
|
+
- Palette changes are redrawn immediately. That was already true for
|
|
915
|
+
DOS and 8-bit framebuffer ports, where the palette has a hardware
|
|
916
|
+
meaning; it's now true in X11, VT, WinGUI, etc. e73cae9b2c
|
|
917
|
+
|
|
918
|
+
- mmask_t can now be 64 bits (and by default, it is). This enables
|
|
919
|
+
some unsnarling of mouse mask #defines and gets rid of the collision
|
|
920
|
+
of triple-clicks with mouse move events, and provides bits for
|
|
921
|
+
future use. 908f1b3d32
|
|
922
|
+
|
|
923
|
+
Bug fixes
|
|
924
|
+
---------
|
|
925
|
+
|
|
926
|
+
- Pads were incorrectly refreshed (issue wmcbrine/PDCurses#124).
|
|
927
|
+
41da0b2fb8 9de6c83cd9
|
|
928
|
+
|
|
929
|
+
- Odd input issue in WinCon (and presumably WinGUI); see issue
|
|
930
|
+
wmcbrine/PDCurses#126. This may be revisited. 64d727571e
|
|
931
|
+
|
|
932
|
+
- Background was improperly refreshed in pads. See wmcbrine/PDCurses#122.
|
|
933
|
+
b31f19f477
|
|
934
|
+
|
|
935
|
+
- SDL2 window could be shown improperly initialized at startup. 9d30ffa6db
|
|
936
|
+
|
|
937
|
+
- Ctrl-C stops the program in X11 and SDLn if noraw() has been called. The
|
|
938
|
+
framebuffer, VT, and WinGUI ports already did this. 210d49f48a
|
|
939
|
+
|
|
940
|
+
- Surrogate pairs and combining characters are now handled correctly in the
|
|
941
|
+
setcchar() and getcchar() functions. 3ef0592cfe 422bb2152e
|
|
942
|
+
|
|
943
|
+
- X11 could block on getch() if nodelay() and PDC_set_blink() were both set
|
|
944
|
+
to TRUE. Fixes issue #216. e20301ae19
|
|
945
|
+
|
|
946
|
+
- Fixed assert errors in SDL2 at startup. See issue #215. 5ee7cc0722
|
|
947
|
+
|
|
948
|
+
PDCursesMod 4.3 - 2021 August 25
|
|
949
|
+
========================================
|
|
950
|
+
|
|
951
|
+
Major new features
|
|
952
|
+
------------------
|
|
953
|
+
|
|
954
|
+
- SDLs and X11 ports now support full colors, a la WinGUI and VT.
|
|
955
|
+
a266f923ee, b63b36f9b8, fee4af28c8, 8606b96111
|
|
956
|
+
|
|
957
|
+
Minor new features
|
|
958
|
+
------------------
|
|
959
|
+
|
|
960
|
+
- ncurses tests build correctly again. Moved to ncurses-6.2 tests,
|
|
961
|
+
and they can now be built on VT, WinCon, and WinGUI (they already
|
|
962
|
+
worked with X11 and SDLn). f8dd18c0f2 4a71b26dd1 c8b67969d6
|
|
963
|
+
edd97f38fd 68f1f1c299
|
|
964
|
+
|
|
965
|
+
- Added ncurses extension functions find_pair(), alloc_pair(), free_pair()
|
|
966
|
+
(see commit 19c14525e2) and reset_color_pairs() (534f24f547).
|
|
967
|
+
|
|
968
|
+
- To test the above ncurses extensions, added support to build
|
|
969
|
+
'demo_new_pair' from the ncurses tests (commit d8951fadc9) and
|
|
970
|
+
a new PDCursesMod-specific 'init_col' demo (commit 7b4d38a0ee).
|
|
971
|
+
The latter also tests out handling of default colors and the
|
|
972
|
+
ability to preserve the screen background... which appears to
|
|
973
|
+
only work in the VT flavor, and imperfectly there.
|
|
974
|
+
|
|
975
|
+
- SDLs now have strikeout and overlined text. 91b280f442 So does X11
|
|
976
|
+
5e5cd29617
|
|
977
|
+
|
|
978
|
+
- SDLs now recognize some 'extended' media keys. 5e10ef17fc
|
|
979
|
+
|
|
980
|
+
- SDLs and VT can be compiled as shared libraries and installed/uninstalled.
|
|
981
|
+
b78cd8a33f bb8d408675 d0309c2963
|
|
982
|
+
|
|
983
|
+
- VT has strikeout text in xterm, some (not many) others.
|
|
984
|
+
05af0c6810
|
|
985
|
+
|
|
986
|
+
- Removed unnecessary 'extended' key definitions. b9fafe60f1
|
|
987
|
+
|
|
988
|
+
- Code compiles with -Wextra -pedantic on many flavors without warnings.
|
|
989
|
+
674512453a, 6ad85268c5, 2648cdf5cd, others.
|
|
990
|
+
|
|
991
|
+
- Some tests done using GitHub's CI. 3cb1b5f1bf, several following
|
|
992
|
+
commits.
|
|
993
|
+
|
|
994
|
+
- New PDC_set_box_type( ) function to allow boxes/lines to be drawn using
|
|
995
|
+
the doubled-line characters. Modified 'test_pan.c' to demonstrate the
|
|
996
|
+
new function. ab7bad3981 dd981b0e78
|
|
997
|
+
|
|
998
|
+
- WinGUI, WinCon beep() is now in a separate thread, so we don't
|
|
999
|
+
hang the program while the beeping takes place. a6212d94d2
|
|
1000
|
+
|
|
1001
|
+
- WinCon can be compiled for 32-bit chtypes.
|
|
1002
|
+
|
|
1003
|
+
- Added a PDC_set_default_colors( ) function. Some platforms expect
|
|
1004
|
+
particular background/foreground colors by default. This lets you set
|
|
1005
|
+
those colors. (Note that this should have been, and was made, an
|
|
1006
|
+
internal function; programs should use 'assume_default_colors()'.)
|
|
1007
|
+
b642c91279
|
|
1008
|
+
|
|
1009
|
+
- In Windows, one can use Ctrl-C/Ctrl-V to copy/paste, instead of
|
|
1010
|
+
Ctrl-Shift-C/Ctrl-Shift-V. 9f487d4fea
|
|
1011
|
+
|
|
1012
|
+
- Added assert()s on many NULL parameters. Calling with such parameters
|
|
1013
|
+
is permitted, but usually indicates bugs that should result in an assertion
|
|
1014
|
+
when in debugging mode. 96f4984f9f
|
|
1015
|
+
|
|
1016
|
+
- In DOSVGA, as in X11, WinGUI, and the SDLs, you can specify an
|
|
1017
|
+
initial screen size using resize_screen() before actually starting PDCurses.
|
|
1018
|
+
0623c44ff0
|
|
1019
|
+
|
|
1020
|
+
- _tracef(), trace(), curses_trace() added for ncurses compatibility. This
|
|
1021
|
+
doesn't (as yet) actually add any capabilities; it just lets you access
|
|
1022
|
+
existing capabilities in the same way you would if using ncurses.
|
|
1023
|
+
|
|
1024
|
+
Bug fixes
|
|
1025
|
+
---------
|
|
1026
|
+
|
|
1027
|
+
- WinCon and WinGUI key tables didn't go far enough and could crash if some
|
|
1028
|
+
unusual key codes were received. See wmcbrine/PDCurses issue #118 (this
|
|
1029
|
+
is mostly a copy of wmcbrine's fix as suggested by zingchen). fe124295be
|
|
1030
|
+
59aa2afce9
|
|
1031
|
+
|
|
1032
|
+
- SDL2 display did not update after restoring from iconified form.
|
|
1033
|
+
2bb4284597
|
|
1034
|
+
|
|
1035
|
+
- Both SDLs crashed if a background image was shown, due to an out-of-bounds
|
|
1036
|
+
array access. e19ea211fc fbf4ea1fec
|
|
1037
|
+
|
|
1038
|
+
- DOS PDC_napms() failed for times greater than 18 minutes (would round
|
|
1039
|
+
time down to nearest multiple of 18 min). acc1fa72fa
|
|
1040
|
+
|
|
1041
|
+
- Buffer could overrun on extremely large (more than 512 column) displays
|
|
1042
|
+
in X11 (91b280f442), WinCon (51327cad4d)
|
|
1043
|
+
|
|
1044
|
+
- Certain extended keys could crash WinCon, WinGUI. d747d35ed8
|
|
1045
|
+
|
|
1046
|
+
- Plugged some memory leaks in X11. Much more to be done. cb4344a163
|
|
1047
|
+
|
|
1048
|
+
- In VT flavor, the mix of printfs() and (unbuffered) write() calls
|
|
1049
|
+
wasn't interrupt-safe, and led to some corruption in the output. This
|
|
1050
|
+
is now fixed. 365b6cce79
|
|
1051
|
+
|
|
1052
|
+
- Some cursor shapes in VT were mixed up. 1f1bbe7d8a
|
|
1053
|
+
|
|
1054
|
+
- Fixes for SDL2 font colors when using non-mono bitmaps. e2b2874e76
|
|
1055
|
+
d9306c09db
|
|
1056
|
+
|
|
1057
|
+
- Computation of the font width in X11 was wrong, leading to misaligned
|
|
1058
|
+
text. This also mangled the code that checks that the bold and italic
|
|
1059
|
+
fonts are the same size as the 'normal' font. 54d721cafe
|
|
1060
|
+
|
|
1061
|
+
- X11 mouse handling ignored mouse moves, sometimes suppressed Ctrl/Alt/
|
|
1062
|
+
Shift modifiers, and the logic was confusing; other bugs may have
|
|
1063
|
+
lurked in there. cfd7f64b95
|
|
1064
|
+
|
|
1065
|
+
- Input in WinCon, when compiled in narrow (8-bit, non-PDC_WIDE) mode,
|
|
1066
|
+
could be mangled. Shamelessly copied wmcbrine's fix from the commit
|
|
1067
|
+
in PDCurses e28e705d17438ffd (q.v.). 83dcf79672
|
|
1068
|
+
|
|
1069
|
+
PDCursesMod 4.2 - 2020 Oct 03
|
|
1070
|
+
=============================
|
|
1071
|
+
|
|
1072
|
+
Major new features
|
|
1073
|
+
------------------
|
|
1074
|
+
|
|
1075
|
+
- Pulled in almost all of William McBrine's 3.8 and 3.9 changes.
|
|
1076
|
+
These include the single-process X11 port (much simpler and
|
|
1077
|
+
less prone to bugs), common copy/paste, some extended colors,
|
|
1078
|
+
and much other good work from wmcbrine over the last few years.
|
|
1079
|
+
|
|
1080
|
+
- See history entries for versions 3.8 and 3.9 below for details.
|
|
1081
|
+
|
|
1082
|
+
- Added chasonr's DOSVGA port and Federico G. Benavento and Jens
|
|
1083
|
+
Staal's Plan 9 port.
|
|
1084
|
+
|
|
1085
|
+
- Automated builds again work and have been extended to new platforms.
|
|
1086
|
+
|
|
1087
|
+
- Added ncurses-style init_extended_color(), init_extended_pair(),
|
|
1088
|
+
extended_color_content(), extended_pair_content() functions.
|
|
1089
|
+
VT and WinGUI versions can now access 2^20 = over a million color
|
|
1090
|
+
pairs and 2^24+256 = 16777472 colors. This should be extended
|
|
1091
|
+
to SDLx and X11, and possibly WinCon.
|
|
1092
|
+
|
|
1093
|
+
- As a result of all this, A_RGB is now completely gone (and not
|
|
1094
|
+
really needed anyway).
|
|
1095
|
+
|
|
1096
|
+
- Attempts to mis-link a wide-character library to code compiled for
|
|
1097
|
+
8-bit characters, or a mismatch of a 32-bit chtype library to
|
|
1098
|
+
64-bit chtype code, etc., will usually result in an undefined
|
|
1099
|
+
variant of initscr. (Previously, everything would compile, then
|
|
1100
|
+
crash or produce odd output when the program was run.) See GitHub
|
|
1101
|
+
issue #133.
|
|
1102
|
+
|
|
1103
|
+
- Added 'picsview' demo, something of a ripoff/homage to Thomas
|
|
1104
|
+
E. Dickey's 'picsmap' demo for ncurses. It has a similar purpose:
|
|
1105
|
+
demonstrating the functions in the above paragraph and the new
|
|
1106
|
+
ability to access lots and lots of colors.
|
|
1107
|
+
|
|
1108
|
+
- HISTORY.md brought up to date for 4.2 (which meant bringing in
|
|
1109
|
+
changes for 3.8 and 3.9). Also, 4.1.0 was almost completely
|
|
1110
|
+
undocumented.
|
|
1111
|
+
|
|
1112
|
+
Minor new features
|
|
1113
|
+
------------------
|
|
1114
|
+
|
|
1115
|
+
- Name changed from 'PDCurses' to 'PDCursesMod', in hopes of
|
|
1116
|
+
simultaneously making its origin clear and also making it clear
|
|
1117
|
+
that it's somewhat modified from the parent project.
|
|
1118
|
+
|
|
1119
|
+
- Makefiles are better organized and more 'standard'. 'make' builds
|
|
1120
|
+
the PDCurses library, 'make demos' all demos. The .mif files are
|
|
1121
|
+
all now in the 'common' directory.
|
|
1122
|
+
|
|
1123
|
+
- VT port is much faster, mostly thanks to not writing data to
|
|
1124
|
+
stdout with no buffering and with printf(). It also will use
|
|
1125
|
+
SGR mouse commands if available, which makes things more bullet
|
|
1126
|
+
proof in cases of confused mouse input, and means windows can
|
|
1127
|
+
be more than 224 columns wide without crashes happening when
|
|
1128
|
+
the mouse reaches that column.
|
|
1129
|
+
|
|
1130
|
+
- Added ncurses extension functions ceiling_panel() and
|
|
1131
|
+
ground_panel().
|
|
1132
|
+
|
|
1133
|
+
- 'speed' demo tests out speed of the code.
|
|
1134
|
+
|
|
1135
|
+
- 'test_pan' allows one to move panels around the screen and adjust
|
|
1136
|
+
the panel depth.
|
|
1137
|
+
|
|
1138
|
+
- Added ability to change SDL1/SDL2 font rendering mode by setting
|
|
1139
|
+
pdc_sdl_render_mode
|
|
1140
|
+
|
|
1141
|
+
Bug fixes and such
|
|
1142
|
+
------------------
|
|
1143
|
+
|
|
1144
|
+
- Valgrind found three small memory leaks in the VT port (which
|
|
1145
|
+
would apply to all other ports as well). There are still more
|
|
1146
|
+
leaks in other ports, which should be addressed.
|
|
1147
|
+
|
|
1148
|
+
- Double-clicking in WinGUI got you a click message followed by
|
|
1149
|
+
a double-click. This does conform to 'standard' Windows practice,
|
|
1150
|
+
but was both stupid and did _not_ conform with the way VT did
|
|
1151
|
+
it, nor the way I'd want it to be on any port. To do : enable
|
|
1152
|
+
double and triple clicks on all ports, not just VT and WinGUI.
|
|
1153
|
+
|
|
1154
|
+
- Handling of default background/foreground in VT was just plain
|
|
1155
|
+
wrong. Now fixed.
|
|
1156
|
+
|
|
1157
|
+
- Mouse wheel events now report the correct mouse position, instead
|
|
1158
|
+
of always reporting (-1, -1).
|
|
1159
|
+
|
|
1160
|
+
- Fixed spurious resize events at startup and for window moves on
|
|
1161
|
+
the X11 platform.
|
|
1162
|
+
|
|
1163
|
+
- raw() and noraw() now work as specified on WinGUI and VT. (They
|
|
1164
|
+
still don't work on X11, SDLn, or WinCon.)
|
|
1165
|
+
|
|
1166
|
+
- User shrinking of the screen to a degree causing a window to be
|
|
1167
|
+
partly off-screen caused a crash. (In PDCurses, windows are
|
|
1168
|
+
theoretically always on-screen; we were not properly prepared
|
|
1169
|
+
for the possibility that the screen might shrink and put windows
|
|
1170
|
+
partly or totally off-screen.) We no longer crash, and the part
|
|
1171
|
+
of the window that is still on-screen is refreshed correctly.
|
|
1172
|
+
|
|
1173
|
+
See the git log for more details.
|
|
1174
|
+
|
|
1175
|
+
PDCurses 4.1.0 - 2019-05-10
|
|
1176
|
+
=========================
|
|
1177
|
+
|
|
1178
|
+
New features
|
|
1179
|
+
------------
|
|
1180
|
+
|
|
1181
|
+
- VT backend improved to support different cursors, mouse move events,
|
|
1182
|
+
and Ctrl/Alt/Shift flags.
|
|
1183
|
+
|
|
1184
|
+
- Fixes to allow WinCon builds on platforms lacking INFOEX struct.
|
|
1185
|
+
|
|
1186
|
+
- Improved DOS napms to convert milliseconds to BIOS ticks accurately.
|
|
1187
|
+
|
|
1188
|
+
- Followed wmcbrine's 'rebranding' of Public Domain Curses to PDCurses.
|
|
1189
|
+
|
|
1190
|
+
See the git log for more details.
|
|
1191
|
+
|
|
1192
|
+
PDCurses 4.0.4 - 2019-01-20
|
|
1193
|
+
=========================
|
|
1194
|
+
|
|
1195
|
+
Major new feature:
|
|
1196
|
+
-------------------
|
|
1197
|
+
|
|
1198
|
+
- New VT backend. Works within an xterm or xterm-based terminal and some
|
|
1199
|
+
other terminals. Mostly works in the Linux console, and on Win10
|
|
1200
|
+
directly and on Win9x/DOS if ANSI.SYS (or NANSI or NNANSI .SYS or .COM)
|
|
1201
|
+
are installed.
|
|
1202
|
+
|
|
1203
|
+
Minor new features:
|
|
1204
|
+
-------------------
|
|
1205
|
+
|
|
1206
|
+
- SDL2 variant: dimmed, bold, blinking, and RGB text are handled, as is
|
|
1207
|
+
window resizing.
|
|
1208
|
+
|
|
1209
|
+
- DOS variant: cross-compilation from GNU/Linux works with both DJGPP and
|
|
1210
|
+
Watcom C/C++; and, 16-bit and 32-bit Watcom makefiles have been combined
|
|
1211
|
+
into one
|
|
1212
|
+
|
|
1213
|
+
- Many modifications (and some bug fixes) taken from William McBrine's
|
|
1214
|
+
branch. An effort has been made to narrow the gap between the forks
|
|
1215
|
+
where possible. But both forks are moving targets with different
|
|
1216
|
+
design choices and priorities.
|
|
1217
|
+
|
|
1218
|
+
- Demos improved to show version info
|
|
1219
|
+
|
|
1220
|
+
Bug fixes
|
|
1221
|
+
-------------------
|
|
1222
|
+
|
|
1223
|
+
- compilation warnings/errors with some compilers in some variants #53, #57, #58, #65, ...
|
|
1224
|
+
|
|
1225
|
+
- newtest sample was broken in all wide variants #60
|
|
1226
|
+
|
|
1227
|
+
- the paste button printed debug output #62
|
|
1228
|
+
|
|
1229
|
+
- some corner cases (midnight crossing, atomicity of tick count reads) in
|
|
1230
|
+
DOS version of napms() were not handled well
|
|
1231
|
+
|
|
1232
|
+
See the git log for more details.
|
|
1233
|
+
------------------------------------------------------------------------
|
|
1234
|
+
|
|
1235
|
+
PDCurses 4.0.2 - 2017-09-12
|
|
1236
|
+
=========================
|
|
1237
|
+
|
|
1238
|
+
Major new features:
|
|
1239
|
+
-------------------
|
|
1240
|
+
|
|
1241
|
+
- New Win32a(Windows GUI) and SDL2 backends. SDL1 is still supported,
|
|
1242
|
+
but may eventually go away.
|
|
1243
|
+
|
|
1244
|
+
- Bold, italic, underlined, overlined, dimmed, 'strikeout', blinking
|
|
1245
|
+
text, 256 colors and color pairs, and full RGB colors. These are
|
|
1246
|
+
all supported in Win32a and mostly supported in X11, SDL1 and SDL2.
|
|
1247
|
+
|
|
1248
|
+
- In Win32a, one can choose a font, and both programmatic and user
|
|
1249
|
+
resizing are supported. (Recompiling is necessary to change the
|
|
1250
|
+
font in X11.)
|
|
1251
|
+
|
|
1252
|
+
- (Win32a only) Support of SMP Unicode (points beyond 64K) and
|
|
1253
|
+
combining characters. This may be extended to X11 and SDL2 eventually.
|
|
1254
|
+
|
|
1255
|
+
- Demos corrected to be buildable and testable with ncurses.
|
|
1256
|
+
|
|
1257
|
+
Minor new features:
|
|
1258
|
+
-------------------
|
|
1259
|
+
|
|
1260
|
+
(Note that not all of these are available on all backends)
|
|
1261
|
+
|
|
1262
|
+
- Support for up to nine mouse buttons and wheel and tilt-wheel mice,
|
|
1263
|
+
and double and triple mouse clicks.
|
|
1264
|
+
|
|
1265
|
+
- (X11, Win32a, Win32) Extended range of keys that are recognized.
|
|
1266
|
+
This now includes most of the "oddball" keys such as 'browser back
|
|
1267
|
+
and 'favorites' found on some keyboards.
|
|
1268
|
+
|
|
1269
|
+
- Blinking cursors in Win32a and X11 of various shapes (this could be
|
|
1270
|
+
extended to SDLx eventually).
|
|
1271
|
+
|
|
1272
|
+
- In X11 and Win32a, one can call resize_term( ) before initscr( ) to
|
|
1273
|
+
set the initial window size.
|
|
1274
|
+
|
|
1275
|
+
- Soft Label Keys (SLKs) are considerably more flexible, with the
|
|
1276
|
+
ability to set arbitrary numbers of keys and groupings. See slk.c
|
|
1277
|
+
for details. This applies to all backends.
|
|
1278
|
+
|
|
1279
|
+
- Many changes to testcurs to test all these new features, and newtest
|
|
1280
|
+
added to test still more features.
|
|
1281
|
+
|
|
1282
|
+
- Option to get detailed version information of the used PDCurses
|
|
1283
|
+
library at run time with new exported PDC_version as PDC_version_info
|
|
1284
|
+
structure.
|
|
1285
|
+
|
|
1286
|
+
- ACS_x and WACS_x #defines extended to include a lot of "alternative
|
|
1287
|
+
characters" that overlap in Unicode and CP-437: double-line box chars,
|
|
1288
|
+
card suits, vulgar fractions, etc. This applies to all backends. See
|
|
1289
|
+
acs_defs.h for the full list.
|
|
1290
|
+
|
|
1291
|
+
- Cleaned up some makefiles for Win32 and Win32a. On both platforms,
|
|
1292
|
+
vcwin32.mak can now be used with the Intel(R) compiler, and
|
|
1293
|
+
mingwin32.mak can be used to cross-compile from Linux, or in
|
|
1294
|
+
command.com under Windows, or with Cygwin/MSYS. Also added a
|
|
1295
|
+
makefile for Digital Mars for the DOS version.
|
|
1296
|
+
|
|
1297
|
+
- The "def" files that were needed before to create PDCurses on
|
|
1298
|
+
Windows are removed as they are no longer necessary.
|
|
1299
|
+
|
|
1300
|
+
See the git log for more details.
|
|
1301
|
+
|
|
1302
|
+
PDCurses 3.9 - 2019-09-04
|
|
1303
|
+
=========================
|
|
1304
|
+
|
|
1305
|
+
IMPORTANT NOTE: This is actually wmcbrine's 3.9 version. Its
|
|
1306
|
+
changes did not actually make it into this fork until 4.1 and 4.2.
|
|
1307
|
+
|
|
1308
|
+
768 colors, single-process X11, copy-and-paste for all, and more.
|
|
1309
|
+
|
|
1310
|
+
New features
|
|
1311
|
+
------------
|
|
1312
|
+
|
|
1313
|
+
- Single-process, single-thread version of the X11 port. Much, much
|
|
1314
|
+
faster than the two-process version. Needs more testing. This version
|
|
1315
|
+
omits translations.
|
|
1316
|
+
|
|
1317
|
+
- A common copy-and-paste system for all platforms, based on the
|
|
1318
|
+
PDC_*clipboard() functions. (This is the first time copy-and-paste is
|
|
1319
|
+
available for the SDL ports, and it replaces the old X11-specific
|
|
1320
|
+
C&P.) Press and hold button 1 while selecting; paste with button 2.
|
|
1321
|
+
Add Shift if mouse events are activated in curses. You can also paste
|
|
1322
|
+
via Shift-Ctrl-V, and copy with Shift-Ctrl-C (although selecting
|
|
1323
|
+
already sets the buffer). Note that paste is implemented via
|
|
1324
|
+
ungetch(), and is currently limited to 256 characters at a time. (You
|
|
1325
|
+
can get more via PDC_getclipboard().) With some ports (e.g. Wincon),
|
|
1326
|
+
the existing terminal C&P mechanism may override PDCurses'. DOS and
|
|
1327
|
+
SDL1 can only C&P within the same app.
|
|
1328
|
+
|
|
1329
|
+
- A new maximum of 768 colors, for Wincon, SDL and X11. COLOR_PAIRS is
|
|
1330
|
+
still limited to 256. The idea is that each pair can have a unique
|
|
1331
|
+
foreground and background, without having to redefine any of the first
|
|
1332
|
+
256 (predefined) colors. Colors 256-767 have no initial definitions,
|
|
1333
|
+
and are intended to be set via init_color(). An example has been added
|
|
1334
|
+
to testcurs (loosely based on part of newtest, by Bill Gray).
|
|
1335
|
+
|
|
1336
|
+
- Wincon now allows redefinition of all 768 colors, and allows it even
|
|
1337
|
+
under ConEmu.
|
|
1338
|
+
|
|
1339
|
+
- True italics for ConEmu. (It seems it should also support true bold,
|
|
1340
|
+
but I couldn't make that work.)
|
|
1341
|
+
|
|
1342
|
+
- Added new functions from ncurses and/or NetBSD: has_mouse(),
|
|
1343
|
+
is_keypad(), is_leaveok(), is_pad(), set_tabsize(), touchoverlap(),
|
|
1344
|
+
underscore(), underend(), wunderscore(), and wunderend(). See the man
|
|
1345
|
+
pages for descriptions. Partly due to Karthik Kumar Viswanathan, and
|
|
1346
|
+
suggestions of Simon Sobisch.
|
|
1347
|
+
|
|
1348
|
+
Bug fixes and such
|
|
1349
|
+
------------------
|
|
1350
|
+
|
|
1351
|
+
- Check for standard C++ (>= 98), where native bool should exist, and use
|
|
1352
|
+
that; otherwise (pre-/non-standard C++) fall back to the old behavior.
|
|
1353
|
+
Satisfies clang, hopefully doesn't mess anything else up.
|
|
1354
|
+
|
|
1355
|
+
- Recent versions of clang throw an error over "-install_name".
|
|
1356
|
+
|
|
1357
|
+
- Most curses functions assumed a valid SP (i.e. that initscr() had
|
|
1358
|
+
already been called). Now, instead, they return ERR or other
|
|
1359
|
+
appropriate values. Suggestion of S.S.
|
|
1360
|
+
|
|
1361
|
+
- Deprecated PDC_save_key_modifiers() -- there's no benefit to NOT
|
|
1362
|
+
saving them.
|
|
1363
|
+
|
|
1364
|
+
- Hold back screen updates due to palette changes until paused; always
|
|
1365
|
+
do this update now (previously only in X11 and SDL, seems necessary in
|
|
1366
|
+
Windows 10 1903).
|
|
1367
|
+
|
|
1368
|
+
- SDL2 windows were freezing on moving to another screen (reported by
|
|
1369
|
+
Mark Hessling). Still issues with moving between screens of different
|
|
1370
|
+
scaling.
|
|
1371
|
+
|
|
1372
|
+
- Find the X libraries in some additional locations. After M.H.
|
|
1373
|
+
|
|
1374
|
+
- Converted default X11 icons to XPM, fixing their non-display in Ubuntu.
|
|
1375
|
+
|
|
1376
|
+
- Made XIM standard, removed "classic" X11 compose system.
|
|
1377
|
+
|
|
1378
|
+
- Made wide-character build the default for X11 (--disable-widec for
|
|
1379
|
+
narrow).
|
|
1380
|
+
|
|
1381
|
+
- Smoother resizing in X11, when not in scrollbar mode.
|
|
1382
|
+
|
|
1383
|
+
- Dropped X11 options "borderWidth" (broken since at least 2.7) and
|
|
1384
|
+
"cursorColor" (now set automatically for contrast).
|
|
1385
|
+
|
|
1386
|
+
- Correctly restore Insert mode and QuickEdit mode in Wincon's
|
|
1387
|
+
PDC_reset_shell_mode(). Patch by "vyv03354".
|
|
1388
|
+
|
|
1389
|
+
- Add a WINDRES variable to wincon/Makefile for the sake of cross-
|
|
1390
|
+
compilers. Patch by Marc-Andre Lureau.
|
|
1391
|
+
|
|
1392
|
+
- Suppress cursor movement during color tests in testcurs.
|
|
1393
|
+
|
|
1394
|
+
- Added UTF-8-demo.txt for tuidemo to browse (by default, only in forced
|
|
1395
|
+
UTF-8 mode). File by Markus Kuhn.
|
|
1396
|
+
|
|
1397
|
+
- Moved the doc files from "man" to "docs" -- the docs/man thing was too
|
|
1398
|
+
confusing. Streamlined the web page into two files.
|
|
1399
|
+
|
|
1400
|
+
- Rewrote the "Portability" sections of the man pages to reflect current
|
|
1401
|
+
ncurses and NetBSD. The old charts weren't very accurate.
|
|
1402
|
+
|
|
1403
|
+
- Document resolution of timeout() and napms(). Suggested by S.S.
|
|
1404
|
+
|
|
1405
|
+
- Rewrote manext (again) in Awk.
|
|
1406
|
+
|
|
1407
|
+
- Changed most dates to ISO format.
|
|
1408
|
+
|
|
1409
|
+
See the git log (for both PDCursesMod and for wmcbrine's PDCurses, the
|
|
1410
|
+
original source of these changes) for more details.
|
|
1411
|
+
|
|
1412
|
+
------------------------------------------------------------------------
|
|
1413
|
+
|
|
1414
|
+
PDCurses 3.8 - 2019-02-02
|
|
1415
|
+
=========================
|
|
1416
|
+
|
|
1417
|
+
IMPORTANT NOTE: This is actually wmcbrine's 3.8 version. Its
|
|
1418
|
+
changes did not actually make it into this fork until 4.1.
|
|
1419
|
+
|
|
1420
|
+
It's that time again.
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
New features
|
|
1424
|
+
------------
|
|
1425
|
+
|
|
1426
|
+
- PDC_VERSION structure and PDC_get_version() function, to provide run-
|
|
1427
|
+
time information on version and compile options, in case they don't
|
|
1428
|
+
match the header; along with new compile-time defines PDC_VER_MAJOR,
|
|
1429
|
+
PDC_VER_MINOR and PDC_VERDOT. Suggested by Simon Sobisch, designed
|
|
1430
|
+
partly after Bill Gray and partly after SDL_VERSION.
|
|
1431
|
+
|
|
1432
|
+
- Extensive documentation revisions, now covering many previously
|
|
1433
|
+
undocumented functions.
|
|
1434
|
+
|
|
1435
|
+
- Allow building the DLL with MinGW for SDL. (This also changes the
|
|
1436
|
+
non-DLL library name from libpdcurses.a to pdcurses.a.)
|
|
1437
|
+
|
|
1438
|
+
- Consolidated Watcom makefiles for DOS, after Tee-Kiah Chia; added
|
|
1439
|
+
MODEL option to Makefile.bcc for consistency.
|
|
1440
|
+
|
|
1441
|
+
- Added another ncurses_test, "lrtest"; updated for ncurses 6.1.
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
Bug fixes and such
|
|
1445
|
+
------------------
|
|
1446
|
+
|
|
1447
|
+
- T.H.'s update rect clipper (a resize fix for SDL2) broke sdltest,
|
|
1448
|
+
because it didn't take the offsets into account for a non-owned
|
|
1449
|
+
window.
|
|
1450
|
+
|
|
1451
|
+
- The version number is now hardwired only in curses.h and configure.ac.
|
|
1452
|
+
|
|
1453
|
+
- Revised pdcurses.rc to correctly show all fields when checking the
|
|
1454
|
+
properties on a DLL; use it with MinGW as well as MSVC.
|
|
1455
|
+
|
|
1456
|
+
- Allow building both 32- and 64-bit SDL2 versions in MinGW without
|
|
1457
|
+
editing the Makefile, by using the proper dev package.
|
|
1458
|
+
|
|
1459
|
+
- Build SDL2 demos in "Windows" mode (i.e. no controlling terminal) with
|
|
1460
|
+
MSVC, as with MinGW.
|
|
1461
|
+
|
|
1462
|
+
- Build sdltest.exe with MSVC.
|
|
1463
|
+
|
|
1464
|
+
- Changed sample pathname in tuidemo to always use slashes -- the
|
|
1465
|
+
backslashes failed in, e.g., SDL under Linux or macOS. Patch by B.G.
|
|
1466
|
+
|
|
1467
|
+
- Warning fix for Borland OS/2.
|
|
1468
|
+
|
|
1469
|
+
- Minor file reorganization / renaming.
|
|
1470
|
+
|
|
1471
|
+
- mmask_t is now used in both the classic and ncurses mouse interfaces,
|
|
1472
|
+
and is defined in such a way as to keep it at 32 bits.
|
|
1473
|
+
|
|
1474
|
+
- Dropped map_button() and getbmap().
|
|
1475
|
+
|
|
1476
|
+
- Dropped the ability to build BBS-ready archives from the Makefiles.
|
|
1477
|
+
|
|
1478
|
+
- Made manext.py compatible with Python 3.x.
|
|
1479
|
+
|
|
1480
|
+
See the git log (for both PDCursesMod and for wmcbrine's PDCurses, the
|
|
1481
|
+
original source of these changes) for more details.
|
|
1482
|
+
|
|
1483
|
+
PDCurses 3.7 - 2018-12-31
|
|
1484
|
+
=========================
|
|
1485
|
+
|
|
1486
|
+
New features
|
|
1487
|
+
------------
|
|
1488
|
+
|
|
1489
|
+
- Avoid conflict with ncurses by having apps define PDC_NCMOUSE before
|
|
1490
|
+
including curses.h to invoke the ncurses-style mouse interface,
|
|
1491
|
+
instead of NCURSES_MOUSE_VERSION. (The old way will also still work.)
|
|
1492
|
+
After Simon Sobisch (see PR #33).
|
|
1493
|
+
|
|
1494
|
+
- In SDL (TTF mode), the box-drawing and block ACS characters are now
|
|
1495
|
+
rendered in a font-independent way, to ensure their correct alignment
|
|
1496
|
+
across cells. Underlining is now handled in a similar way.
|
|
1497
|
+
|
|
1498
|
+
- TTF fonts in SDL are now rendered in Blended mode instead of Solid.
|
|
1499
|
+
Partly after Joachim de Groot.
|
|
1500
|
+
|
|
1501
|
+
- New default fonts and font sizes for SDL/TTF.
|
|
1502
|
+
|
|
1503
|
+
- SDL2 now builds under MSVC. Partly due to Alexandru Afrasinei.
|
|
1504
|
+
|
|
1505
|
+
- Documentation re-org -- more Markdown internal links; moved to man/
|
|
1506
|
+
dir (the doc/ dir name was too similar to docs/, which is needed for
|
|
1507
|
+
GitHub Pages hosting); concatenated man page document now made
|
|
1508
|
+
permanent, under the name MANUAL.md; new man build utils; merged
|
|
1509
|
+
sdl.md and x11.md into their respective READMEs; changed some
|
|
1510
|
+
redundant and unclear comments.
|
|
1511
|
+
|
|
1512
|
+
- Directory re-org -- in addition to the above, created common/, to
|
|
1513
|
+
unclutter the root, and eliminate a few more redundant files from
|
|
1514
|
+
platform directories. (We already had "pdcurses", but that's for the
|
|
1515
|
+
portable core; "common" is for files that are more platform-specific,
|
|
1516
|
+
though shared by more than one platform.)
|
|
1517
|
+
|
|
1518
|
+
- Broke out the redundant ACS tables and moved them to common/.
|
|
1519
|
+
|
|
1520
|
+
- PDcurses' "bool" type is now based on stdbool.h, when available. There
|
|
1521
|
+
should be no conflicts when including stdbool.h either before or after
|
|
1522
|
+
curses.h.
|
|
1523
|
+
|
|
1524
|
+
- The demos are no longer built by default, since they add a lot of time
|
|
1525
|
+
to the build, and often aren't wanted. But you can still build them via
|
|
1526
|
+
"make demos" (tweak as needed).
|
|
1527
|
+
|
|
1528
|
+
- Makefile tweaks for cross-compiling by Simon Sobisch.
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
Bug fixes and such
|
|
1532
|
+
------------------
|
|
1533
|
+
|
|
1534
|
+
- Improved Windows console resizing, when reducing the vertical size.
|
|
1535
|
+
After Ulf Magnusson. (See GitHub issue #26.)
|
|
1536
|
+
|
|
1537
|
+
- Bring back ifdef'd CONSOLE_SCREEN_BUFFER_INFOEX, for the benefit of
|
|
1538
|
+
older compile environments. (Not automatic -- must specify INFOEX=N on
|
|
1539
|
+
the command line.) After Simon Sobisch.
|
|
1540
|
+
|
|
1541
|
+
- Replaced COMMON_LVB_* with numbers to appease some old compilers.
|
|
1542
|
+
After Simon Sobisch.
|
|
1543
|
+
|
|
1544
|
+
- KEY_RESIZE should be key_code = TRUE. Reported by Ulf Magnusson.
|
|
1545
|
+
|
|
1546
|
+
- SDL2 resize fixes to prevent crashes, by Tim Hentenarr.
|
|
1547
|
+
|
|
1548
|
+
- SDL2 fixes for handling of SDL_TEXTINPUT, keys with modifiers, and
|
|
1549
|
+
modifier keystrokes, by Tim Hentenarr.
|
|
1550
|
+
|
|
1551
|
+
- Fixed cursor rendering in SDL/TTF.
|
|
1552
|
+
|
|
1553
|
+
- SDL1 support is now dropped for Windows and macOS, and deprecated for
|
|
1554
|
+
Linux. Use SDL2. The SDL1 port is likely to be dropped in the future.
|
|
1555
|
+
|
|
1556
|
+
- The setsyx() function is now void, after ncurses, and simplified.
|
|
1557
|
+
|
|
1558
|
+
- Warning fixes by Patrick Georgi and Stefan Reinauer.
|
|
1559
|
+
|
|
1560
|
+
- X11 used SP->resized in a non-boolean way, so it's now a short.
|
|
1561
|
+
|
|
1562
|
+
- Under some conditions (see issue #47), the X11 port could "free" colors
|
|
1563
|
+
that it hadn't allocated. Reported by rin-kinokocan.
|
|
1564
|
+
|
|
1565
|
+
- New scroller for ozdemo -- no memory allocation, less copying -- to
|
|
1566
|
+
resolve issue #46.
|
|
1567
|
+
|
|
1568
|
+
- Various minor Makefile tweaks.
|
|
1569
|
+
|
|
1570
|
+
- Eliminated term.h and terminfo.c, and moved mvcur() to move.c. These
|
|
1571
|
+
stub functions, done on request (with others then requesting that I
|
|
1572
|
+
take them away -- can't win), were a misguided attempt to facilitate
|
|
1573
|
+
using PDCurses with certain non-C languages -- which, apparently, they
|
|
1574
|
+
didn't end up actually doing. They're also, regrettably, specified as
|
|
1575
|
+
part of the X/Open curses standard, even though they in effect
|
|
1576
|
+
describe an entirely different interface layer (one on which
|
|
1577
|
+
traditional curses, but not PDCurses, is built).
|
|
1578
|
+
|
|
1579
|
+
- Dropped support for short (16-bit) chtypes.
|
|
1580
|
+
|
|
1581
|
+
- Finally removed deprec.c, as it promised.
|
|
1582
|
+
|
|
1583
|
+
- Dropped the XOPEN, SYSVcurses and BSDcurses defines from curses.h, as
|
|
1584
|
+
well as NULL (which is defined in stdio.h, included). TRUE, FALSE, ERR
|
|
1585
|
+
and OK are now defined unconditionally.
|
|
1586
|
+
|
|
1587
|
+
- Moved pdcurses.org hosting to GitHub -- as a result, the site is now
|
|
1588
|
+
part of the repo, in the docs/ directory. (Also, it has SSL again.)
|
|
1589
|
+
|
|
1590
|
+
See the git log for more details.
|
|
1591
|
+
|
|
1592
|
+
------------------------------------------------------------------------
|
|
1593
|
+
|
|
1594
|
+
PDCurses 3.6 - 2018-02-14
|
|
1595
|
+
=========================
|
|
1596
|
+
|
|
1597
|
+
[Note : this is a copy of wmcbrine's update history for that version.
|
|
1598
|
+
The changes involved have, however, now been integrated into
|
|
1599
|
+
this fork.]
|
|
1600
|
+
|
|
1601
|
+
Tidying up some loose ends from 3.5, and trying to bring all platforms
|
|
1602
|
+
up to the same level, as much as possible.
|
|
1603
|
+
|
|
1604
|
+
New features
|
|
1605
|
+
------------
|
|
1606
|
+
|
|
1607
|
+
- 256 colors for the Windows console -- under Windows 10 or ConEmu,
|
|
1608
|
+
only. This version doesn't allow init_color() or color_content() for
|
|
1609
|
+
colors 16-255, just uses Windows' predefined palette (which matches
|
|
1610
|
+
xterm-256color, like the default colors in X11 and SDL).
|
|
1611
|
+
|
|
1612
|
+
- Real blinking for the Windows console (all), and for OS/2 -- done in
|
|
1613
|
+
software, like the Windows version -- replacing the erraticly working
|
|
1614
|
+
Vio-based version (which didn't work at all in my OS/2 4.5 VM). OS/2
|
|
1615
|
+
now always has 16 colors, and bright backgrounds can combine with
|
|
1616
|
+
blinking.
|
|
1617
|
+
|
|
1618
|
+
- In DOS, OS/2 and Windows, attribute behavior now more closely matches
|
|
1619
|
+
that of the more "advanced" ports (X11 and SDL) -- see the Attribute
|
|
1620
|
+
test in testcurs.
|
|
1621
|
+
|
|
1622
|
+
- All of the A_* and WA_* attributes from X/Open are now defined in
|
|
1623
|
+
curses.h, although some are no-ops, pending the availablity of more
|
|
1624
|
+
attribute bits. A_INVIS is now a no-op on all platforms, instead of
|
|
1625
|
+
overloading A_ITALIC, and so is A_PROTECT. A_LEFT and A_RIGHT are now
|
|
1626
|
+
synonyms for PDCurses' old *LINE attributes.
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
Bug fixes and such
|
|
1630
|
+
------------------
|
|
1631
|
+
|
|
1632
|
+
- For the X11 port, "make install" and the dynamic library build were
|
|
1633
|
+
broken, since the configure move. Fixes partly after Mark Hessling.
|
|
1634
|
+
|
|
1635
|
+
- Renamed "win32" to the more accurate/descriptive "wincon" (i.e.
|
|
1636
|
+
WINdows CONsole). Makefiles for all platforms renamed to remove the
|
|
1637
|
+
redundant platform names, and to allow better sorting.
|
|
1638
|
+
|
|
1639
|
+
- In SDL2, apps that didn't explicitly handle resizing locked up. Now,
|
|
1640
|
+
they can continue running, at their old size. (To Do: xmas is still a
|
|
1641
|
+
basket case.)
|
|
1642
|
+
|
|
1643
|
+
- Added "/MACHINE:$(PLATFORM)" to wincon/Makefile.vc -- Thomas Dickey
|
|
1644
|
+
says this is needed to build 64-bit with Visual Studio Express 2012.
|
|
1645
|
+
With 2017, it suppresses a warning.
|
|
1646
|
+
|
|
1647
|
+
- Suppressed "Possibly incorrect assignment" warnings with BCC, which
|
|
1648
|
+
also results in more readable code.
|
|
1649
|
+
|
|
1650
|
+
- Cleaned up obsolete comments, dead code, unneeded includes, typos, and
|
|
1651
|
+
outdated documentation.
|
|
1652
|
+
|
|
1653
|
+
- Dropped support for EMXVIDEO.
|
|
1654
|
+
|
|
1655
|
+
- Dropped color remapping for OS/2 (broken).
|
|
1656
|
+
|
|
1657
|
+
- Dropped X11 DLL support for Cygwin (broken).
|
|
1658
|
+
|
|
1659
|
+
- Rearranged extended color display in testcurs.
|
|
1660
|
+
|
|
1661
|
+
- In ptest, handle resizing, and check for screens too small to run in.
|
|
1662
|
+
|
|
1663
|
+
- Allow KEY_* codes (including KEY_RESIZE) to exit firework, as other
|
|
1664
|
+
keys do.
|
|
1665
|
+
|
|
1666
|
+
- Slightly faster Windows compilation (most noticeable in Watcom).
|
|
1667
|
+
|
|
1668
|
+
See the git log for more details.
|
|
1669
|
+
|
|
1670
|
+
------------------------------------------------------------------------
|
|
1671
|
+
|
|
1672
|
+
PDCurses 3.5 - 2018-01-15
|
|
1673
|
+
=========================
|
|
1674
|
+
|
|
1675
|
+
So, it's been a while, eh?
|
|
1676
|
+
|
|
1677
|
+
This release is an attempt to bring PDCurses mostly up to date, without
|
|
1678
|
+
breaking too many things in the process.
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
New features
|
|
1682
|
+
------------
|
|
1683
|
+
|
|
1684
|
+
- SDL2 port, and TTF and Unicode support for both SDL1 and SDL2. Credit
|
|
1685
|
+
for these goes mostly to Laura Michaels and Robin Gustafsson.
|
|
1686
|
+
|
|
1687
|
+
- 256 colors for SDL and X11, by Bill Gray. Colors 16-255 are set up to
|
|
1688
|
+
match xterm colors, but can be redefined, as with 0-15.
|
|
1689
|
+
|
|
1690
|
+
- Bold and italic font options for SDL and X11. A_BOLD's behavior is
|
|
1691
|
+
controlled by the new function PDC_set_bold() -- TRUE to select bold
|
|
1692
|
+
font, FALSE to choose high foregound intensity (as before). Italic
|
|
1693
|
+
fonts are selected by A_ITALIC (always on). X11 originally from Mark
|
|
1694
|
+
Hessling.
|
|
1695
|
+
|
|
1696
|
+
- Real blinking in SDL and X11, controlled by PDC_set_blink(). Largely
|
|
1697
|
+
due to Kevin Lamonte and Bill Gray.
|
|
1698
|
+
|
|
1699
|
+
- Support for A_UNDERLINE, A_LEFTLINE and A_RIGHTLINE in the Windows
|
|
1700
|
+
console. This requires a recent version of Windows (10, maybe 8?) to
|
|
1701
|
+
work with the standard console, but underlining also works with
|
|
1702
|
+
ConEmu, at least as far back as XP.
|
|
1703
|
+
|
|
1704
|
+
- User resizing (i.e. grab window edges or maximize button) for Windows
|
|
1705
|
+
console -- needs recent Windows or ConEmu.
|
|
1706
|
+
|
|
1707
|
+
- New-style color-changing code for the Windows console (using the new
|
|
1708
|
+
offical API instead of undocumented functions), supporting
|
|
1709
|
+
redefinition of colors 0-15 via init_color(). Works at least as far
|
|
1710
|
+
back as Windows XP SP3. Patch by "Didrole".
|
|
1711
|
+
|
|
1712
|
+
- The Windows console port now creates a separate console buffer by
|
|
1713
|
+
default, making for a cleaner and more complete restoration of the
|
|
1714
|
+
original buffer. The old behavior can be used by setting
|
|
1715
|
+
"PDC_RESTORE_SCREEN=0". Patch by Jason Hood.
|
|
1716
|
+
|
|
1717
|
+
- Left/right scroll wheel support for Windows console, SDL and X11. X11
|
|
1718
|
+
by Mark Hessling.
|
|
1719
|
+
|
|
1720
|
+
- testcurs now includes an additional test to show various attributes,
|
|
1721
|
+
and a display of the extended colors, where applicable.
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
Bug fixes and such
|
|
1725
|
+
------------------
|
|
1726
|
+
|
|
1727
|
+
- termattrs() now returns something vaguely resembling the actual
|
|
1728
|
+
capabilities of the specific "terminal". Specifically, A_BOLD and
|
|
1729
|
+
A_BLINK reflect the availability of true bold fonts, and real
|
|
1730
|
+
blinking; when not set in termattrs(), the attributes still work, but
|
|
1731
|
+
control foreground and background intensity, as before. *LINE are also
|
|
1732
|
+
meaningful, and even A_COLOR is set (or not).
|
|
1733
|
+
|
|
1734
|
+
- pad size check in pnoutrefresh() was broken since 3.0. Reported by
|
|
1735
|
+
Peter Hull.
|
|
1736
|
+
|
|
1737
|
+
- In newpad(), begx and begy should be set to zero, otherwise creating a
|
|
1738
|
+
subpad of the same width or height fails due to the check in subpad().
|
|
1739
|
+
Patch by Raphael Assenat.
|
|
1740
|
+
|
|
1741
|
+
- More straightforward math for subpad(), plus another off-by-one error.
|
|
1742
|
+
Reported by Werner Wenzel, John Hartmann et al.
|
|
1743
|
+
|
|
1744
|
+
- New subwindows/subpads/resized windows should copy _delayms. Patch by
|
|
1745
|
+
"xaizek".
|
|
1746
|
+
|
|
1747
|
+
- Potentially invalid saved cursor position in resize_window() --
|
|
1748
|
+
another off-by-one _maxx/_maxy error. Patch after "Luke-Jr".
|
|
1749
|
+
|
|
1750
|
+
- copywin() needs to disallow corner values equal to _maxx or _maxy, not
|
|
1751
|
+
just less than. Reported by "Aleksandr".
|
|
1752
|
+
|
|
1753
|
+
- Misaligned soft-label keys in 4-4-4 mode. Reported by Werner Wenzel.
|
|
1754
|
+
|
|
1755
|
+
- Missing prototypes for bkgrnd() and bkgrndset().
|
|
1756
|
+
|
|
1757
|
+
- Missing WA_NORMAL and WA_ATTRIBUTES from the X/Open spec.
|
|
1758
|
+
|
|
1759
|
+
- keyname() and termname() now return static buffers, as documented.
|
|
1760
|
+
|
|
1761
|
+
- In the X11 port, due to (post-PDCurses-3.4) changes in Xt,
|
|
1762
|
+
XtAppMainLoop() always hung. Fixed by re-implementing it within
|
|
1763
|
+
PDCurses, basically.
|
|
1764
|
+
|
|
1765
|
+
- Fix blinking X11 cursor for clients that call move() more frequently
|
|
1766
|
+
than cursorBlinkRate -- patch by Kevin Lamonte.
|
|
1767
|
+
|
|
1768
|
+
- Improved cursor rendering for X11, by John P. Hartmann.
|
|
1769
|
+
|
|
1770
|
+
- ALT key combos sometimes not reported in X11, per Mark Hessling et al.
|
|
1771
|
+
|
|
1772
|
+
- Support for XK_ISO_Left_Tab in X11, by John P. Hartmann.
|
|
1773
|
+
|
|
1774
|
+
- Support for "Super" keys in X11, by Bill Gray.
|
|
1775
|
+
|
|
1776
|
+
- Make xcurses-config include -DPDC_WIDE when appropriate, per M.H.
|
|
1777
|
+
|
|
1778
|
+
- The configure script and accompanying files, which were always
|
|
1779
|
+
specific only to the X11 port (causing considerable confusion), have
|
|
1780
|
+
been moved to the x11 directory.
|
|
1781
|
+
|
|
1782
|
+
- In SDL, SP->key_code wasn't being set for KEY_MOUSE events. Reported
|
|
1783
|
+
by Bill Gray.
|
|
1784
|
+
|
|
1785
|
+
- SDL events need to keep pumping through non-input delays. (Really
|
|
1786
|
+
messed up on current macOS before this change.)
|
|
1787
|
+
|
|
1788
|
+
- SDL2 is outperforming SDL1 by about 10x on the platforms I've tried
|
|
1789
|
+
that support both, so I've removed Makefile.mng from the SDL1 port.
|
|
1790
|
+
|
|
1791
|
+
- Updated for the most current compilers, wherever possible; various
|
|
1792
|
+
warning suppressions. All included makefiles were tested with their
|
|
1793
|
+
respective compilers, shortly before release (including the POSIX
|
|
1794
|
+
stuff on macOS with clang, and on Ubuntu Linux with gcc). The oldest
|
|
1795
|
+
compiler I tested with was Turbo C++ 3.0, from 1992; the latest,
|
|
1796
|
+
several compilers from 2017.
|
|
1797
|
+
|
|
1798
|
+
- Dropped support for LCC-Win32 -- the official site is shut down.
|
|
1799
|
+
|
|
1800
|
+
- Dropped support for Digital Mars -- not updated since 2014, limited
|
|
1801
|
+
makefile, library missing some needed Windows APIs.
|
|
1802
|
+
|
|
1803
|
+
- Dropped MS C for DOS, and Cset/2 for OS/2.
|
|
1804
|
+
|
|
1805
|
+
- Dropped support for building DLLs with EMX.
|
|
1806
|
+
|
|
1807
|
+
- Minor code and makefile reorganization; mingwin32.mak merged into
|
|
1808
|
+
gccwin32.mak (i.e. you can use it with both compilers). Some
|
|
1809
|
+
contributions by Bill Gray and Simon Sobisch.
|
|
1810
|
+
|
|
1811
|
+
- Watcom makefile paths and option markers changed to Unix-friendly
|
|
1812
|
+
style, after Tee-Kiah Chia.
|
|
1813
|
+
|
|
1814
|
+
- The *.def files are no longer needed, replaced by more PDCEX
|
|
1815
|
+
declarations in the include files. After Bill Gray and Simon Sobisch.
|
|
1816
|
+
|
|
1817
|
+
- When building with DEBUG=Y, no longer strip the executables. After
|
|
1818
|
+
Simon Sobisch.
|
|
1819
|
+
|
|
1820
|
+
- Hold debug file ("trace") open after traceon(), for greater
|
|
1821
|
+
performance. Set PDC_TRACE_FLUSH to make it fflush() after each write
|
|
1822
|
+
(slower but safer in case of a crash). Patch by Ellie Timoney.
|
|
1823
|
+
|
|
1824
|
+
- Since 3.2, the panel library was simply a copy of the main library.
|
|
1825
|
+
This kludge is now dropped. (panel.h remains separate from curses.h.)
|
|
1826
|
+
|
|
1827
|
+
- Removed PDCurses.spec, and the RPM-building makefile option. I think
|
|
1828
|
+
this is better left to the various package/distro maintainers.
|
|
1829
|
+
|
|
1830
|
+
- Various formatting corrections (e.g., trailing spaces stripped), and
|
|
1831
|
+
variables renamed to avoid clashes. Some contributed by Stefan
|
|
1832
|
+
Reinauer and Bill Gray.
|
|
1833
|
+
|
|
1834
|
+
- Various documentation corrections and updates. All documentation
|
|
1835
|
+
"converted" to Markdown format (involving few actual changes -- mainly
|
|
1836
|
+
the file extension), for better rendering on GitHub, SourceForge, etc.
|
|
1837
|
+
Some contributed by Anatoly Techtonik.
|
|
1838
|
+
|
|
1839
|
+
- The "Win32" label is deprecated by Microsoft, and accordingly I've
|
|
1840
|
+
replaced references in the documentation, although not yet changed the
|
|
1841
|
+
filenames. The Windows console code can just as well be built for
|
|
1842
|
+
64-bit (and always could be, AFAIK, although there are minor tweaks
|
|
1843
|
+
to support it in this version).
|
|
1844
|
+
|
|
1845
|
+
- The ncurses_tests can now be built under SDL as well as X11. Also, all
|
|
1846
|
+
our tests (still/again) build under recent ncurses.
|
|
1847
|
+
|
|
1848
|
+
- Put testcurs' "Output test" into real blink mode, if possible; and if
|
|
1849
|
+
COLORS >= 16, use colors 0-15 directly in the color test, instead of
|
|
1850
|
+
or'ing with A_BOLD to get the high-intensity colors.
|
|
1851
|
+
|
|
1852
|
+
- Renamed the (by now rather old) "newdemo" to "ozdemo".
|
|
1853
|
+
|
|
1854
|
+
- Moved from CVS to git; source is now on GitHub as well as SourceForge;
|
|
1855
|
+
central site is now pdcurses.org.
|
|
1856
|
+
|
|
1857
|
+
See the git log for more details.
|
|
1858
|
+
|
|
1859
|
+
------------------------------------------------------------------------
|
|
1860
|
+
|
|
1861
|
+
PDCurses 4.0.2 - 2017 Sep 12 (Bill Gray fork)
|
|
1862
|
+
=========================
|
|
1863
|
+
(Note that history gets confused here; we have things happening
|
|
1864
|
+
in two forks.)
|
|
1865
|
+
|
|
1866
|
+
Major new features:
|
|
1867
|
+
-------------------
|
|
1868
|
+
|
|
1869
|
+
- New WinGUI (Windows GUI) and SDL2 backends.
|
|
1870
|
+
SDL1 is still supported, but may eventually go away.
|
|
1871
|
+
|
|
1872
|
+
- Bold, italic, underlined, overlined, dimmed, 'strikeout', blinking text,
|
|
1873
|
+
256 colors and color pairs, and full RGB colors.
|
|
1874
|
+
These are all supported in WinGUI and mostly supported in X11, SDL1 and SDL2.
|
|
1875
|
+
|
|
1876
|
+
- In WinGUI, one can choose a font, and both programmatic and user resizing
|
|
1877
|
+
are supported.
|
|
1878
|
+
(Recompiling is necessary to change the font in X11.)
|
|
1879
|
+
|
|
1880
|
+
- (WinGUI only) Support of SMP Unicode (points beyond 64K) and combining
|
|
1881
|
+
characters.
|
|
1882
|
+
This may be extended to X11 and SDL2 eventually.
|
|
1883
|
+
|
|
1884
|
+
- Demos corrected to be buildable and testable with `ncurses`.
|
|
1885
|
+
|
|
1886
|
+
Minor new features
|
|
1887
|
+
-------------------
|
|
1888
|
+
(note that not all of these are available on all backends)
|
|
1889
|
+
|
|
1890
|
+
- Support for up to nine mouse buttons and wheel and tilt-wheel mice, and
|
|
1891
|
+
double and triple mouse clicks
|
|
1892
|
+
|
|
1893
|
+
- (X11, WinGUI, Win32) Extended range of keys that are recognized. This
|
|
1894
|
+
now includes most of the "oddball" keys such as 'browser back' and
|
|
1895
|
+
'favorites' found on some keyboards.
|
|
1896
|
+
|
|
1897
|
+
- Blinking cursors in WinGUI and X11 of various shapes (this could be
|
|
1898
|
+
extended to SDLx eventually).
|
|
1899
|
+
|
|
1900
|
+
- In X11 and WinGUI, one can call resize_term( ) before initscr( ) to set
|
|
1901
|
+
the initial window size.
|
|
1902
|
+
|
|
1903
|
+
- Soft Label Keys (SLKs) are considerably more flexible, with the ability
|
|
1904
|
+
to set arbitrary numbers of keys and groupings.
|
|
1905
|
+
See slk.c for details. This applies to all backends.
|
|
1906
|
+
|
|
1907
|
+
- Many changes to `testcurs` to test all these new features, and `newtest`
|
|
1908
|
+
added to test still more features.
|
|
1909
|
+
|
|
1910
|
+
- Option to get detailed version information of the used PDCurses library
|
|
1911
|
+
at run time with new exported `PDC_version` as `PDC_version_info` structure.
|
|
1912
|
+
|
|
1913
|
+
- ACS_x and WACS_x #defines extended to include a lot of "alternative
|
|
1914
|
+
characters" that overlap in Unicode and CP-437: double-line box chars,
|
|
1915
|
+
card suits, vulgar fractions, etc.
|
|
1916
|
+
This applies to all backends. See `acs_defs.h` for the full list.
|
|
1917
|
+
|
|
1918
|
+
- Cleaned up some makefiles for Win32 and WinGUI.
|
|
1919
|
+
On both platforms, `vcwin32.mak` can now be used with the Intel(R) compiler,
|
|
1920
|
+
and `mingwin32.mak` can be used to cross-compile from Linux, or in
|
|
1921
|
+
`command.com` under Windows, or with Cygwin/MSYS.
|
|
1922
|
+
Also added a makefile for Digital Mars for the DOS version.
|
|
1923
|
+
|
|
1924
|
+
------------------------------------------------------------------------
|
|
1925
|
+
|
|
1926
|
+
PDCurses 3.4 - 2008-09-08
|
|
1927
|
+
=========================
|
|
1928
|
+
|
|
1929
|
+
Nothing much new this time, but I've been sitting on some bug fixes for
|
|
1930
|
+
almost a year, so it's overdue. Apart from bugs, the main changes are in
|
|
1931
|
+
the documentation.
|
|
1932
|
+
|
|
1933
|
+
New features:
|
|
1934
|
+
|
|
1935
|
+
- setsyx() is now a function rather than a macro.
|
|
1936
|
+
|
|
1937
|
+
Bug fixes and such:
|
|
1938
|
+
|
|
1939
|
+
- In x11, the xc_atrtab table size was under-calculated by half,
|
|
1940
|
+
resulting in crashes at (oddly) certain line counts. (It should've
|
|
1941
|
+
crashed a lot more.) Reported by Mark Hessling.
|
|
1942
|
+
|
|
1943
|
+
- Test for moved cursor was omitting the window origin offset. Reported
|
|
1944
|
+
by Carey Evans.
|
|
1945
|
+
|
|
1946
|
+
- Is DOS and OS/2, the value for max items in key_table was still wrong.
|
|
1947
|
+
Reported by C.E.
|
|
1948
|
+
|
|
1949
|
+
- Changed isendwin() so it won't crash after delscreen().
|
|
1950
|
+
|
|
1951
|
+
- Ensure zero-termination in PDC_mbstowcs() and PDC_wcstombs().
|
|
1952
|
+
|
|
1953
|
+
- Disable QuickEdit Mode when enabling mouse input for the Win32
|
|
1954
|
+
console; reported by "Zalapkrakna".
|
|
1955
|
+
|
|
1956
|
+
- Fix for building under Innotek C (I hope). Report by Elbert Pol, fix
|
|
1957
|
+
courtesy of Paul Smedley.
|
|
1958
|
+
|
|
1959
|
+
- Unified exports list with no duplicates -- pdcurses.def is now built
|
|
1960
|
+
from components at compile time.
|
|
1961
|
+
|
|
1962
|
+
- Don't install curspriv.h, and don't include it with binary
|
|
1963
|
+
distributions.
|
|
1964
|
+
|
|
1965
|
+
- Building DLLs with LCC is no longer supported, due to the primitive
|
|
1966
|
+
nature of its make.exe.
|
|
1967
|
+
|
|
1968
|
+
- Export the terminfo stub functions from the DLLs, too.
|
|
1969
|
+
|
|
1970
|
+
- Added support for Apple's ".dylib" in configure. Suggested by Marc
|
|
1971
|
+
Vaillant (who says it's needed with OS 10.5.)
|
|
1972
|
+
|
|
1973
|
+
- In sdl1/Makefile.mng, ensure that CC is set.
|
|
1974
|
+
|
|
1975
|
+
- In the gcc makefiles, "$?" didn't really have the desired effect --
|
|
1976
|
+
_all_ the dependencies showed up on the command line, including
|
|
1977
|
+
curses.h, and pdcurses.a twice. And apparently, this can mess up some
|
|
1978
|
+
old version (?) of MinGW. So, revert to spelling out "tuidemo.o
|
|
1979
|
+
tui.o". Reported by "Howard L."
|
|
1980
|
+
|
|
1981
|
+
- Extensive documentation revision and reorganizing. More to do here.
|
|
1982
|
+
For example, I moved the build instructions from INSTALL (which never
|
|
1983
|
+
really described installation) to the platform-specific READMEs.
|
|
1984
|
+
|
|
1985
|
+
- New indentation standard: four spaces, no tabs.
|
|
1986
|
+
|
|
1987
|
+
------------------------------------------------------------------------
|
|
1988
|
+
|
|
1989
|
+
PDCurses 3.3 - 2007-07-11
|
|
1990
|
+
=========================
|
|
1991
|
+
|
|
1992
|
+
This release adds an SDL backend, refines the demos, and is faster in
|
|
1993
|
+
some cases.
|
|
1994
|
+
|
|
1995
|
+
New features:
|
|
1996
|
+
|
|
1997
|
+
- SDL port. See INSTALL, doc/sdl.txt and sdl1/* for details.
|
|
1998
|
+
|
|
1999
|
+
- Double-buffering -- minimize screen writes by checking, in doupdate()
|
|
2000
|
+
and wnoutrefresh(), whether the changes to curscr are really changes.
|
|
2001
|
+
In most cases, this makes no difference (writes were already limited
|
|
2002
|
+
to areas marked as changed), but it can greatly reduce the overhead
|
|
2003
|
+
from touchwin(). It also helps if you have small, separated updates on
|
|
2004
|
+
the same line.
|
|
2005
|
+
|
|
2006
|
+
- The PDC_RGB colors can now be used, or not, with any platform (as long
|
|
2007
|
+
as the same options are used when compiling both the library and
|
|
2008
|
+
apps). This may help if you have apps that are hardwired to assume
|
|
2009
|
+
certain definitions.
|
|
2010
|
+
|
|
2011
|
+
- Restored the use_default_colors() stuff from the ncurses versions of
|
|
2012
|
+
the rain and worm demos, to make them "transparent" (this is useful
|
|
2013
|
+
now, with the SDL port); added transparency to newdemo.
|
|
2014
|
+
|
|
2015
|
+
- Added setlocale() to tuidemo, to make it easier to browse files with
|
|
2016
|
+
non-ASCII characters.
|
|
2017
|
+
|
|
2018
|
+
- Sped up firework demo by replacing unneeded clear() and init_pair()
|
|
2019
|
+
calls.
|
|
2020
|
+
|
|
2021
|
+
- Allow exit from ptest demo by typing 'q'.
|
|
2022
|
+
|
|
2023
|
+
- New functions for implementors: PDC_pair_content() and PDC_init_pair()
|
|
2024
|
+
(the old pdc_atrtab stuff was arguably the last remnant of code in the
|
|
2025
|
+
pdcurses directory that was based on platform details).
|
|
2026
|
+
|
|
2027
|
+
Bug fixes and such:
|
|
2028
|
+
|
|
2029
|
+
- Implicit wrefresh() needs to be called from wgetch() when the window's
|
|
2030
|
+
cursor position is changed, even if there are no other changes.
|
|
2031
|
+
|
|
2032
|
+
- Set SP->audible on a per-platform basis, as was documented in
|
|
2033
|
+
IMPLEMNT, but not actually being done.
|
|
2034
|
+
|
|
2035
|
+
- Minor tweaks for efficiency and readability, notably with wscrl().
|
|
2036
|
+
|
|
2037
|
+
- tuidemo didn't work correctly on monochrome screens when A_COLOR was
|
|
2038
|
+
defined -- the color pair numbers appeared as the corresponding
|
|
2039
|
+
character; also, the input box was (I now realize) broken with ncurses
|
|
2040
|
+
since our 2.7, and broke more subtly with PDCurses' new implicit
|
|
2041
|
+
refresh handling; also, the path to the default file for the Browse
|
|
2042
|
+
function was a bit off.
|
|
2043
|
+
|
|
2044
|
+
- Assume in the demos that curs_set() is always available -- there's no
|
|
2045
|
+
good test for this, and the existing tests were bogus.
|
|
2046
|
+
|
|
2047
|
+
- Made the command-line parameter for ptest work. (If given an argument,
|
|
2048
|
+
it delays that number of milliseconds between changes, instead of
|
|
2049
|
+
waiting for a key, and automatically loops five times.)
|
|
2050
|
+
|
|
2051
|
+
- Building the Win32 DLL with MinGW or Cygwin wouldn't work from outside
|
|
2052
|
+
the platform directory.
|
|
2053
|
+
|
|
2054
|
+
- Building the X11 port with Cygwin required manually editing the
|
|
2055
|
+
Makefile after configuring; no longer. Reported by Warren W. Gay.
|
|
2056
|
+
|
|
2057
|
+
- Minor tightening of configure and makefiles.
|
|
2058
|
+
|
|
2059
|
+
- Bogus references to "ACS_BLCORNER" in the border man page. Reported by
|
|
2060
|
+
"Walrii".
|
|
2061
|
+
|
|
2062
|
+
- slk_wlabel() was not documented.
|
|
2063
|
+
|
|
2064
|
+
- Spelling cleanup.
|
|
2065
|
+
|
|
2066
|
+
- Changed RCSIDs to not end with a semicolon -- avoids warnings when
|
|
2067
|
+
compiling with the -pedantic option.
|
|
2068
|
+
|
|
2069
|
+
- Merged latin-1.txt into x11.txt.
|
|
2070
|
+
|
|
2071
|
+
- Updated config.guess and config.sub to more recent versions.
|
|
2072
|
+
|
|
2073
|
+
------------------------------------------------------------------------
|
|
2074
|
+
|
|
2075
|
+
PDCurses 3.2 - 2007-06-06
|
|
2076
|
+
=========================
|
|
2077
|
+
|
|
2078
|
+
This release mainly covers changes to the build process, along with a
|
|
2079
|
+
few structural changes.
|
|
2080
|
+
|
|
2081
|
+
New features:
|
|
2082
|
+
|
|
2083
|
+
- The panel library has been folded into the main library. What this
|
|
2084
|
+
means is that you no longer need to specify "-lpanel" or equivalent
|
|
2085
|
+
when linking programs that use panel functionality with PDCurses;
|
|
2086
|
+
however, panel.lib/.a is still provided (as a copy of pdcurses.lib/.a)
|
|
2087
|
+
so that you can, optionally, build your projects with no changes. It
|
|
2088
|
+
also means that panel functionality is available with the DLL or
|
|
2089
|
+
shared library. Note that panel.h remains separate from curses.h.
|
|
2090
|
+
|
|
2091
|
+
- Setting the PDCURSES_SRCDIR environment variable is no longer required
|
|
2092
|
+
before building, unless you want to build in a location other than the
|
|
2093
|
+
platform directory. (See INSTALL.)
|
|
2094
|
+
|
|
2095
|
+
- MinGW and Cygwin makefiles support building DLLs, via the "DLL=Y"
|
|
2096
|
+
option. Partly due to Timofei Shatrov.
|
|
2097
|
+
|
|
2098
|
+
- Support for the Digital Mars compiler.
|
|
2099
|
+
|
|
2100
|
+
- Watcom makefiles now use the "loaddll" feature.
|
|
2101
|
+
|
|
2102
|
+
Bug fixes and such:
|
|
2103
|
+
|
|
2104
|
+
- Eliminated the platform defines (DOS, WIN32, OS2, XCURSES) from
|
|
2105
|
+
curses.h, except for X11-specific SCREEN elements and functions.
|
|
2106
|
+
Dynamically-linked X11 apps built against an old version will have
|
|
2107
|
+
their red and blue swapped until rebuilt. (You can define PDC_RGB to
|
|
2108
|
+
build the library with the old color scheme, but it would also have to
|
|
2109
|
+
be defined when building any new app.) Any app that depends on
|
|
2110
|
+
PDCurses to determine the platform it's building on will have to make
|
|
2111
|
+
other arrangements.
|
|
2112
|
+
|
|
2113
|
+
- Documentation cleanup -- added more details; removed some content that
|
|
2114
|
+
didn't apply to PDCurses; moved the doc-building tool to the doc
|
|
2115
|
+
directory; changed *.man to *.txt.
|
|
2116
|
+
|
|
2117
|
+
- The EMX makefile now accepts "DLL=Y", builds pdcurses.dll instead of
|
|
2118
|
+
curses.dll, builds either the static library or the DLL (not both at
|
|
2119
|
+
once), and links all the demos with the DLL when building it.
|
|
2120
|
+
|
|
2121
|
+
- In Win32, read the registry only when needed: when init_color() or
|
|
2122
|
+
color_content() is called, instead of at startup.
|
|
2123
|
+
|
|
2124
|
+
- A few additional consts in declarations.
|
|
2125
|
+
|
|
2126
|
+
- The Win32 compilers that build DLLs now use common .def files.
|
|
2127
|
+
|
|
2128
|
+
- panel.h functions sorted by name, as with other .h files; curses.h is
|
|
2129
|
+
no longer included by repeated inclusions of panel.h or term.h.
|
|
2130
|
+
|
|
2131
|
+
- Simplified Borland makefiles.
|
|
2132
|
+
|
|
2133
|
+
- Makefile.aix.in depended on a file, xcurses.exp, that was never there.
|
|
2134
|
+
This problem was fixed as part of the change to common .def files;
|
|
2135
|
+
however, I still haven't been able to test building on AIX.
|
|
2136
|
+
|
|
2137
|
+
------------------------------------------------------------------------
|
|
2138
|
+
|
|
2139
|
+
PDCurses 3.1 - 2007-05-03
|
|
2140
|
+
=========================
|
|
2141
|
+
|
|
2142
|
+
Primarily clipboard-related fixes, and special UTF-8 support.
|
|
2143
|
+
|
|
2144
|
+
New features:
|
|
2145
|
+
|
|
2146
|
+
- "Force UTF-8" mode, a compile-time option to force the use of UTF-8
|
|
2147
|
+
for multibyte strings, instead of the system locale. (Mainly for
|
|
2148
|
+
Windows, where UTF-8 doesn't work well in the console.) See INSTALL.
|
|
2149
|
+
|
|
2150
|
+
- Multibyte string support in PDC_*clipboard() functions, and in Win32's
|
|
2151
|
+
PDC_set_title().
|
|
2152
|
+
|
|
2153
|
+
- Added the global string "ttytype", per other curses implementations,
|
|
2154
|
+
for compatibility with old BSD curses.
|
|
2155
|
+
|
|
2156
|
+
- Real functions for the "quasi-standard aliases" -- crmode(),
|
|
2157
|
+
nocrmode(), draino(), resetterm(), fixterm() and saveterm().
|
|
2158
|
+
(Corresponding macros removed.)
|
|
2159
|
+
|
|
2160
|
+
Bug fixes and such:
|
|
2161
|
+
|
|
2162
|
+
- In Win32, under NT-family OSes, the scrollback buffer would be
|
|
2163
|
+
restored by endwin(), but would not be turned off again when resuming
|
|
2164
|
+
curses after an endwin(). The result was an odd, partly-scrolled-up
|
|
2165
|
+
display. Now, the buffer is toggled by PDC_reset_prog_mode() and
|
|
2166
|
+
PDC_reset_shell_mode(), so it's properly turned off when returning
|
|
2167
|
+
from an endwin().
|
|
2168
|
+
|
|
2169
|
+
- In 3.0, selection in X11 didn't work. (Well, the selecting worked, but
|
|
2170
|
+
the pasting elsewhere didn't.) This was due to the attempted fix
|
|
2171
|
+
"don't return selection start as a press event," so that's been
|
|
2172
|
+
reverted for now.
|
|
2173
|
+
|
|
2174
|
+
- PDC_setclipboard() was locking up in X11. Reported by Mark Hessling.
|
|
2175
|
+
|
|
2176
|
+
- Missing underscore in the declaration of XC_say() prevented
|
|
2177
|
+
compilation with PDCDEBUG defined. Reported by M.H.
|
|
2178
|
+
|
|
2179
|
+
- Off-by-one error in copywin() -- the maximum coordinates for the
|
|
2180
|
+
destination window should be inclusive. Reported by Tiago Dionizio.
|
|
2181
|
+
|
|
2182
|
+
- Start in echo mode, per X/Open. Reported by T.D.
|
|
2183
|
+
|
|
2184
|
+
- Strip leading and trailing spaces from slk labels, per a literal
|
|
2185
|
+
reading of X/Open. Suggested by Alexey Miheev (about ncurses, but it
|
|
2186
|
+
also applies here).
|
|
2187
|
+
|
|
2188
|
+
- The #endif for __PDCURSES__ needs to come _after_ the closing of the
|
|
2189
|
+
extern "C". This has been broken since June 2005. Fortunately (?), it
|
|
2190
|
+
only shows up if the file is included multiple times, and then only in
|
|
2191
|
+
C++. Reported on the DOSBox forums.
|
|
2192
|
+
|
|
2193
|
+
- Use CF_OEMTEXT instead of CF_TEXT in the narrow versions of the
|
|
2194
|
+
clipboard functions in Win32, to match the console.
|
|
2195
|
+
|
|
2196
|
+
- Changed the format of the string returned from longname().
|
|
2197
|
+
|
|
2198
|
+
- In the clipboard test in the testcurs demo, use a single mvprintw() to
|
|
2199
|
+
display the return from PDC_getclipboard(), instead of a loop of
|
|
2200
|
+
addch(), which was incompatible with multibyte strings.
|
|
2201
|
+
|
|
2202
|
+
- Moved has_key() into the keyname module, and documented it.
|
|
2203
|
+
|
|
2204
|
+
- Moved RIPPEDOFFLINE to curspriv.h.
|
|
2205
|
+
|
|
2206
|
+
- Typos in IMPLEMNT.
|
|
2207
|
+
|
|
2208
|
+
------------------------------------------------------------------------
|
|
2209
|
+
|
|
2210
|
+
PDCurses 3.0 - 2007-04-01
|
|
2211
|
+
=========================
|
|
2212
|
+
|
|
2213
|
+
The focuses for this release are X/Open conformance, i18n, better color
|
|
2214
|
+
support, cleaner code, and more consistency across platforms.
|
|
2215
|
+
|
|
2216
|
+
This is only a brief summary of the changes. For more details, consult
|
|
2217
|
+
the CVS log.
|
|
2218
|
+
|
|
2219
|
+
New features:
|
|
2220
|
+
|
|
2221
|
+
- An almost complete implementation of X/Open curses, including the
|
|
2222
|
+
wide-character and attr_t functions (but excluding terminfo). The
|
|
2223
|
+
wide-character functions work only in Win32 and X11, for now, and
|
|
2224
|
+
require building the library with the appropriate options (see
|
|
2225
|
+
INSTALL). Note that this is a simplistic implementation, with exactly
|
|
2226
|
+
one wchar_t per cchar_t; the only characters it handles properly are
|
|
2227
|
+
those that are one column wide.
|
|
2228
|
+
|
|
2229
|
+
- Support for X Input Methods in the X11 port (see INSTALL). When built
|
|
2230
|
+
this way, the internal compose key support is disabled in favor of
|
|
2231
|
+
XIM's, which is a lot more complete, although you lose the box cursor.
|
|
2232
|
+
|
|
2233
|
+
- Multibyte character support in the non-wide string handling functions,
|
|
2234
|
+
per X/Open. This only works when the library is built with wide-
|
|
2235
|
+
character support enabled.
|
|
2236
|
+
|
|
2237
|
+
- Mouse support for DOS and OS/2. The DOS version includes untested
|
|
2238
|
+
support for scroll wheels, via the "CuteMouse" driver.
|
|
2239
|
+
|
|
2240
|
+
- An ncurses-compatible mouse interface, which can work in parallel with
|
|
2241
|
+
the traditional PDCurses mouse interface. See the man page (or
|
|
2242
|
+
mouse.c) for details.
|
|
2243
|
+
|
|
2244
|
+
- DOS and OS/2 can now return modifiers as keys, as in Win32 and X11.
|
|
2245
|
+
|
|
2246
|
+
- COLORS, which had been fixed at 8, is now either 8 or 16, depending on
|
|
2247
|
+
the terminal -- usually 16. When it's 8, blinking mode is enabled
|
|
2248
|
+
(controlled as before by the A_BLINK attribute); when it's 16, bright
|
|
2249
|
+
background colors are used instead. On platforms where it can be
|
|
2250
|
+
changed, the mode is toggled by the new function PDC_set_blink().
|
|
2251
|
+
PDCurses tries to set PDC_set_blink(FALSE) at startup. (In Win32, it's
|
|
2252
|
+
always set to FALSE; in DOS, with other than an EGA or VGA card, it
|
|
2253
|
+
can't be.) Also, COLORS is now set to 0 until start_color() is called.
|
|
2254
|
+
|
|
2255
|
+
- Corresponding to the change in COLORS, COLOR_PAIRS is now 256.
|
|
2256
|
+
|
|
2257
|
+
- Working init_color() and color_content(). The OS/2 version of
|
|
2258
|
+
init_color() works only in a full-screen session; the Win32 version
|
|
2259
|
+
works only in windowed mode, and only in NT-family OSes; the DOS
|
|
2260
|
+
version works only with VGA adapters (real or simulated). The Win32
|
|
2261
|
+
version is based mostly on James Brown's setconsoleinfo.c
|
|
2262
|
+
(www.catch22.net).
|
|
2263
|
+
|
|
2264
|
+
- use_default_colors(), assume_default_colors(), and curses_version(),
|
|
2265
|
+
after ncurses.
|
|
2266
|
+
|
|
2267
|
+
- Added global int TABSIZE, after ncurses and Solaris curses; removed
|
|
2268
|
+
window-specific _tabsize.
|
|
2269
|
+
|
|
2270
|
+
- Logical extension to the wide-character slk_ funcs: slk_wlabel(), for
|
|
2271
|
+
retrieving the label as a wide-character string.
|
|
2272
|
+
|
|
2273
|
+
- A non-macro implementation of ncurses' wresize().
|
|
2274
|
+
|
|
2275
|
+
- Working putwin(), getwin(), scr_dump() and scr_restore().
|
|
2276
|
+
|
|
2277
|
+
- A working acs_map[]. Characters from the ACS are now stored in window
|
|
2278
|
+
structures as a regular character plus the A_ALTCHARSET attribute, and
|
|
2279
|
+
rendered to the ACS only when displayed. (This allows, for example,
|
|
2280
|
+
the correct display on one platform of windows saved from another.)
|
|
2281
|
+
|
|
2282
|
+
- In X11, allow selection and paste of UTF8_STRING.
|
|
2283
|
+
|
|
2284
|
+
- The testcurs demo now includes a color chart and init_color() test, a
|
|
2285
|
+
wide character input test, a display of wide ACS characters with
|
|
2286
|
+
sample Unicode text, a specific test of flash(), more info in the
|
|
2287
|
+
resize test, and attempts to change the width as well as the height.
|
|
2288
|
+
|
|
2289
|
+
- Command-line option for MSVC to build DLLs (see INSTALL). Also, the
|
|
2290
|
+
naming distinction for DLLs ("curses" vs. "pdcurses") is abandoned,
|
|
2291
|
+
and either the static lib or DLL is built, not both at once (except
|
|
2292
|
+
for X11).
|
|
2293
|
+
|
|
2294
|
+
- For backwards compatibility, a special module just for deprecated
|
|
2295
|
+
functions -- currently PDC_check_bios_key(), PDC_get_bios_key(),
|
|
2296
|
+
PDC_get_ctrl_break() and PDC_set_ctrl_break(). These shouldn't be used
|
|
2297
|
+
in applications, but currently are... in fact, all the "private"
|
|
2298
|
+
functions (in curspriv.h) are subject to change and should be avoided.
|
|
2299
|
+
|
|
2300
|
+
- A new document, IMPLEMNT, describing PDCurses' internal functions for
|
|
2301
|
+
those wishing to port it to new platforms.
|
|
2302
|
+
|
|
2303
|
+
- Mark Hessling has released the X11 port to the public domain.
|
|
2304
|
+
(However, x11/ScrollBox* retain their separate copyright and MIT-like
|
|
2305
|
+
license.)
|
|
2306
|
+
|
|
2307
|
+
Bug fixes and such:
|
|
2308
|
+
|
|
2309
|
+
- Most of the macros have been removed (along with the NOMACROS ifdef).
|
|
2310
|
+
The only remaining ones are those which have to be macros to work, and
|
|
2311
|
+
those that are required by X/Open to be macros. There were numerous
|
|
2312
|
+
problems with the macros, and no apparent reason to keep them, except
|
|
2313
|
+
tradition -- although it was PCcurses 1.x that first omitted them.
|
|
2314
|
+
|
|
2315
|
+
- Clean separation of platform-specific code from the rest. Outside of
|
|
2316
|
+
the platform directories, there remain only a few ifdefs in curses.h
|
|
2317
|
+
and curspriv.h.
|
|
2318
|
+
|
|
2319
|
+
- General reorganization and simplification.
|
|
2320
|
+
|
|
2321
|
+
- Documentation revisions.
|
|
2322
|
+
|
|
2323
|
+
- When expanding control characters in addch() or insch(), retain the
|
|
2324
|
+
attributes from the chtype.
|
|
2325
|
+
|
|
2326
|
+
- Preserve the A_ALTCHARSET attribute in addch() and insch().
|
|
2327
|
+
|
|
2328
|
+
- Per X/Open, beep() should always return OK.
|
|
2329
|
+
|
|
2330
|
+
- On platforms with a controlling terminal (i.e., not X11), curs_set(1)
|
|
2331
|
+
now sets the cursor to the shape it had at the time of initscr(),
|
|
2332
|
+
rather than always making it small. (Exception for DOS: If the video
|
|
2333
|
+
mode has been changed by PDC_resize_screen(), curs_set(1) reverts to
|
|
2334
|
+
line 6/7.) The shape is taken from SP->orig_cursor (the meaning of
|
|
2335
|
+
which is platform-specific).
|
|
2336
|
+
|
|
2337
|
+
- Stop updating the cursor position when the cursor is invisible (this
|
|
2338
|
+
gives a huge performance boost in Win 9x); update the cursor position
|
|
2339
|
+
from curs_set() if changing from invisible to visible.
|
|
2340
|
+
|
|
2341
|
+
- Some tweaking of the behavior of def_prog_mode(), def_shell_mode(),
|
|
2342
|
+
savetty(), reset_prog_mode(), reset_shell_mode() and resetty()...
|
|
2343
|
+
still not quite right.
|
|
2344
|
+
|
|
2345
|
+
- flash() was not implemented for Win32 or X. A portable implementation
|
|
2346
|
+
is now used for all platforms. Note that it's much slower than the
|
|
2347
|
+
old (DOS and OS/2) version, but this is only apparent on an extremely
|
|
2348
|
+
slow machine, such as an XT.
|
|
2349
|
+
|
|
2350
|
+
- In getstr(), backspacing on high-bit characters caused a double
|
|
2351
|
+
backspace.
|
|
2352
|
+
|
|
2353
|
+
- hline() and vline() used an incorrect (off by one) interpretation of
|
|
2354
|
+
_maxx and _maxy. If values of n greater than the max were specified,
|
|
2355
|
+
these functions could access unallocated memory.
|
|
2356
|
+
|
|
2357
|
+
- innstr() is supposed to return the number of characters read, not just
|
|
2358
|
+
OK or ERR. Reported by Mike Aubury.
|
|
2359
|
+
|
|
2360
|
+
- A proper implementation of insch() -- the PDC_chadd()-based version
|
|
2361
|
+
wasn't handling the control characters correctly.
|
|
2362
|
+
|
|
2363
|
+
- Return ASCII and control key names from keyname() (problem revealed by
|
|
2364
|
+
ncurses' movewindow test); also, per X/Open, return "UNKNOWN KEY" when
|
|
2365
|
+
appropriate, rather than "NO KEY NAME".
|
|
2366
|
+
|
|
2367
|
+
- Turn off the cursor from leaveok(TRUE), even in X11; leaveok(FALSE)
|
|
2368
|
+
now calls curs_set(1), regardless of the previous state of the cursor.
|
|
2369
|
+
|
|
2370
|
+
- In the slk area, BUTTON_CLICKED events now translate to function keys,
|
|
2371
|
+
along with the previously recognized BUTTON_PRESSED events. Of course,
|
|
2372
|
+
it should really be checking the events specified by map_button(),
|
|
2373
|
+
which still doesn't work.
|
|
2374
|
+
|
|
2375
|
+
- napms(0) now returns immediately.
|
|
2376
|
+
|
|
2377
|
+
- A unified napms() implementation for DOS -- no longer throttles the
|
|
2378
|
+
CPU when built with any compiler.
|
|
2379
|
+
|
|
2380
|
+
- Allow backspace editing of the nocbreak() buffer.
|
|
2381
|
+
|
|
2382
|
+
- pair_content(0, ...) is valid.
|
|
2383
|
+
|
|
2384
|
+
- There was no check to ensure that the pnoutrefresh() window fit within
|
|
2385
|
+
the screen. It now returns an ERR if it doesn't.
|
|
2386
|
+
|
|
2387
|
+
- In X11, resize_term() must be called with parameters (0, 0), and only
|
|
2388
|
+
when SP->resized is set, else it returns ERR.
|
|
2389
|
+
|
|
2390
|
+
- Copy _bkgd in resize_window(). Patch found on Frederic L. W. Meunier's
|
|
2391
|
+
web site.
|
|
2392
|
+
|
|
2393
|
+
- slk_clear() now removes the buttons completely, as in ncurses.
|
|
2394
|
+
|
|
2395
|
+
- Use the current foreground color for the line attributes (underline,
|
|
2396
|
+
left, right), unless PDC_set_line_color() is explicitly called. After
|
|
2397
|
+
setting the line color, you can reset it to this mode via
|
|
2398
|
+
"PDC_set_line_color(-1)".
|
|
2399
|
+
|
|
2400
|
+
- Removed non-macro implementations of COLOR_PAIR() and PAIR_NUMBER().
|
|
2401
|
+
|
|
2402
|
+
- Dispensed with PDC_chadd() and PDC_chins() -- waddch() and winsch()
|
|
2403
|
+
are now (again) the core functions.
|
|
2404
|
+
|
|
2405
|
+
- Dropped or made static many obsolete, unused, and/or broken functions,
|
|
2406
|
+
including PDC_chg_attrs(), PDC_cursor_on() and _off(),
|
|
2407
|
+
PDC_fix_cursor(), PDC_get_attribute(), PDC_get_cur_col() and _row(),
|
|
2408
|
+
PDC_set_80x25(), PDC_set_cursor_mode(), PDC_set_rows(),
|
|
2409
|
+
PDC_wunderline(), PDC_wleftline(), PDC_wrightline(),
|
|
2410
|
+
XCursesModifierPress() and XCurses_refresh_scrollbar().
|
|
2411
|
+
|
|
2412
|
+
- Obsolete/unused defines: _BCHAR, _GOCHAR, _STOPCHAR, _PRINTCHAR
|
|
2413
|
+
_ENDLINE, _FULLWIN and _SCROLLWIN.
|
|
2414
|
+
|
|
2415
|
+
- Obsolete/unused elements of the WINDOW struct: _pmax*, _lastp*,
|
|
2416
|
+
_lasts*.
|
|
2417
|
+
|
|
2418
|
+
- Obsolete/unused elements of the SCREEN struct: orgcbr, visible_cursor,
|
|
2419
|
+
sizeable, shell, blank, cursor, orig_emulation, font, orig_font,
|
|
2420
|
+
tahead, adapter, scrnmode, kbdinfo, direct_video, video_page,
|
|
2421
|
+
video_seg, video_ofs, bogus_adapter. (Some of these persist outside
|
|
2422
|
+
the SCREEN struct, in the platform directories.) Added mouse_wait and
|
|
2423
|
+
key_code.
|
|
2424
|
+
|
|
2425
|
+
- Removed all the EMALLOC stuff. Straight malloc calls were used
|
|
2426
|
+
elsewhere; it was undocumented outside of comments in curspriv.h; and
|
|
2427
|
+
there are better ways to use a substitute malloc().
|
|
2428
|
+
|
|
2429
|
+
- Single mouse clicks are now reportable on all platforms (not just
|
|
2430
|
+
double-clicks). And in general, mouse event reporting is more
|
|
2431
|
+
consistent across platforms.
|
|
2432
|
+
|
|
2433
|
+
- The mouse cursor no longer appears in full-screen mode in Win32 unless
|
|
2434
|
+
a nonzero mouse event mask is used.
|
|
2435
|
+
|
|
2436
|
+
- ALT-keypad input now works in Win32.
|
|
2437
|
+
|
|
2438
|
+
- In Win32, SetConsoleMode(ENABLE_WINDOW_INPUT) is not useful, and
|
|
2439
|
+
appears to be the source of a four-year-old bug report (hanging in
|
|
2440
|
+
THE) by Phil Smith.
|
|
2441
|
+
|
|
2442
|
+
- Removed the PDC_THREAD_BUILD stuff, which has never worked. For the
|
|
2443
|
+
record: PDCurses is not thread-safe. Neither is ncurses; and the
|
|
2444
|
+
X/Open curses spec explicitly makes it a non-requirement.
|
|
2445
|
+
|
|
2446
|
+
- With the internal compose key system in the X11 port, modifier keys
|
|
2447
|
+
were breaking out of the compose state, making it impossible to type
|
|
2448
|
+
accented capitals, etc. Also, Multi_key is now the default compose
|
|
2449
|
+
key, instead of leaving it undefined by default; and a few more combos
|
|
2450
|
+
are supported.
|
|
2451
|
+
|
|
2452
|
+
- In X11, the first reported mouse event after startup always read as a
|
|
2453
|
+
double-click at position 0, 0. (This bug was introduced in 2.8.)
|
|
2454
|
+
|
|
2455
|
+
- In X11, don't return selection start as a press event. (Shift-click on
|
|
2456
|
+
button 1 is still returned.)
|
|
2457
|
+
|
|
2458
|
+
- In X11, properly handle pasting of high-bit chars. (It was doing an
|
|
2459
|
+
unwanted sign extension.)
|
|
2460
|
+
|
|
2461
|
+
- In X11, BUTTON_MOVED was never returned, although PDC_MOUSE_MOVED was
|
|
2462
|
+
set.
|
|
2463
|
+
|
|
2464
|
+
- The fix in 2.8 for the scroll wheel in X11 wasn't very good -- it did
|
|
2465
|
+
report the events as scroll wheel events, but it doubled them. Here's
|
|
2466
|
+
a proper fix.
|
|
2467
|
+
|
|
2468
|
+
- Changed mouse handling in X11: Simpler translation table, with
|
|
2469
|
+
XCursesPasteSelection() called from XCursesButton() instead of the
|
|
2470
|
+
translation table; require shift with button 1 or 2 for select or
|
|
2471
|
+
paste when mouse events are being reported (as with ncurses), allowing
|
|
2472
|
+
passthrough of simple button 2 events. This fixes the previously
|
|
2473
|
+
unreliable button 2 behavior.
|
|
2474
|
+
|
|
2475
|
+
- Modifier keys are now returned on key up in X11, as in Win32. And in
|
|
2476
|
+
general, modifier key reporting is more consistent across platforms.
|
|
2477
|
+
|
|
2478
|
+
- Modifiers are not returned as keys when a mouse click has occurred
|
|
2479
|
+
since the key press.
|
|
2480
|
+
|
|
2481
|
+
- In BIOS mode (in DOS), count successive identical output bytes, and
|
|
2482
|
+
make only one BIOS call for all of them. This dramatically improves
|
|
2483
|
+
performance.
|
|
2484
|
+
|
|
2485
|
+
- The cursor position was not always updated correctly in BIOS mode.
|
|
2486
|
+
|
|
2487
|
+
- In testcurs, the way the ACS test was written, it would really only
|
|
2488
|
+
work with a) PDCurses (with any compiler), or b) gcc (with any
|
|
2489
|
+
curses). Here's a more portable implementation.
|
|
2490
|
+
|
|
2491
|
+
- Better reporting of mouse events in testcurs.
|
|
2492
|
+
|
|
2493
|
+
- Blank out buffer and num before the scanw() test in testcurs, in case
|
|
2494
|
+
the user just hits enter or etc.; clear the screen after resizing.
|
|
2495
|
+
|
|
2496
|
+
- Allow tuidemo to use the last line.
|
|
2497
|
+
|
|
2498
|
+
- Separate left/right modifier keys are now reported properly in Win32.
|
|
2499
|
+
(Everything was being reported as _R.)
|
|
2500
|
+
|
|
2501
|
+
- Attempts to redirect input in Win32 now cause program exit and an
|
|
2502
|
+
error message, instead of hanging.
|
|
2503
|
+
|
|
2504
|
+
- Dropped support for the Microway NDP compiler.
|
|
2505
|
+
|
|
2506
|
+
- Some modules renamed, rearranged.
|
|
2507
|
+
|
|
2508
|
+
- Fixes for errors and warnings when building with Visual C++ 2005.
|
|
2509
|
+
|
|
2510
|
+
- In MSVC, the panel library didn't work with the DLL.
|
|
2511
|
+
|
|
2512
|
+
- Complete export lists for DLLs.
|
|
2513
|
+
|
|
2514
|
+
- Simplified makefiles; moved common elements to .mif files; better
|
|
2515
|
+
optimization; strip demos when possible.
|
|
2516
|
+
|
|
2517
|
+
- Changed makefile targets of "pdcurses.a/lib" and "panel.a/lib" to
|
|
2518
|
+
$(LIBCURSES) and $(LIBPANEL). Suggestion of Doug Kaufman.
|
|
2519
|
+
|
|
2520
|
+
- Changed "install" target in the makefile to a double-colon rule, to
|
|
2521
|
+
get around a conflict with INSTALL on non-case-sensitive filesystems,
|
|
2522
|
+
such as Mac OS X's HFS+. Reported by Douglas Godfrey et al.
|
|
2523
|
+
|
|
2524
|
+
- Make PDCurses.man dependent on manext. Suggestion of Tiziano Mueller.
|
|
2525
|
+
|
|
2526
|
+
- Set up configure.ac so autoheader works; removed some obsolescent
|
|
2527
|
+
macros. Partly the suggestion of T.M.
|
|
2528
|
+
|
|
2529
|
+
- The X11 port now builds in the x11 directory (including the demos), as
|
|
2530
|
+
with other ports.
|
|
2531
|
+
|
|
2532
|
+
- The X11 port should now build on more 64-bit systems. Partly due to
|
|
2533
|
+
M.H.
|
|
2534
|
+
|
|
2535
|
+
- The default window title and icons for the X11 port are now "PDCurses"
|
|
2536
|
+
instead of "XCurses".
|
|
2537
|
+
|
|
2538
|
+
- Internal functions and variables made static where possible.
|
|
2539
|
+
|
|
2540
|
+
- Adopted a somewhat more consistent naming style: Internal functions
|
|
2541
|
+
with external linkage, and only those, have the prefix "PDC_";
|
|
2542
|
+
external variables that aren't part of the API use "pdc_"; static
|
|
2543
|
+
functions use "_"; and "XC_" and "xc_" prefixes are used for functions
|
|
2544
|
+
and variables, respectively, that are shared between both processes in
|
|
2545
|
+
the X11 port. Also eliminated camel casing, where possible.
|
|
2546
|
+
|
|
2547
|
+
- Changed the encoding for non-ASCII characters in comments and
|
|
2548
|
+
documentation from Latin-1 to UTF-8.
|
|
2549
|
+
|
|
2550
|
+
------------------------------------------------------------------------
|
|
2551
|
+
|
|
2552
|
+
PDCurses 2.8 - 2006-04-01
|
|
2553
|
+
=========================
|
|
2554
|
+
|
|
2555
|
+
As with the previous version, you should assume that apps linked against
|
|
2556
|
+
older dynamic versions of the library won't work with this one until
|
|
2557
|
+
recompiled.
|
|
2558
|
+
|
|
2559
|
+
New features:
|
|
2560
|
+
|
|
2561
|
+
- Simpler, faster.
|
|
2562
|
+
|
|
2563
|
+
- Declarations for all supported, standard functions, per the X/Open
|
|
2564
|
+
Curses 4.2 spec, with the notable exception of getch() and ungetch().
|
|
2565
|
+
You can disable the use of the macro versions by defining NOMACROS
|
|
2566
|
+
before including curses.h (see xmas.c for an example). NOMACROS yields
|
|
2567
|
+
smaller but theoretically slower executables.
|
|
2568
|
+
|
|
2569
|
+
- New functions: vwprintw(), vwscanw(), vw_printw() and vw_scanw(). This
|
|
2570
|
+
completes the list of X/Open 4.2 functions, except for those concerned
|
|
2571
|
+
with attr_t and wide characters. Some (especially the terminfo/termcap
|
|
2572
|
+
functions) aren't yet fully fleshed out, though.
|
|
2573
|
+
|
|
2574
|
+
- Non-macro implementations for COLOR_PAIR(), PAIR_NUMBER(), getbkgd(),
|
|
2575
|
+
mvgetnstr(), mvwgetnstr(), mvhline(), mvvline(), mvwhline(), and
|
|
2576
|
+
mvwvline(). (The macros are still available, too.)
|
|
2577
|
+
|
|
2578
|
+
- newterm() works now, in a limited way -- the parameters are ignored,
|
|
2579
|
+
and only the first invocation will work (i.e., only one SCREEN can be
|
|
2580
|
+
used).
|
|
2581
|
+
|
|
2582
|
+
- start_color() works now -- which is to say, if you _don't_ call it,
|
|
2583
|
+
you'll only get monochrome output. Also, without calling it, the
|
|
2584
|
+
terminal's default colors will be used, where supported (currently
|
|
2585
|
+
only in Win32). This is equivalent to the PDC_ORIGINAL_COLORS behavior
|
|
2586
|
+
introduced in 2.7, except that _only_ the default colors will be used.
|
|
2587
|
+
(PDC_ORIGINAL_COLORS is still available, if you want to combine the
|
|
2588
|
+
use of specific colors and the default colors.)
|
|
2589
|
+
|
|
2590
|
+
- New logic for termname() and longname(): termname() always returns
|
|
2591
|
+
"pdcurses"; longname() returns "PDCurses for [platform] [adapter]
|
|
2592
|
+
[COLOR/MONO]-YxX" (adapter is only defined for DOS and OS/2). This is
|
|
2593
|
+
the first time these functions return _anything_ in Win32.
|
|
2594
|
+
|
|
2595
|
+
- New installation method for XCurses: the header files are placed in a
|
|
2596
|
+
subdirectory "xcurses" within the include directory, rather than being
|
|
2597
|
+
renamed. (But the renamed xcurses.h and xpanel.h are also installed,
|
|
2598
|
+
for backwards compatibility.) curspriv.h and term.h are now available,
|
|
2599
|
+
and existing curses-based code need no longer be edited to use
|
|
2600
|
+
XCurses' curses.h. And with no more need for explicit XCursesExit()
|
|
2601
|
+
calls (see below), your code need not be changed at all to move from
|
|
2602
|
+
another curses implementation to XCurses. It can be as simple as "gcc
|
|
2603
|
+
-I/usr/local/include/xcurses -lXCurses -oprogname progname.c".
|
|
2604
|
+
|
|
2605
|
+
- Combined readme.* into this HISTORY file, and incorporated the old 1.x
|
|
2606
|
+
(PCcurses) history.
|
|
2607
|
+
|
|
2608
|
+
- New functionality for the testcurs demo: ACS character display; menu
|
|
2609
|
+
support for PgUp, PgDn, Home and End; centered menu; and it can now
|
|
2610
|
+
be resized in X.
|
|
2611
|
+
|
|
2612
|
+
- Added modified versions of the rain and worm demos from ncurses.
|
|
2613
|
+
|
|
2614
|
+
Bug fixes and such:
|
|
2615
|
+
|
|
2616
|
+
- Big cleanup of dead and redundant code, including unneeded defines,
|
|
2617
|
+
ifdefs, and structure elements.
|
|
2618
|
+
|
|
2619
|
+
- flushinp() was not implemented for Win32.
|
|
2620
|
+
|
|
2621
|
+
- resetty() was not restoring LINES and COLS.
|
|
2622
|
+
|
|
2623
|
+
- nonl() made '\n' print a line feed without carriage return. This was
|
|
2624
|
+
incorrect.
|
|
2625
|
+
|
|
2626
|
+
- Removed bogus implementation of intrflush().
|
|
2627
|
+
|
|
2628
|
+
- The line-breakout optimization system, disabled by default in 2.7, is
|
|
2629
|
+
removed in 2.8. It simply didn't work, and never has. (The typeahead()
|
|
2630
|
+
function remains, for compatibility, but does nothing.)
|
|
2631
|
+
|
|
2632
|
+
- The declarations for the printw() and scanw() function families were
|
|
2633
|
+
erroneously ifdef'd.
|
|
2634
|
+
|
|
2635
|
+
- Safer printw() calls on platforms that support vsnprintf().
|
|
2636
|
+
|
|
2637
|
+
- Use the native vsscanf() in DJGPP, MinGW and Cygwin.
|
|
2638
|
+
|
|
2639
|
+
- ACS_BLOCK now works in X.
|
|
2640
|
+
|
|
2641
|
+
- Explicit calls to XCursesExit() are no longer needed.
|
|
2642
|
+
|
|
2643
|
+
- XCURSES is now defined automatically if not DOS, OS2 or WIN32.
|
|
2644
|
+
|
|
2645
|
+
- The default icon for XCurses wasn't working (had to remove the focus
|
|
2646
|
+
hint code to fix this). Also, the default title is now "XCurses"
|
|
2647
|
+
instead of "main".
|
|
2648
|
+
|
|
2649
|
+
- Incorrect dimensions (undercounting by two in each direction) were
|
|
2650
|
+
shown while resizing in X.
|
|
2651
|
+
|
|
2652
|
+
- Scroll wheel events were not always correctly reported in X.
|
|
2653
|
+
|
|
2654
|
+
- 32 bits are enough for the "long" chtype, but 64 bits were used on a
|
|
2655
|
+
64-bit system, wasting memory. Now conditioned on _LP64. This could be
|
|
2656
|
+
faster, too.
|
|
2657
|
+
|
|
2658
|
+
- The short, 16-bit chtype now works with XCurses.
|
|
2659
|
+
|
|
2660
|
+
- Corrected return value for is_linetouched(), is_wintouched(),
|
|
2661
|
+
can_change_color() and isendwin() (bool instead of int).
|
|
2662
|
+
|
|
2663
|
+
- timeout(), wtimeout(), idcok() and immedok() return void.
|
|
2664
|
+
|
|
2665
|
+
- pair_content() takes a short.
|
|
2666
|
+
|
|
2667
|
+
- Replaced incorrect usages of attr_t with chtype. attr_t is still
|
|
2668
|
+
typedef'd, for backwards compatibility. (It's supposed to be used for
|
|
2669
|
+
the WA_*-style functions, which PDCurses doesn't yet support.)
|
|
2670
|
+
|
|
2671
|
+
- Added const where required by the spec, and in other appropriate
|
|
2672
|
+
places.
|
|
2673
|
+
|
|
2674
|
+
- Removed PDC_usleep(). napms() is now the core delay routine.
|
|
2675
|
+
|
|
2676
|
+
- Fixed poll() support in napms().
|
|
2677
|
+
|
|
2678
|
+
- Various changes to the internal PDC_* functions -- don't depend on
|
|
2679
|
+
these, and don't use them unless you absolutely have to.
|
|
2680
|
+
|
|
2681
|
+
- Some routines accessed window structures in their variable
|
|
2682
|
+
declarations, _before_ checking for a NULL window pointer.
|
|
2683
|
+
|
|
2684
|
+
- Dropped support for the undocumented PDC_FULL_DISPLAY, wtitle(), and
|
|
2685
|
+
PDC_print().
|
|
2686
|
+
|
|
2687
|
+
- Cleaned up remaining warnings.
|
|
2688
|
+
|
|
2689
|
+
- Reduced unnecessary #include directives -- speeds up compilation.
|
|
2690
|
+
|
|
2691
|
+
- Fix for demos build in Borland/DOS -- the makefile in 2.7 didn't
|
|
2692
|
+
specify the memory model. Reported by Erwin Waterlander.
|
|
2693
|
+
|
|
2694
|
+
- Simplified the makefiles; e.g., some now build each demo in a single
|
|
2695
|
+
step, and Watcom no longer uses demos.lnk. Also, the demo exes are now
|
|
2696
|
+
stripped when possible; maximum compression used for archives built
|
|
2697
|
+
by the makefiles; xcurses-config removed as part of "make distclean";
|
|
2698
|
+
and I tweaked optimization for some platforms.
|
|
2699
|
+
|
|
2700
|
+
- Reverted to /usr/local/ as default installation directory for XCurses.
|
|
2701
|
+
|
|
2702
|
+
- Upgraded to autoconf 2.59... instantly doubling the size of the
|
|
2703
|
+
configure script. Ah well. Otherwise, simplified the build system.
|
|
2704
|
+
|
|
2705
|
+
- Dropped support for pre-ANSI compilers. (It hasn't worked since at
|
|
2706
|
+
least version 2.4, anyway.)
|
|
2707
|
+
|
|
2708
|
+
- Revised and, I hope, clarified the boilerplate and other comments.
|
|
2709
|
+
|
|
2710
|
+
- Simplified logging and RCS ids; added RCS ids where missing.
|
|
2711
|
+
|
|
2712
|
+
- Consistent formatting for all code, approximately equivalent to
|
|
2713
|
+
"indent -kr -i8 -bl -bli0", with adjustments for 80 columns.
|
|
2714
|
+
|
|
2715
|
+
------------------------------------------------------------------------
|
|
2716
|
+
|
|
2717
|
+
PDCurses 2.7 - 2005-12-30
|
|
2718
|
+
=========================
|
|
2719
|
+
|
|
2720
|
+
INTRODUCTION:
|
|
2721
|
+
|
|
2722
|
+
Hello all. As of a few weeks ago, I'm the new maintainer for PDCurses.
|
|
2723
|
+
Here's a brief summary of changes in this release. (More details are
|
|
2724
|
+
available in the CVS log and trackers on SourceForge.)
|
|
2725
|
+
|
|
2726
|
+
NEW FEATURES:
|
|
2727
|
+
|
|
2728
|
+
- Functions: delscreen(), getattrs(), has_key(), slk_color(),
|
|
2729
|
+
wcolor_set(), wtimeout().
|
|
2730
|
+
|
|
2731
|
+
- Macros: color_set(), mvhline(), mvvline(), mvwgetnstr(), mvwhline(),
|
|
2732
|
+
mvwvline(), timeout(), wresize().
|
|
2733
|
+
|
|
2734
|
+
- Stub implementations of terminfo functions (including a term.h).
|
|
2735
|
+
|
|
2736
|
+
- More stubs for compatibility: filter(), getwin(), putwin(),
|
|
2737
|
+
noqiflush(), qiflush(), scr_dump(), scr_init(), scr_restore(),
|
|
2738
|
+
scr_set(), use_env(), vidattr(), vidputs().
|
|
2739
|
+
|
|
2740
|
+
- The terminal's default colors are used as curses' default colors when
|
|
2741
|
+
the environment variable "PDC_ORIGINAL_COLORS" is set to any value
|
|
2742
|
+
(Win32 only at the moment).
|
|
2743
|
+
|
|
2744
|
+
- Simplified build system.
|
|
2745
|
+
|
|
2746
|
+
- Replaced PDC_STATIC_BUILD with its opposite, PDC_DLL_BUILD (see .mak
|
|
2747
|
+
files for more info).
|
|
2748
|
+
|
|
2749
|
+
- Minimal implementation of color_content() -- no longer a stub.
|
|
2750
|
+
|
|
2751
|
+
- Added the remaining ACS defines (ACS_S3, ACS_BBSS, etc.) for
|
|
2752
|
+
DOS/OS2/Win; "enhanced" versions of existing ACS characters used.
|
|
2753
|
+
|
|
2754
|
+
- Support for scroll wheels.
|
|
2755
|
+
|
|
2756
|
+
- Support for Pacific C.
|
|
2757
|
+
|
|
2758
|
+
BUGS FIXED:
|
|
2759
|
+
|
|
2760
|
+
- Builds correctly (including demos) on all tested platforms (see
|
|
2761
|
+
below); nearly all compiler warnings have been cleaned up; the ptest
|
|
2762
|
+
demo is built on all platforms; "clean" targets are improved.
|
|
2763
|
+
|
|
2764
|
+
- The ability to build ncurses_tests has been restored (see demos dir).
|
|
2765
|
+
|
|
2766
|
+
- Line-breakout optimization now defaults to off (equivalent to
|
|
2767
|
+
"typeahead(-1)"), so output is not interrupted by keystrokes (it's
|
|
2768
|
+
supposed to resume on the next refresh(), which wasn't working).
|
|
2769
|
+
|
|
2770
|
+
- Implicit wrefresh() in wgetch() was not being invoked in nodelay mode.
|
|
2771
|
+
|
|
2772
|
+
- subpad() was erroneously offsetting from the origin coordinates of the
|
|
2773
|
+
parent pad (which are always -1,-1).
|
|
2774
|
+
|
|
2775
|
+
- In wborder(), whline(), and wvline(), the current (wattrset) attribute
|
|
2776
|
+
was being used, but not the current background (wbkgd).
|
|
2777
|
+
|
|
2778
|
+
- Allow Russian 'r' character ASCII 0xe0 to be returned.
|
|
2779
|
+
|
|
2780
|
+
- termattrs() now also returns A_UNDERLINE, A_REVERSE.
|
|
2781
|
+
|
|
2782
|
+
- In Win32, with large scrollback buffers set, there was an unwanted
|
|
2783
|
+
"scrollup" effect on startup.
|
|
2784
|
+
|
|
2785
|
+
- Revamped keyboard handling for Win32.
|
|
2786
|
+
|
|
2787
|
+
- New screen resize method for Win32.
|
|
2788
|
+
|
|
2789
|
+
- napms(), delay_output(), etc. now work with Cygwin.
|
|
2790
|
+
|
|
2791
|
+
- curs_set(0) wasn't working in Win32 in full-screen (ALT-ENTER) mode --
|
|
2792
|
+
the cursor stayed on.
|
|
2793
|
+
|
|
2794
|
+
- The A_REVERSE attribute was broken in XCurses.
|
|
2795
|
+
|
|
2796
|
+
- On 64-bit systems, XCurses was ignoring every other keystroke.
|
|
2797
|
+
|
|
2798
|
+
- Added focus hints for XCurses.
|
|
2799
|
+
|
|
2800
|
+
- Demos (except for tuidemo) once again have their proper titles in
|
|
2801
|
+
XCurses (using Xinitscr() instead of the obsolete XCursesProgramName).
|
|
2802
|
+
|
|
2803
|
+
- The 16-bit chtype is a working option again (by removing #define
|
|
2804
|
+
CHTYPE_LONG from curses.h), except in XCurses. It's not recommended;
|
|
2805
|
+
but if your needs are limited, it still works.
|
|
2806
|
+
|
|
2807
|
+
- Reset screen size in resetty() under DOS, as in Win32 and OS/2.
|
|
2808
|
+
|
|
2809
|
+
- Changes for cursor size under DOS.
|
|
2810
|
+
|
|
2811
|
+
- Automatic setting of BIOS mode for CGA under DOS now works.
|
|
2812
|
+
|
|
2813
|
+
- The cursor is now always updated in PDC_gotoxy(); this fixes the
|
|
2814
|
+
problem of missing characters in BIOS mode.
|
|
2815
|
+
|
|
2816
|
+
- Macros nocbreak(), cbreak(), nocrmode(), crmode(), nodelay(),
|
|
2817
|
+
nl() and nonl() now return OK.
|
|
2818
|
+
|
|
2819
|
+
- ERR and OK are now defined as -1 and 0, respectively, for
|
|
2820
|
+
compatibility with other curses implementations -- note that this
|
|
2821
|
+
change is not binary compatible; you'll have to rebuild programs that
|
|
2822
|
+
use shared/dynamic libraries.
|
|
2823
|
+
|
|
2824
|
+
- Added "const" to prototypes where appropriate.
|
|
2825
|
+
|
|
2826
|
+
- Miscellaneous code cleanup.
|
|
2827
|
+
|
|
2828
|
+
ACKNOWLEDGEMENTS:
|
|
2829
|
+
|
|
2830
|
+
- Walter Briscoe
|
|
2831
|
+
- Jean-Pierre Demailly
|
|
2832
|
+
- Ruslan Fedyarov
|
|
2833
|
+
- Warren Gay
|
|
2834
|
+
- Florian Grosse-Coosmann
|
|
2835
|
+
- Vladimir Kokovic
|
|
2836
|
+
- Matt Maloy
|
|
2837
|
+
- K.H. Man
|
|
2838
|
+
- Michael Ryazanov
|
|
2839
|
+
- Ron Thibodeau
|
|
2840
|
+
- Alexandr Zamaraev
|
|
2841
|
+
|
|
2842
|
+
and of course, MARK HESSLING, for his over 13 years of service as the
|
|
2843
|
+
maintainer of PDCurses. Plus, thanks to all who've reported bugs or
|
|
2844
|
+
requested features. Apologies to anyone I've forgotten.
|
|
2845
|
+
|
|
2846
|
+
I've tested this version on Turbo C++ 3.0 and Borland C++ 3.1 for DOS;
|
|
2847
|
+
DJGPP 2.X; Open Watcom 1.3 for DOS (16 and 32-bit), Windows and OS/2;
|
|
2848
|
+
EMX 0.9d and the "newgcc" version of EMX; Borland C++ 5.5 for Windows;
|
|
2849
|
+
recent versions of MinGW, Cygwin, LCC-Win32 and Microsoft Visual C++;
|
|
2850
|
+
and gcc under several flavors of Linux, Mac OS X, *BSD and Solaris.
|
|
2851
|
+
|
|
2852
|
+
-- William McBrine
|
|
2853
|
+
|
|
2854
|
+
------------------------------------------------------------------------
|
|
2855
|
+
|
|
2856
|
+
PDCurses 2.6 - 2003-01-08
|
|
2857
|
+
=========================
|
|
2858
|
+
|
|
2859
|
+
INTRODUCTION:
|
|
2860
|
+
|
|
2861
|
+
This release of PDCurses includes the following changes:
|
|
2862
|
+
|
|
2863
|
+
BUGS FIXED:
|
|
2864
|
+
|
|
2865
|
+
- Allow accented characters on Win32 platform when run on non-English
|
|
2866
|
+
keyboards.
|
|
2867
|
+
|
|
2868
|
+
- Allow "special" characters like Ctrl-S, Ctrl-Q under OS/2 to be returned.
|
|
2869
|
+
|
|
2870
|
+
- Some bugs with halfdelay() fixed by William McBrine.
|
|
2871
|
+
|
|
2872
|
+
- pechochar() should now work correctly.
|
|
2873
|
+
|
|
2874
|
+
- redrawwin() macro in curses.h was incorrect - fixed by Alberto Ornaghi
|
|
2875
|
+
|
|
2876
|
+
- Don't include "special" characters like KEY_SHIFT_L to be returned in
|
|
2877
|
+
getnstr() family. Bug 542913
|
|
2878
|
+
|
|
2879
|
+
- Entering TAB in wgetnstr() no longer exceeds requested buffer size.
|
|
2880
|
+
Bug 489233
|
|
2881
|
+
|
|
2882
|
+
- Fixed bug 550066, scrollok() and pads.
|
|
2883
|
+
Also beep() called when buffer exceeded. Bug 562041.
|
|
2884
|
+
|
|
2885
|
+
- Reverse video of X11 selection reinstated. Pablo Garcia Abio??
|
|
2886
|
+
|
|
2887
|
+
- Right Alt modifier now works like left Alt modifier under Win32
|
|
2888
|
+
|
|
2889
|
+
- Add support for all libXaw replacement libraries with Scrollbar bug.
|
|
2890
|
+
Note that for this to work, you still have to change the libXaw
|
|
2891
|
+
replacement libraries to fix the bug :-(
|
|
2892
|
+
|
|
2893
|
+
- Don't trap signals in XCurses if calling application has ignored them.
|
|
2894
|
+
Change by Frank Heckenbach.
|
|
2895
|
+
|
|
2896
|
+
- Bug reports from Warren W. Gay:
|
|
2897
|
+
- Fix termattrs() to return A_REVERSE and A_BLINK on all platforms.
|
|
2898
|
+
- Fix definition of getsyx() and setsyx() to be consistent with
|
|
2899
|
+
ncurses. Bug 624424.
|
|
2900
|
+
- Fix definition of echo() and noecho(). Bug 625001.
|
|
2901
|
+
- Fix definition of keypad() and leaveok(). Bug 632653.
|
|
2902
|
+
- Missing panel_hidden() prototype. Bug 649320.
|
|
2903
|
+
|
|
2904
|
+
- Fixed bug with calling def_prog_mode(), resize_term(),
|
|
2905
|
+
reset_prog_mode(); the resize details were being lost.
|
|
2906
|
+
|
|
2907
|
+
NEW FEATURES:
|
|
2908
|
+
|
|
2909
|
+
- Clipboard support now available on DOS platform, but handled
|
|
2910
|
+
internally to the currently running process.
|
|
2911
|
+
|
|
2912
|
+
- New X11 resource: textCursor, allows the text cursor to be specified
|
|
2913
|
+
as a vertical bar, or the standard horizontal bar. Thanks to Frank
|
|
2914
|
+
Heckenbach for the suggestion.
|
|
2915
|
+
|
|
2916
|
+
NEW COMPILER SUPPORT:
|
|
2917
|
+
|
|
2918
|
+
- lcc-win32 now works correctly
|
|
2919
|
+
|
|
2920
|
+
------------------------------------------------------------------------
|
|
2921
|
+
|
|
2922
|
+
PDCurses 2.5 - 2001-11-26
|
|
2923
|
+
=========================
|
|
2924
|
+
|
|
2925
|
+
INTRODUCTION:
|
|
2926
|
+
|
|
2927
|
+
This release of PDCurses includes the following changes:
|
|
2928
|
+
|
|
2929
|
+
- Set BASE address for Win32 DLL
|
|
2930
|
+
|
|
2931
|
+
- Add KEY_SUP and KEY_SDOWN.
|
|
2932
|
+
|
|
2933
|
+
- Add PDC_set_line_color()
|
|
2934
|
+
|
|
2935
|
+
- Add blink support as bold background
|
|
2936
|
+
|
|
2937
|
+
- Add bold colors
|
|
2938
|
+
|
|
2939
|
+
- Add getbkgd() macro
|
|
2940
|
+
|
|
2941
|
+
- Add new PDC functions for adding underline, overline, leftline and
|
|
2942
|
+
rightline
|
|
2943
|
+
|
|
2944
|
+
- Add support for shifted keypad keys.
|
|
2945
|
+
|
|
2946
|
+
- Allow more keypad keys to work under Win32
|
|
2947
|
+
|
|
2948
|
+
- Change Win32 and OS/2 DLL name to curses.dll
|
|
2949
|
+
|
|
2950
|
+
- Change example resources to allow overriding from the command line
|
|
2951
|
+
|
|
2952
|
+
- Changes for building cleanly on OS/2
|
|
2953
|
+
|
|
2954
|
+
- Changes to handle building XCurses under AIX
|
|
2955
|
+
|
|
2956
|
+
- Check if prefresh() and pnoutrefresh() parameters are valid.
|
|
2957
|
+
|
|
2958
|
+
- Ensure build/install works from any directory
|
|
2959
|
+
|
|
2960
|
+
- Handle platforms where X11 headers do not typedef XPointer.
|
|
2961
|
+
|
|
2962
|
+
- Mention that Flexos is likely out-of-date.
|
|
2963
|
+
|
|
2964
|
+
- Pass delaytenths to XCurses_rawgetch()
|
|
2965
|
+
|
|
2966
|
+
- Remove boldFont
|
|
2967
|
+
|
|
2968
|
+
- Updates for cursor blinking and italic.
|
|
2969
|
+
|
|
2970
|
+
BUGS FIXED:
|
|
2971
|
+
|
|
2972
|
+
- Fix bug with getting Win32 clipboard contents. Added new
|
|
2973
|
+
PDC_freeclipboard() function.
|
|
2974
|
+
|
|
2975
|
+
- Fix bug with halfdelay()
|
|
2976
|
+
|
|
2977
|
+
- Fix bug with mouse interrupting programs that are not trapping mouse
|
|
2978
|
+
events under Win32.
|
|
2979
|
+
|
|
2980
|
+
- Fix return value from curs_set()
|
|
2981
|
+
|
|
2982
|
+
- Reverse the left and right pointing bars in ALT_CHARSET
|
|
2983
|
+
|
|
2984
|
+
NEW COMPILER SUPPORT:
|
|
2985
|
+
|
|
2986
|
+
- Add QNX-RTP port
|
|
2987
|
+
|
|
2988
|
+
------------------------------------------------------------------------
|
|
2989
|
+
|
|
2990
|
+
PDCurses 2.4 - 2000-01-17
|
|
2991
|
+
=========================
|
|
2992
|
+
|
|
2993
|
+
INTRODUCTION:
|
|
2994
|
+
|
|
2995
|
+
This release of PDCurses includes the following changes:
|
|
2996
|
+
|
|
2997
|
+
- full support of X11 selection handling
|
|
2998
|
+
|
|
2999
|
+
- removed the need for the cursos2.h file
|
|
3000
|
+
|
|
3001
|
+
- enabled the "shifted" key on the numeric keypad
|
|
3002
|
+
|
|
3003
|
+
- added native clipboard support for X11, Win32 and OS/2
|
|
3004
|
+
|
|
3005
|
+
- added extra functions for obtaining internal PDCurses status
|
|
3006
|
+
|
|
3007
|
+
- added clipboard and key modifier tests in testcurs.c
|
|
3008
|
+
|
|
3009
|
+
- fixes for panel library
|
|
3010
|
+
|
|
3011
|
+
- key modifiers pressed by themselves are now returned as keys:
|
|
3012
|
+
KEY_SHIFT_L KEY_SHIFT_R KEY_CONTROL_L KEY_CONTROL_R KEY_ALT_L KEY_ALT_R
|
|
3013
|
+
This works on Win32 and X11 ports only
|
|
3014
|
+
|
|
3015
|
+
- Added X11 shared library support
|
|
3016
|
+
|
|
3017
|
+
- Added extra slk formats supported by ncurses
|
|
3018
|
+
|
|
3019
|
+
- Fixed bug with resizing the terminal when slk were on.
|
|
3020
|
+
|
|
3021
|
+
- Changed behavior of slk_attrset(), slk_attron() slk_attroff()
|
|
3022
|
+
functions to work more like ncurses.
|
|
3023
|
+
|
|
3024
|
+
BUGS FIXED:
|
|
3025
|
+
|
|
3026
|
+
- some minor bug and portability fixes were included in this release
|
|
3027
|
+
|
|
3028
|
+
NEW FUNCTIONS:
|
|
3029
|
+
|
|
3030
|
+
- PDC_getclipboard() and PDC_setclipboard() for accessing the native
|
|
3031
|
+
clipboard (X11, Win32 and OS/2)
|
|
3032
|
+
|
|
3033
|
+
- PDC_set_title() for setting the title of the window (X11 and Win32
|
|
3034
|
+
only)
|
|
3035
|
+
|
|
3036
|
+
- PDC_get_input_fd() for getting the file handle of the PDCurses input
|
|
3037
|
+
|
|
3038
|
+
- PDC_get_key_modifiers() for getting the keyboard modifier settings at
|
|
3039
|
+
the time of the last (w)getch()
|
|
3040
|
+
|
|
3041
|
+
- Xinitscr() (only for X11 port) which allows standard X11 switches to
|
|
3042
|
+
be passed to the application
|
|
3043
|
+
|
|
3044
|
+
NEW COMPILER SUPPORT:
|
|
3045
|
+
|
|
3046
|
+
- MingW32 GNU compiler under Win95/NT
|
|
3047
|
+
|
|
3048
|
+
- Cygnus Win32 GNU compiler under Win95/NT
|
|
3049
|
+
|
|
3050
|
+
- Borland C++ for OS/2 1.0+
|
|
3051
|
+
|
|
3052
|
+
- lcc-win32 compiler under Win95/NT
|
|
3053
|
+
|
|
3054
|
+
ACKNOWLEDGEMENTS: (for this release)
|
|
3055
|
+
|
|
3056
|
+
- Georg Fuchs for various changes.
|
|
3057
|
+
- Juan David Palomar for pointing out getnstr() was not implemented.
|
|
3058
|
+
- William McBrine for fix to allow black/black as valid color pair.
|
|
3059
|
+
- Peter Preus for pointing out the missing bccos2.mak file.
|
|
3060
|
+
- Laura Michaels for a couple of bug fixes and changes required to
|
|
3061
|
+
support Mingw32 compiler.
|
|
3062
|
+
- Frank Heckenbach for PDC_get_input_fd() and some portability fixes and
|
|
3063
|
+
the fixes for panel library.
|
|
3064
|
+
- Matthias Burian for the lcc-win32 compiler support.
|
|
3065
|
+
|
|
3066
|
+
------------------------------------------------------------------------
|
|
3067
|
+
|
|
3068
|
+
PDCurses 2.3 - 1998-07-09
|
|
3069
|
+
=========================
|
|
3070
|
+
|
|
3071
|
+
INTRODUCTION:
|
|
3072
|
+
|
|
3073
|
+
This release of PDCurses includes the following changes:
|
|
3074
|
+
|
|
3075
|
+
- added more System V R4 functions
|
|
3076
|
+
|
|
3077
|
+
- added Win32 port
|
|
3078
|
+
|
|
3079
|
+
- the X11 port is now fully functional
|
|
3080
|
+
|
|
3081
|
+
- the MS Visual C++ Win32 port now includes a DLL
|
|
3082
|
+
|
|
3083
|
+
- both the X11 and Win32 ports support the mouse
|
|
3084
|
+
|
|
3085
|
+
- the slk..() functions are now functional
|
|
3086
|
+
|
|
3087
|
+
- support for scrollbars under X11 are experimental at this stage
|
|
3088
|
+
|
|
3089
|
+
- long chtype extended to non-Unix ports
|
|
3090
|
+
|
|
3091
|
+
The name of the statically built library is pdcurses.lib (or
|
|
3092
|
+
pdcurses.a). The name of the DLL import library (where applicable) is
|
|
3093
|
+
curses.lib.
|
|
3094
|
+
|
|
3095
|
+
BUGS FIXED:
|
|
3096
|
+
|
|
3097
|
+
- some minor bugs were corrected in this release
|
|
3098
|
+
|
|
3099
|
+
NEW FUNCTIONS:
|
|
3100
|
+
|
|
3101
|
+
- slk..() functions
|
|
3102
|
+
|
|
3103
|
+
NEW COMPILER SUPPORT:
|
|
3104
|
+
|
|
3105
|
+
- MS Visual C++ under Win95/NT
|
|
3106
|
+
|
|
3107
|
+
- Watcom C++ under OS/2, Win32 and DOS
|
|
3108
|
+
|
|
3109
|
+
- two EMX ports have been provided:
|
|
3110
|
+
- OS/2 only using OS/2 APIs
|
|
3111
|
+
- OS/2 and DOS using EMX video support routines
|
|
3112
|
+
|
|
3113
|
+
EXTRA OPTIONS:
|
|
3114
|
+
|
|
3115
|
+
PDCurses recognizes two environment variables which determines the
|
|
3116
|
+
initialization and finalization behavior. These environment variables
|
|
3117
|
+
do not apply to the X11 port.
|
|
3118
|
+
|
|
3119
|
+
PDC_PRESERVE_SCREEN -
|
|
3120
|
+
If this environment variable is set, PDCurses will not clear the screen
|
|
3121
|
+
to the default white on black on startup. This allows you to overlay
|
|
3122
|
+
a window over the top of the existing screen background.
|
|
3123
|
+
|
|
3124
|
+
PDC_RESTORE_SCREEN -
|
|
3125
|
+
If this environment variable is set, PDCurses will take a copy of the
|
|
3126
|
+
contents of the screen at the time that PDCurses is started; initscr(),
|
|
3127
|
+
and when endwin() is called, the screen will be restored.
|
|
3128
|
+
|
|
3129
|
+
|
|
3130
|
+
ACKNOWLEDGEMENTS: (for this release)
|
|
3131
|
+
|
|
3132
|
+
- Chris Szurgot for original Win32 port.
|
|
3133
|
+
- Gurusamy Sarathy for some updates to the Win32 port.
|
|
3134
|
+
- Kim Huron for the slk..() functions.
|
|
3135
|
+
- Florian Grosse Coosmann for some bug fixes.
|
|
3136
|
+
- Esa Peuha for reducing compiler warnings.
|
|
3137
|
+
- Augustin Martin Domingo for patches to X11 port to enable accented
|
|
3138
|
+
characters.
|
|
3139
|
+
|
|
3140
|
+
------------------------------------------------------------------------
|
|
3141
|
+
|
|
3142
|
+
PDCurses 2.2 - 1995-02-12
|
|
3143
|
+
=========================
|
|
3144
|
+
|
|
3145
|
+
INTRODUCTION:
|
|
3146
|
+
|
|
3147
|
+
This release of PDCurses has includes a number of major changes:
|
|
3148
|
+
|
|
3149
|
+
- The portable library functions are now grouped together into single
|
|
3150
|
+
files with the same arrangement as System V R4 curses.
|
|
3151
|
+
|
|
3152
|
+
- A panels library has been included. This panels library was written by
|
|
3153
|
+
Warren Tucker.
|
|
3154
|
+
|
|
3155
|
+
- Quite a few more functions have been supplied by Wade Schauer and
|
|
3156
|
+
incorporated into release 2.2. Wade also supplied the support for the
|
|
3157
|
+
Microway NDP C/C++ 32 bit DOS compiler.
|
|
3158
|
+
|
|
3159
|
+
- The curses datatype has been changed from an unsigned int to a long.
|
|
3160
|
+
This allows more attributes to be stored as well as increasing the
|
|
3161
|
+
number of color-pairs from 32 to 64.
|
|
3162
|
+
|
|
3163
|
+
- Xwindows port (experimental at the moment).
|
|
3164
|
+
|
|
3165
|
+
BUGS FIXED:
|
|
3166
|
+
|
|
3167
|
+
- mvwin() checked the wrong coordinates
|
|
3168
|
+
|
|
3169
|
+
- removed DESQview shadow memory buffer checking bug in curses.h in
|
|
3170
|
+
\#define for wstandout()
|
|
3171
|
+
|
|
3172
|
+
- lots of others I can't remember
|
|
3173
|
+
|
|
3174
|
+
NEW FUNCTIONS:
|
|
3175
|
+
|
|
3176
|
+
- Too many to mention. See intro.man for a complete list of the
|
|
3177
|
+
functions PDCurses now supports.
|
|
3178
|
+
|
|
3179
|
+
COMPILER SUPPORT:
|
|
3180
|
+
|
|
3181
|
+
- DJGPP 1.12 is now supported. The run-time error that caused programs
|
|
3182
|
+
to crash has been removed.
|
|
3183
|
+
|
|
3184
|
+
- emx 0.9a is supported. A program compiled for OS/2 should also work
|
|
3185
|
+
under DOS if you use the VID=EMX switch when compiling. See the
|
|
3186
|
+
makefile for details.
|
|
3187
|
+
|
|
3188
|
+
- The Microway NDP C/C++ DOS compiler is now supported. Thanks to Wade
|
|
3189
|
+
Schauer for this port.
|
|
3190
|
+
|
|
3191
|
+
- The Watcom C++ 10.0 DOS compiler is now supported. Thanks to Pieter
|
|
3192
|
+
Kunst for this port.
|
|
3193
|
+
|
|
3194
|
+
- The library now has many functions grouped together to reduce the size
|
|
3195
|
+
of the library and to improve the speed of compilation.
|
|
3196
|
+
|
|
3197
|
+
- The "names" of a couple of the compilers in the makefile has changed;
|
|
3198
|
+
CSET2 is now ICC and GO32 is now GCC.
|
|
3199
|
+
|
|
3200
|
+
EXTRA OPTIONS:
|
|
3201
|
+
|
|
3202
|
+
One difference between the behavior of PDCurses and Unix curses is the
|
|
3203
|
+
attributes that are displayed when a character is cleared. Under Unix
|
|
3204
|
+
curses, no attributes are displayed, so the result is always black.
|
|
3205
|
+
Under PDCurses, these functions clear with the current attributes in
|
|
3206
|
+
effect at the time. With the introduction of the bkgd functions, by
|
|
3207
|
+
default, PDCurses clears using the value set by (w)bkgd(). To have
|
|
3208
|
+
PDCurses behave the same way as it did before release 2.2, compile with
|
|
3209
|
+
-DPDCURSES_WCLR
|
|
3210
|
+
|
|
3211
|
+
ACKNOWLEDGEMENTS: (for this release)
|
|
3212
|
+
|
|
3213
|
+
Pieter Kunst, David Nugent, Warren Tucker, Darin Haugen, Stefan Strack,
|
|
3214
|
+
Wade Schauer and others who either alerted me to bugs or supplied
|
|
3215
|
+
fixes.
|
|
3216
|
+
|
|
3217
|
+
------------------------------------------------------------------------
|
|
3218
|
+
|
|
3219
|
+
PDCurses 2.1 - 1993-06-20
|
|
3220
|
+
=========================
|
|
3221
|
+
|
|
3222
|
+
INTRODUCTION:
|
|
3223
|
+
|
|
3224
|
+
The current code contains bug fixes for the DOS and OS/2 releases and
|
|
3225
|
+
also includes an alpha release for Unix. The Unix release uses another
|
|
3226
|
+
public domain package (mytinfo) to handle the low-level screen writes.
|
|
3227
|
+
mytinfo was posted to comp.sources.unix (or misc) in December 1992 or
|
|
3228
|
+
January 1993. Unless you are a glutton for punishment I would recommend
|
|
3229
|
+
you avoid the Unix port at this stage.
|
|
3230
|
+
|
|
3231
|
+
The other major addition to PDCurses is the support for DJGPP (the DOS
|
|
3232
|
+
port of GNU C++). Thanks to David Nugent <davidn@csource.oz.au>.
|
|
3233
|
+
|
|
3234
|
+
Other additions are copywin() function, function debugging support and
|
|
3235
|
+
getting the small and medium memory models to work. The testcurs.c demo
|
|
3236
|
+
program has also been changed significantly and a new demo program,
|
|
3237
|
+
tuidemo, has been added.
|
|
3238
|
+
|
|
3239
|
+
Some people have suggested including information on where to get dmake
|
|
3240
|
+
from. oak.oakland.edu in /pub/msdos/c
|
|
3241
|
+
|
|
3242
|
+
OTHER NOTES:
|
|
3243
|
+
|
|
3244
|
+
Under DOS, by default, screen writes to a CGA monitor are done via the
|
|
3245
|
+
video BIOS rather than by direct video memory writes. This is due to
|
|
3246
|
+
the CGA "snow" problem. If you have a CGA monitor and do not suffer
|
|
3247
|
+
from snow, you can compile private\_queryad.c with CGA_DIRECT defined.
|
|
3248
|
+
This will then use cause PDCurses to write directly to the CGA video
|
|
3249
|
+
memory.
|
|
3250
|
+
|
|
3251
|
+
Function debugging: Firstly to get function debugging, you have to
|
|
3252
|
+
compile the library with OPT=N in the makefile. This also turns on
|
|
3253
|
+
compiler debugging. You can control when you want PDCurses to write to
|
|
3254
|
+
the debug file (called trace in the current directory) by using the
|
|
3255
|
+
functions traceon() and traceoff() in your program.
|
|
3256
|
+
|
|
3257
|
+
Microsoft C 6.00 Users note:
|
|
3258
|
+
----------------------------
|
|
3259
|
+
|
|
3260
|
+
With the addition of several new functions, using dmake to compile
|
|
3261
|
+
PDCurses now causes the compiler to run "out of heap space in pass 2".
|
|
3262
|
+
Using the 6.00AX version (DOS-Extended) to compile PDCurses fixes this
|
|
3263
|
+
problem; hence the -EM switch.
|
|
3264
|
+
|
|
3265
|
+
Functional changes
|
|
3266
|
+
------------------
|
|
3267
|
+
|
|
3268
|
+
Added OS/2 DLL support.
|
|
3269
|
+
|
|
3270
|
+
A few curses functions have been fixed to exhibit their correct
|
|
3271
|
+
behavior and make them more functionally portable with System V
|
|
3272
|
+
curses. The functions that have changed are overlay(), overwrite() and
|
|
3273
|
+
typeahead.
|
|
3274
|
+
|
|
3275
|
+
overlay() and overwrite()
|
|
3276
|
+
|
|
3277
|
+
Both of theses functions in PDCurses 2.0 allowed for one window to be
|
|
3278
|
+
effectively placed on top of another, and the characters in the first
|
|
3279
|
+
window were overlaid or overwritten starting at 0,0 in both windows.
|
|
3280
|
+
This behavior of these functions was not correct. These functions only
|
|
3281
|
+
operate on windows that physically overlap with respect to the
|
|
3282
|
+
displayed screen. To achieve the same functionality as before, use the
|
|
3283
|
+
new function copywin(). See the manual page for further details.
|
|
3284
|
+
|
|
3285
|
+
typeahead()
|
|
3286
|
+
|
|
3287
|
+
This function in PDCurses 2.0 effectively checked to see if there were
|
|
3288
|
+
any characters remaining in the keyboard buffer. This is not the
|
|
3289
|
+
behavior exhibited by System V curses. This function is intended
|
|
3290
|
+
purely to set a flag so that curses can check while updating the
|
|
3291
|
+
physical screen if any keyboard input is pending. To achieve the same
|
|
3292
|
+
effect with typeahead() under PDCurses 2.1 the following code should be
|
|
3293
|
+
used.
|
|
3294
|
+
|
|
3295
|
+
In place of...
|
|
3296
|
+
|
|
3297
|
+
while(!typeahead(stdin))
|
|
3298
|
+
{
|
|
3299
|
+
/* do something until any key is pressed... */
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
use...
|
|
3303
|
+
|
|
3304
|
+
/* getch() to return ERR if no key pending */
|
|
3305
|
+
nodelay(stdscr,TRUE);
|
|
3306
|
+
while(getch() == (ERR))
|
|
3307
|
+
{
|
|
3308
|
+
/* do something until any key is pressed... */
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
|
|
3312
|
+
ACKNOWLEDGEMENTS: (in no particular order)
|
|
3313
|
+
|
|
3314
|
+
Jason Shumate, Pieter Kunst, David Nugent, Andreas Otte, Pasi
|
|
3315
|
+
Hamalainen, James McLennan, Duane Paulson, Ib Hojme
|
|
3316
|
+
|
|
3317
|
+
Apologies to anyone I may have left out.
|
|
3318
|
+
|
|
3319
|
+
------------------------------------------------------------------------
|
|
3320
|
+
|
|
3321
|
+
PDCurses 2.0 - 1992-11-23
|
|
3322
|
+
=========================
|
|
3323
|
+
|
|
3324
|
+
INTRODUCTION:
|
|
3325
|
+
|
|
3326
|
+
Well, here it finally is; PDCurses v2.0.
|
|
3327
|
+
|
|
3328
|
+
PDCurses v2.0 is an almost total rewrite of PCcurses 1.4 done by John
|
|
3329
|
+
'Frotz' Fa'atuai, the previous maintainer. It adds support for OS/2 as
|
|
3330
|
+
well as DOS.
|
|
3331
|
+
|
|
3332
|
+
This version has been tested with Microsoft C v6.0, QuickC v2.0 and
|
|
3333
|
+
Borland C++ 2.0 under DOS and Microsoft C v6.0 and TopSpeed c v3.02
|
|
3334
|
+
under OS/2 2.0. Also the library has been compiled successfully with
|
|
3335
|
+
emx 0.8e, C Set/2 and Watcom 9. Most testing was done with the large
|
|
3336
|
+
memory model, where applicable. The large memory model is probably the
|
|
3337
|
+
best model to use.
|
|
3338
|
+
|
|
3339
|
+
The amount of testing has not been as extensive as I would have liked,
|
|
3340
|
+
but demands on releasing a product have outweighed the product's
|
|
3341
|
+
quality. Nothing new with that !! Hopefully with wider circulation,
|
|
3342
|
+
more bugs will be fixed more quickly.
|
|
3343
|
+
|
|
3344
|
+
I have included just 1 makefile which is suitable for dmake 3.8 for
|
|
3345
|
+
both DOS and OS/2. The makefile does not rely on customization of the
|
|
3346
|
+
dmake.ini file.
|
|
3347
|
+
|
|
3348
|
+
If you discover bugs, and especially if you have fixes, please let me
|
|
3349
|
+
know ASAP.
|
|
3350
|
+
|
|
3351
|
+
The source to the library is distributed as a zip file made with zip
|
|
3352
|
+
1.9. You will need Info-ZIP unzip 5.0 to unzip. Follow the directions
|
|
3353
|
+
below to compile the library.
|
|
3354
|
+
|
|
3355
|
+
DIRECTIONS:
|
|
3356
|
+
|
|
3357
|
+
1. Create a new directory in which to unzip pdcurs20.zip. This will
|
|
3358
|
+
create a curses directory and a number of subdirectories containing
|
|
3359
|
+
source code for the library and utilities and the documentation.
|
|
3360
|
+
|
|
3361
|
+
2. Make changes to the makefile where necessary:
|
|
3362
|
+
Change the MODEL or model macro to the appropriate value (if it
|
|
3363
|
+
applies to your compiler). Use model for Borland compilers.
|
|
3364
|
+
|
|
3365
|
+
Change any paths in the defined macros to be suitable for your
|
|
3366
|
+
compiler.
|
|
3367
|
+
|
|
3368
|
+
3. Invoke DMAKE [-e environment_options] [target]
|
|
3369
|
+
|
|
3370
|
+
where environment_options are:
|
|
3371
|
+
|
|
3372
|
+
OS (host operating system)
|
|
3373
|
+
COMP (compiler)
|
|
3374
|
+
OPT (optimized version or debug version) - optional. default Y
|
|
3375
|
+
TOS (target operating system) - optional. default OS
|
|
3376
|
+
|
|
3377
|
+
see the makefile for valid combinations
|
|
3378
|
+
|
|
3379
|
+
targets: all, demos, lcursesd.lib, manual...
|
|
3380
|
+
|
|
3381
|
+
NB. dmake is case sensitive with targets, so those environments that
|
|
3382
|
+
use an upper case model value (eg MSC) MUST specify the library
|
|
3383
|
+
target as for eg. Lcursesd.lib
|
|
3384
|
+
|
|
3385
|
+
The makefile is by default set up for Borland C++. The use of -e
|
|
3386
|
+
environment_options override these defaults. If you prefer, you can
|
|
3387
|
+
just change the defaults in the makefile and invoke it without the
|
|
3388
|
+
-e switch.
|
|
3389
|
+
|
|
3390
|
+
OTHER NOTES:
|
|
3391
|
+
|
|
3392
|
+
The documentation for the library is built into each source file, a
|
|
3393
|
+
couple of specific doc files and the header files. A program is
|
|
3394
|
+
supplied (manext) to build the manual. This program gets compiled when
|
|
3395
|
+
you build the documentation.
|
|
3396
|
+
|
|
3397
|
+
To generate the library response file correctly, I had to write a quick
|
|
3398
|
+
and dirty program (buildlrf) to achieve this. Originally the makefiles
|
|
3399
|
+
just had statements like: "echo -+$(OBJ)\$* & >> $(LRF)" which appended
|
|
3400
|
+
a suitable line to the response file. Unfortunately under some
|
|
3401
|
+
combinations of makefiles and command processors (eg. nmake and 4DOS)
|
|
3402
|
+
the & would get treated as stderr and the echo command would fail.
|
|
3403
|
+
|
|
3404
|
+
The original source for PDCurses that I received from the previous
|
|
3405
|
+
maintainer contained support for the FLEXOS operating system. Not
|
|
3406
|
+
having access to it, I could not test the changes I made so its support
|
|
3407
|
+
has fallen by the wayside. If you really need to have PDCurses running
|
|
3408
|
+
under FLEXOS, contact me and I will see what can be arranged.
|
|
3409
|
+
|
|
3410
|
+
Under DOS, by default, screen writes to a CGA monitor are done via the
|
|
3411
|
+
video BIOS rather than by direct video memory writes. This is due to
|
|
3412
|
+
the CGA "snow" problem. If you have a CGA monitor and do not suffer
|
|
3413
|
+
from snow, you can compile private\_queryad.c with CGA_DIRECT defined.
|
|
3414
|
+
This will then use cause PDCurses to write directly to the CGA video
|
|
3415
|
+
memory.
|
|
3416
|
+
|
|
3417
|
+
Added System V color support.
|
|
3418
|
+
|
|
3419
|
+
COMPILER-SPECIFIC NOTES:
|
|
3420
|
+
|
|
3421
|
+
Microsoft C
|
|
3422
|
+
-----------
|
|
3423
|
+
|
|
3424
|
+
It is possible with MSC 6.0 to build the OS/2 libraries and demo
|
|
3425
|
+
programs from within DOS. This is the only case where it is possible to
|
|
3426
|
+
specify the value of TOS on the command line to be OS2 and the value of
|
|
3427
|
+
OS be DOS.
|
|
3428
|
+
|
|
3429
|
+
C Set/2
|
|
3430
|
+
-------
|
|
3431
|
+
|
|
3432
|
+
I have only tested the library using the migration libraries. I doubt
|
|
3433
|
+
that the demo programs will work without them.
|
|
3434
|
+
|
|
3435
|
+
emx
|
|
3436
|
+
---
|
|
3437
|
+
|
|
3438
|
+
Testing has been done with 0.8e of emx together with the 16_to_32
|
|
3439
|
+
libraries. The emx\lib directory should include the vio32.lib and
|
|
3440
|
+
kbd32.lib libraries from the 16_to_32 package.
|
|
3441
|
+
|
|
3442
|
+
BUGS and UNFINISHED BUSINESS:
|
|
3443
|
+
|
|
3444
|
+
- PDC_set_ctrl_break() function does not work under OS/2.
|
|
3445
|
+
|
|
3446
|
+
- win_print() and PDC_print() do not work under OS/2.
|
|
3447
|
+
|
|
3448
|
+
- The file todo.man in the doc directory also lists those functions of
|
|
3449
|
+
System V 3.2 curses not yet implemented. Any volunteers?
|
|
3450
|
+
|
|
3451
|
+
ACKNOWLEDGEMENTS:
|
|
3452
|
+
|
|
3453
|
+
- John 'Frotz' Fa'atuai, the previous maintainer for providing an
|
|
3454
|
+
excellent base for further development.
|
|
3455
|
+
- John Burnell <johnb@kea.am.dsir.govt.nz>, for the OS/2 port.
|
|
3456
|
+
- John Steele, Jason (finally NOT a John) Shumate....
|
|
3457
|
+
for various fixes and suggestions.
|
|
3458
|
+
- Eberhardt Mattes (author of emx) for allowing code based on his
|
|
3459
|
+
C library to be included with PDCurses.
|
|
3460
|
+
- Several others for their support, moral and actual.
|
|
3461
|
+
|
|
3462
|
+
-- Mark Hessling
|
|
3463
|
+
|
|
3464
|
+
------------------------------------------------------------------------
|
|
3465
|
+
|
|
3466
|
+
PDCurses 2.0Beta - 1991-12-21
|
|
3467
|
+
=============================
|
|
3468
|
+
|
|
3469
|
+
Changed back from short to int. (int is the correct size for the default
|
|
3470
|
+
platform. Short might be too short on some platforms. This is more
|
|
3471
|
+
portable. I, also, made this mistake.)
|
|
3472
|
+
|
|
3473
|
+
Many functions are now macros. If you want the real thing, #undef the
|
|
3474
|
+
macro. (X/Open requirement.)
|
|
3475
|
+
|
|
3476
|
+
Merged many sources into current release.
|
|
3477
|
+
|
|
3478
|
+
Added many X/Open routines (not quite all yet).
|
|
3479
|
+
|
|
3480
|
+
Added internal documentation to all routines.
|
|
3481
|
+
|
|
3482
|
+
Added a HISTORY file to the environment.
|
|
3483
|
+
|
|
3484
|
+
Added a CONTRIB file to the environment.
|
|
3485
|
+
|
|
3486
|
+
------------------------------------------------------------------------
|
|
3487
|
+
|
|
3488
|
+
PDCurses 1.5Beta - 1990-07-14
|
|
3489
|
+
=============================
|
|
3490
|
+
|
|
3491
|
+
Added many levels of compiler support. Added mixed prototypes for all
|
|
3492
|
+
"internal" routines. Removed all assembly language. Added EGA/VGA
|
|
3493
|
+
support. Converted all #ifdef to #if in all modules except CURSES.H and
|
|
3494
|
+
CURSPRIV.H. Always include ASSERT.H. Added support for an external
|
|
3495
|
+
malloc(), calloc() and free(). Added support for FAST_VIDEO
|
|
3496
|
+
(direct-memory writes). Added various memory model support (for
|
|
3497
|
+
FAST_VIDEO). Added much of the December 1988 X/Open Curses
|
|
3498
|
+
specification.
|
|
3499
|
+
|
|
3500
|
+
-- John 'Frotz' Fa'atuai
|
|
3501
|
+
|
|
3502
|
+
------------------------------------------------------------------------
|
|
3503
|
+
|
|
3504
|
+
PCcurses 1.4 - 1990-01-14
|
|
3505
|
+
=========================
|
|
3506
|
+
|
|
3507
|
+
In PCcurses v.1.4, both portability improvements and bugfixes have
|
|
3508
|
+
been made. The files have been changed to allow lint-free compilation
|
|
3509
|
+
with Microsoft C v.5.1, and with Turbo C v.2.0. The source should still
|
|
3510
|
+
compile without problems on older compilers, although this has not been
|
|
3511
|
+
verified.
|
|
3512
|
+
|
|
3513
|
+
The makefiles have been changed to suit both the public release and
|
|
3514
|
+
the author, who maintains a special kind of libraries for himself. In
|
|
3515
|
+
the case of Microsoft C, changes were done in the makefile to lower the
|
|
3516
|
+
warning level to 2 (was 3). This was to avoid ANSI warnings which are
|
|
3517
|
+
abundant because PCcurses does not attempt to follow strict ANSI C
|
|
3518
|
+
standard.
|
|
3519
|
+
|
|
3520
|
+
BUG FIXES FROM V.1.3 TO V.1.4:
|
|
3521
|
+
|
|
3522
|
+
!!!IMPORTANT CHANGE!!!
|
|
3523
|
+
|
|
3524
|
+
The definitions for OK and ERR in curses.h were exchanged. This was
|
|
3525
|
+
done to be more consistent with UNIX versions. Also, it permits
|
|
3526
|
+
functions like newwin() and subwin() to return 0 (=NULL) when they fail
|
|
3527
|
+
due to memory shortage. This incompatibility with UNIX curses was
|
|
3528
|
+
pointed out by Fred C. Smith. If you have tested success/failure by
|
|
3529
|
+
comparisons to anything other than ERR and OK, your applications will
|
|
3530
|
+
need to be be changed on that point. Sorry... but presumably most of you
|
|
3531
|
+
used the symbolic constants?
|
|
3532
|
+
|
|
3533
|
+
(END OF IMPORTANT CHANGE)
|
|
3534
|
+
|
|
3535
|
+
Fred also pointed out a bug in the file update.c. The bug caused the
|
|
3536
|
+
first character printed after 'unauthorized' screen changes (like during
|
|
3537
|
+
a shell escape, for example) to be placed at the wrong screen position.
|
|
3538
|
+
This happened even if the normal precautions (clear / touch / refresh)
|
|
3539
|
+
were taken. The problem has now been fixed.
|
|
3540
|
+
|
|
3541
|
+
PCcurses is currently also being used on a 68000 system with
|
|
3542
|
+
hard-coded ESCape sequences for ANSI terminals. However, ints used by
|
|
3543
|
+
the 68000 C compiler are 32 bits. Therefore ints have been turned into
|
|
3544
|
+
shorts wherever possible in the code (otherwise all window structures
|
|
3545
|
+
occupy twice as much space as required on the 68000). This does not
|
|
3546
|
+
affect PC versions since normally both ints and shorts are 16 bits for
|
|
3547
|
+
PC C compilers.
|
|
3548
|
+
|
|
3549
|
+
At some places in the source code there are references made to the
|
|
3550
|
+
68000 version. There are also a makefile, a curses68.c file, and a
|
|
3551
|
+
curses68.cmd file. These are for making, low-level I/O, and linking
|
|
3552
|
+
commands when building the 68000 version. These files are probably
|
|
3553
|
+
useful to no-one but the author, since it is very specific for its
|
|
3554
|
+
special hardware environment. Still in an effort to keep all
|
|
3555
|
+
curses-related sources in one place they are included. Note however that
|
|
3556
|
+
PCcurses will not officially support a non-PC environment.
|
|
3557
|
+
|
|
3558
|
+
The file cursesio.c, which was included in the package at revision
|
|
3559
|
+
level 1.2, and which was to be an alternative to the cursesio.asm file,
|
|
3560
|
+
has been verified to behave incorrectly in the function _curseskeytst().
|
|
3561
|
+
The problem was that the value of 'cflag' does not contain the proper
|
|
3562
|
+
data for the test that is attempted. Furthermore, neither Turbo C or
|
|
3563
|
+
Microsoft C allows any way to return the data that is needed, and
|
|
3564
|
+
consequently you should not use cursesio.c. The best solution is to
|
|
3565
|
+
simply use the ASM version. In v.1.2 and v.1.3, the user could edit the
|
|
3566
|
+
makefile to select which version he wanted to use. The makefiles in
|
|
3567
|
+
v.1.4 have removed this possibility forcing the use of the ASM file, and
|
|
3568
|
+
cursesio.c has been dropped from the distribution.
|
|
3569
|
+
|
|
3570
|
+
A bug in the wgetstr() function caused PCcurses to echo characters
|
|
3571
|
+
when reading a keyboard string, even if the echo had been turned off.
|
|
3572
|
+
Thanks to Per Foreby at Lund University, Sweden, for this. Per also
|
|
3573
|
+
reported bugs concerning the handling of characters with bit 8 set.
|
|
3574
|
+
Their ASCII code were considered as lower than 32, so they were erased
|
|
3575
|
+
etc. like control characters, i.e. erasing two character positions. The
|
|
3576
|
+
control character test was changed to cope with this.
|
|
3577
|
+
|
|
3578
|
+
The overlay() and overwrite() functions were changed so that the
|
|
3579
|
+
overlaying window is positioned at its 'own' coordinates inside the
|
|
3580
|
+
underlying window (it used to be at the underlying window's [0,0]
|
|
3581
|
+
position). There is some controversy about this - the documentation for
|
|
3582
|
+
different curses versions say different things. I think the choice made
|
|
3583
|
+
is the most reasonable.
|
|
3584
|
+
|
|
3585
|
+
The border() and wborder() functions were changed to actually draw a
|
|
3586
|
+
border, since this seems to be the correct behavior of these functions.
|
|
3587
|
+
They used to just set the border characters to be used by box(). These
|
|
3588
|
+
functions are not present in standard BSD UNIX curses.
|
|
3589
|
+
|
|
3590
|
+
The subwin() function previously did not allow the subwindow to be as
|
|
3591
|
+
big as the original window in which it was created. This has now been
|
|
3592
|
+
fixed. There was also the problem that the default size (set by
|
|
3593
|
+
specifying numlines or numcols (or both) as 0 made the resulting actual
|
|
3594
|
+
size 1 line/column too small.
|
|
3595
|
+
|
|
3596
|
+
There were a few spelling errors in function names, both in the
|
|
3597
|
+
function declarations and in curses.h. This was reported by Carlos
|
|
3598
|
+
Amaral at INESC in Portugal. Thanks! There was also an unnecessary (but
|
|
3599
|
+
harmless) parameter in a function call at one place.
|
|
3600
|
+
|
|
3601
|
+
------------------------------------------------------------------------
|
|
3602
|
+
|
|
3603
|
+
PCcurses 1.3 - 1988-10-05
|
|
3604
|
+
=========================
|
|
3605
|
+
|
|
3606
|
+
The file 'border.c' is now included. It allows you to explicitly
|
|
3607
|
+
specify what characters should be used as box borders when the box()
|
|
3608
|
+
functions are called. If the new border characters are non-0, they
|
|
3609
|
+
override the border characters specified in the box() call. In my
|
|
3610
|
+
understanding, this functionality is required for AT&T UNIX sV.3
|
|
3611
|
+
compatibility. Thanks for this goes to Tony L. Hansen
|
|
3612
|
+
(hansen@pegasus.UUCP) for posting an article about it on Usenet
|
|
3613
|
+
(newsgroup comp.unix.questions; his posting was not related at all to
|
|
3614
|
+
PCcurses).
|
|
3615
|
+
|
|
3616
|
+
The only other difference between v.1.2 and v.1.3 is that the latter
|
|
3617
|
+
has been changed to avoid warning diagnostics if the source files are
|
|
3618
|
+
compiled with warning switches on (for Microsoft this means '-W3', for
|
|
3619
|
+
Turbo C it means '-w -w-pro'). Of these, the Turbo C warning check is
|
|
3620
|
+
clearly to be used rather than Microsoft, even if neither of them comes
|
|
3621
|
+
even close to a real UNIX 'lint'. Some of the warnings in fact indicated
|
|
3622
|
+
real bugs, mostly functions that did not return correct return values or
|
|
3623
|
+
types.
|
|
3624
|
+
|
|
3625
|
+
The makefiles for both MSC and TRC have been modified to produce
|
|
3626
|
+
warning messages as part of normal compilation.
|
|
3627
|
+
|
|
3628
|
+
------------------------------------------------------------------------
|
|
3629
|
+
|
|
3630
|
+
PCcurses 1.2 - 1988-10-02
|
|
3631
|
+
=========================
|
|
3632
|
+
|
|
3633
|
+
The changes from v.1.1 to v.1.2 are minor. The biggest change is that
|
|
3634
|
+
there was a bug related to limiting the cursor movement if the
|
|
3635
|
+
application tried to move it outside the screen (something that should
|
|
3636
|
+
not be done anyway). Such erroneous application behavior is now handled
|
|
3637
|
+
appropriately.
|
|
3638
|
+
|
|
3639
|
+
All modules have been changed to have a revision string in them, which
|
|
3640
|
+
makes it easier to determine what version is linked into a program (or
|
|
3641
|
+
what library version you have).
|
|
3642
|
+
|
|
3643
|
+
There is now a 'cursesio.c' file. That file does the same as
|
|
3644
|
+
'cursesio.asm' (i.e. it provides the interface to the lower-level system
|
|
3645
|
+
I/O routines). It is written in C and thus it is (possibly) more
|
|
3646
|
+
portable than the assembler version (but still not so portable since it
|
|
3647
|
+
uses 8086 INT XX calls directly). When one creates new curses libraries,
|
|
3648
|
+
one chooses whether to use the assembler or the C version of cursesio.
|
|
3649
|
+
The choice is made by commenting out the appropriate dependencies for
|
|
3650
|
+
cursesio.obj, near the end of the makefiles.
|
|
3651
|
+
|
|
3652
|
+
There is now a 'setmode.c' file. That file contains functions that
|
|
3653
|
+
save and restore terminal modes. They do it into other variables than do
|
|
3654
|
+
savetty() and resetty(), so one should probably use either
|
|
3655
|
+
savetty()/resetty() or the new functions only - and not mix the both
|
|
3656
|
+
ways unless one really knows what one does.
|
|
3657
|
+
|
|
3658
|
+
Diff lists vs v.1.0 are no longer included in the distribution. The
|
|
3659
|
+
make utility still is. PCcurses v.1.2 still compiles with Microsoft C
|
|
3660
|
+
v.4.0, and with Borland Turbo C v.1.0. There is as far as I know no
|
|
3661
|
+
reason to believe that it does not compile under Microsoft C v.3.0 and
|
|
3662
|
+
5.x, or Turbo C v.1.5, but this has not been tested.
|
|
3663
|
+
|
|
3664
|
+
There are two makefiles included, one for Microsoft C, one for Turbo
|
|
3665
|
+
C. They are both copies of my personal makefiles, and as such they
|
|
3666
|
+
reflect the directory structure on my own computer. This will have to be
|
|
3667
|
+
changed before you run make. Check $(INCDIR) and $(LIBDIR) in
|
|
3668
|
+
particular, and make the choice of ASM or C cursesio version as
|
|
3669
|
+
mentioned above (the distribution version uses the C version of
|
|
3670
|
+
cursesio).
|
|
3671
|
+
|
|
3672
|
+
The manual file (curses.man) has been changed at appropriate places.
|
|
3673
|
+
|
|
3674
|
+
I would like to thank the following persons for their help:
|
|
3675
|
+
|
|
3676
|
+
Brandon S. Allbery (alberry@ncoast.UUCP)
|
|
3677
|
+
for running comp.binaries.ibm.pc (at that time)
|
|
3678
|
+
and comp.source.misc.
|
|
3679
|
+
|
|
3680
|
+
Steve Balogh (Steve@cit5.cit.oz.AU)
|
|
3681
|
+
for writing a set of manual pages and posting
|
|
3682
|
+
them to the net.
|
|
3683
|
+
|
|
3684
|
+
Torbjorn Lindh
|
|
3685
|
+
for finding bugs and suggesting raw
|
|
3686
|
+
character output routines.
|
|
3687
|
+
|
|
3688
|
+
Nathan Glasser (nathan@eddie.mit.edu)
|
|
3689
|
+
for finding and reporting bugs.
|
|
3690
|
+
|
|
3691
|
+
Ingvar Olafsson (...enea!hafro!ingvar)
|
|
3692
|
+
for finding and reporting bugs.
|
|
3693
|
+
|
|
3694
|
+
Eric Rosco (...enea!ipmoea!ericr)
|
|
3695
|
+
for finding and reporting bugs.
|
|
3696
|
+
|
|
3697
|
+
Steve Creps (creps@silver.bacs.indiana.edu)
|
|
3698
|
+
for doing a lot of work - among others
|
|
3699
|
+
posting bug fixes to the net, and writing
|
|
3700
|
+
the new cursesio.c module.
|
|
3701
|
+
|
|
3702
|
+
N. Dean Pentcheff (dean@violet.berkeley.edu)
|
|
3703
|
+
for finding bugs and rewriting cursesio.asm
|
|
3704
|
+
for Turbo 'C' 1.5.
|
|
3705
|
+
|
|
3706
|
+
Finally, Jeff Dean (parcvax,hplabs}!cdp!jeff)
|
|
3707
|
+
(jeff@ads.arpa)
|
|
3708
|
+
has had a shareware version of curses deliverable since
|
|
3709
|
+
about half a year before I released PCcurses 1.0 on Use-
|
|
3710
|
+
Net. He is very concerned about confusion between the two
|
|
3711
|
+
packages, and therefore any references on the network
|
|
3712
|
+
should make clear whether they reference Dean's PCcurses
|
|
3713
|
+
or Larsson's PCcurses.
|
|
3714
|
+
|
|
3715
|
+
------------------------------------------------------------------------
|
|
3716
|
+
|
|
3717
|
+
PCcurses 1.1 - 1988-03-06
|
|
3718
|
+
=========================
|
|
3719
|
+
|
|
3720
|
+
The changes from v.1.0 to v.1.1 are minor. There are a few bug fixes,
|
|
3721
|
+
and new (non-portable) functions for verbatim IBM character font display
|
|
3722
|
+
have been added (in charadd.c and charins.c). The manual file
|
|
3723
|
+
(curses.man) has been changed at appropriate places.
|
|
3724
|
+
|
|
3725
|
+
In the file v10tov11.dif there are listings of the differences between
|
|
3726
|
+
version 1.0 and 1.1. The diff listings are in UNIX diff(1) format.
|
|
3727
|
+
|
|
3728
|
+
Version 1.1 compiles with Turbo C v.1.0, as well as Microsoft C v.3.0
|
|
3729
|
+
and v.4.0. On the release disk there is a make.exe utility which is very
|
|
3730
|
+
similar to UNIX make (If the package was mailed to you, the make utility
|
|
3731
|
+
will be in uuencoded format - in make.uu - and must be uudecoded first).
|
|
3732
|
+
It is much more powerful than Microsoft's different MAKEs; the latter
|
|
3733
|
+
ones will NOT generate libraries properly if used with the PCcurses
|
|
3734
|
+
makefiles.
|
|
3735
|
+
|
|
3736
|
+
There are three makefiles:
|
|
3737
|
+
|
|
3738
|
+
makefile generic MSC 3.0 makefile
|
|
3739
|
+
makefile.ms MSC 4.0 makefile
|
|
3740
|
+
makefile.tc Turbo C 1.0 makefile
|
|
3741
|
+
|
|
3742
|
+
To make a library with for example Turbo C, make directories to hold
|
|
3743
|
+
.H and .LIB files (these directories are the 'standard places'), edit
|
|
3744
|
+
makefile.tc for this, and type
|
|
3745
|
+
|
|
3746
|
+
make -f makefile.tc all
|
|
3747
|
+
|
|
3748
|
+
and libraries for all memory models will be created in the .LIB
|
|
3749
|
+
directory, while the include files will end up in the .H directory. Also
|
|
3750
|
+
read what is said about installation below!
|
|
3751
|
+
|
|
3752
|
+
------------------------------------------------------------------------
|
|
3753
|
+
|
|
3754
|
+
PCcurses 1.0 - 1987-08-24
|
|
3755
|
+
=========================
|
|
3756
|
+
|
|
3757
|
+
This is the release notes for the PCcurses v.1.0 cursor/window control
|
|
3758
|
+
package. PCcurses offers the functionality of UNIX curses, plus some
|
|
3759
|
+
extras. Normally it should be possible to port curses-based programs
|
|
3760
|
+
from UNIX curses to PCcurses on the IBM PC without changes. PCcurses is
|
|
3761
|
+
a port/ rewrite of Pavel Curtis' public domain 'ncurses' package. All
|
|
3762
|
+
the code has been re-written - it is not just an edit of ncurses (or
|
|
3763
|
+
UNIX curses). I mention this to clarify any copyright violation claims.
|
|
3764
|
+
The data structures and ideas are very similar to ncurses. As for UNIX
|
|
3765
|
+
curses, I have not even seen any sources for it.
|
|
3766
|
+
|
|
3767
|
+
For an introduction to the use of 'curses' and its derivatives, you
|
|
3768
|
+
should read 'Screen Updating and Cursor Movement Optimization: A Library
|
|
3769
|
+
Package' by Kenneth C. R. C. Arnold, which describes the original
|
|
3770
|
+
Berkeley UNIX version of curses. It is available as part of the UNIX
|
|
3771
|
+
manuals. The other source of information is 'The Ncurses Reference
|
|
3772
|
+
Manual' by Pavel Curtis. The latter is part of Curtis' ncurses package.
|
|
3773
|
+
|
|
3774
|
+
The only other documentation provided is a 'man' page which describes
|
|
3775
|
+
all the included functions in a very terse way. In the sources, each
|
|
3776
|
+
function is preceded by a rather thorough description of what the
|
|
3777
|
+
function does. I didn't have time to write a nice manual/tutorial -
|
|
3778
|
+
sorry.
|
|
3779
|
+
|
|
3780
|
+
PCcurses is released as a number of source files, a man page, and a
|
|
3781
|
+
make file. A uuencoded copy of a 'make' utility, and a manpage for the
|
|
3782
|
+
'make' is also provided to make it easier to put together PCcurses
|
|
3783
|
+
libraries. Even if you are not interested in PCcurses, it may be
|
|
3784
|
+
worthwhile to grab the make.
|
|
3785
|
+
|
|
3786
|
+
The makefile assumes the presence of the Microsoft C compiler (3.0 or
|
|
3787
|
+
4.0), Microsoft MASM and LIB, plus some MS-DOS utilities. The reason for
|
|
3788
|
+
supplying MAKE.EXE is that the Microsoft 'MAKE:s' are much inferior to a
|
|
3789
|
+
real UNIX make. The supplied make is a port of a public domain make,
|
|
3790
|
+
published on Usenet. It is almost completely compatible with UNIX make.
|
|
3791
|
+
When generating the curses libraries, the makefile will direct make to
|
|
3792
|
+
do some directory creating and file copying, and then re-invoke itself
|
|
3793
|
+
with new targets. The workings of the makefile are not absolutely
|
|
3794
|
+
crystal clear at first sight... just start it and see what it does.
|
|
3795
|
+
|
|
3796
|
+
For portability, the curses libraries depend on one assembler file for
|
|
3797
|
+
access to the BIOS routines. There is no support for the EGA, but both
|
|
3798
|
+
CGA, MGA, and the HGA can be used. The libraries are originally for
|
|
3799
|
+
Microsoft C, but all C modules should be portable right away. In the
|
|
3800
|
+
assembler file, segment names probably need to be changed, and possibly
|
|
3801
|
+
the parameter passing scheme. I think Turbo C will work right away - as
|
|
3802
|
+
far as I understand, all its conventions are compatible with Microsoft
|
|
3803
|
+
C.
|
|
3804
|
+
|
|
3805
|
+
There are some parts left out between ncurses and PCcurses. One is the
|
|
3806
|
+
support for multiple terminals - not very interesting on a PC anyway.
|
|
3807
|
+
Because we KNOW what terminal we have, there is no need for a termcap or
|
|
3808
|
+
terminfo library. PCcurses also has some things that neither curses nor
|
|
3809
|
+
ncurses have. Compared to the original UNIX curses, PCcurses has lots of
|
|
3810
|
+
extras.
|
|
3811
|
+
|
|
3812
|
+
The BIOS routines are used directly, which gives fast screen updates.
|
|
3813
|
+
PCcurses does not do direct writes to screen RAM - in my opinion it is
|
|
3814
|
+
a bit ugly to rely that much on hardware compatibility. Anyone could fix
|
|
3815
|
+
that, of course...
|
|
3816
|
+
|
|
3817
|
+
One of the more serious problems with PCcurses is the way in which
|
|
3818
|
+
normal, cbreak, and raw input modes are done. All those details are in
|
|
3819
|
+
the 'charget' module - I do raw I/O via the BIOS, and perform any
|
|
3820
|
+
buffering myself. If an application program uses PCcurses, it should do
|
|
3821
|
+
ALL its I/O via PCcurses calls, otherwise the mix of normal and
|
|
3822
|
+
PCcurses I/O may mess up the display. I think my code is reasonable...
|
|
3823
|
+
comments are welcome, provided you express them nicely...
|
|
3824
|
+
|
|
3825
|
+
To install, copy all files to a work directory, edit 'makefile' to
|
|
3826
|
+
define the standard include and library file directory names of your
|
|
3827
|
+
choice (these directories must exist already, and their path names must
|
|
3828
|
+
be relative to the root directory, not to the current one). You must
|
|
3829
|
+
also run uudecode on make.uu, to generate MAKE.EXE. You can do that on
|
|
3830
|
+
your PC, if you have uudecode there, otherwise you can do it under UNIX
|
|
3831
|
+
and do a binary transfer to the PC. When you have MAKE.EXE in your work
|
|
3832
|
+
directory (or in your /bin directory), type make.
|
|
3833
|
+
|
|
3834
|
+
Make will now create 4 sub-directories (one for each memory model),
|
|
3835
|
+
copy some assembler include files into them, copy two include files to
|
|
3836
|
+
your include directory, CHDIR to each sub-directory and re-invoke itself
|
|
3837
|
+
with other make targets to compile and assemble all the source files
|
|
3838
|
+
into the appropriate directories. Then the library manager is run to
|
|
3839
|
+
create the library files in your desired library directory. Presto!
|
|
3840
|
+
|
|
3841
|
+
If you only want to generate a library for one memory model, type
|
|
3842
|
+
'make small', 'make large', etc. The name of the memory model must be in
|
|
3843
|
+
lower case, like in the makefile.
|
|
3844
|
+
|
|
3845
|
+
I think the package is fairly well debugged - but then again, that's
|
|
3846
|
+
what I always think. It was completed in May-87, and no problems found
|
|
3847
|
+
yet. Now it's your turn... Comments, suggestions and bug reports and
|
|
3848
|
+
fixes (no flames please) to
|
|
3849
|
+
|
|
3850
|
+
-- Bjorn Larsson
|