|
1 |
| -v1.0: |
2 |
| ------ |
3 |
| -
|
4 |
| -- Corrections in the readme |
5 |
| -- Some minor fixes to the wrapper (don't deserve to be mentioned). |
6 |
| -- Corrections to the test scripts so that they work fine on Mac OS X. |
7 |
| -
|
8 |
| -v1.1: |
9 |
| ------ |
10 |
| -
|
11 |
| -- Changed the way UniCurses behaves if a module import error occurs (it now raises an exception instead of calling the 'exit' function). |
12 |
| -- Released the module as a distutils package |
13 |
| -
|
14 |
| -v1.2: |
15 |
| ------ |
16 |
| -
|
17 |
| -- Implemented a patch by Florian Stohr that fixes compatibility with Win64 pdcurses/Python. Big thanks to Florian Stohr for the fix! |
18 |
| -
|
19 |
| -v1.3: |
20 |
| ------ |
21 |
| -
|
22 |
| -- **Fixed**: etc. |
23 |
| -- **Fixed**: setup.py issues. |
24 |
| -- **Added**: import pdcurses on windows 64 bit |
25 |
| -- **Fixed**: set_panel_userptr() fails with memory access violation |
26 |
| -
|
27 |
| -v1.3.6: |
28 |
| -------- |
29 |
| -
|
30 |
| -- **Added**: 64-bit binaries |
31 |
| -
|
32 |
| -v1.3.7: |
33 |
| -------- |
34 |
| -
|
35 |
| -- **Added**: 32-bit pdcurses-3.9 version binaries |
36 |
| -- **Fixed**: sdl2 version with WIDE (Unicode) support |
37 |
| -
|
38 |
| -v1.3.74: |
39 |
| --------- |
40 |
| -
|
41 |
| -- minor changes |
42 |
| -- **Fixed**: (?) setup.py issues with other platforms |
43 |
| -- **Added**: set_tabsize() and get_tabsize() functions |
44 |
| -
|
45 |
| -v1.3.78: |
46 |
| --------- |
47 |
| -
|
48 |
| -- overall minor changes |
49 |
| -- Modified: test_panels_advanced.py example |
50 |
| -- **Added**: test_move_panels_advanced.py example |
51 |
| -- **Fixed**: setup.py & pip, finally work as they should. |
52 |
| -- **Fixed**: waddch & wgetch & mvwaddch, now they support wide (unicode) characters |
53 |
| -- **Fixed**: mvwinstr, now it doesn't throw error for n |
54 |
| -
|
55 |
| -v1.3.81: |
56 |
| --------- |
57 |
| -- **Added**: attribute A_ITALIC |
58 |
| -- **Added**: resize_term function |
59 |
| -- **Added**: new binaries (not v3.9) |
60 |
| -- TEMPORARILY **Fixed**: mvwinch, now support wide (unicode) characters | Until https://github.com/python/cpython/pull/17825 gets merged or something |
61 |
| -
|
62 |
| -v2.0.0: |
63 |
| --------- |
64 |
| -- Update: Completly replaced cpython's ncurses-module with native the .so & .dylib libraries |
65 |
| -- **Added**: Python2 support thanks to the ^Update although not excessively tested |
66 |
| -- **Added**: UP-TO-DATE binaries for PDCURSES |
67 |
| -- **Added**: cchar_t structure for NCURSES |
68 |
| -- **Added**: wadd_wch, mvwadd_wch |
69 |
| -- **Added**: addwstr, waddwstr, mvaddwstr, mvwaddwstr |
70 |
| -- **Added**: CONSTANTS for both NCURSES and PDCURSES |
71 |
| -- **Added**: extra stuff to ucs_reconfigure |
72 |
| -- **Added**: marco wrappers for both NCURSES and PDCURSES |
73 |
| -- **Fixed**: removed the (TEMPORARILY Fixed) from v1.3.81 |
74 |
| -- DISCLAIMER: MANY THINGS ARE NOT TESTED YET. |
75 |
| -
|
76 |
| -v2.0.4: |
77 |
| --------- |
78 |
| -- **Fixed**: indentation at "return ((m) << (((b) - 1) * 5))" |
79 |
| -- **Fixed**: getmouse() and typo in MEVENT-structure |
80 |
| -- **Added**: BUTTON5 mouse events (scroll) |
81 |
| -- **Added**: getmaxy(), getmaxx() |
82 |
| -- **Added**: CTRL(ch) |
83 |
| -
|
84 |
| -v2.0.5: |
85 |
| --------- |
86 |
| -- **Fixed**: issue with `libpanelw.so.x` on freeBSD thanks to [b1ru](https://github.com/b1ru) |
87 |
| -
|
88 |
| -v2.0.6: |
89 |
| --------- |
90 |
| -- **Fixed**: issue with paths in freeBSD thanks to [b1ru](https://github.com/b1ru) |
91 |
| -
|
92 |
| -v2.0.7: |
93 |
| --------- |
94 |
| -- **Fixed**: Typo in paths. |
95 |
| -
|
96 |
| -v2.0.8: |
97 |
| --------- |
98 |
| -- Finally somewhat fixed FreeBSD support. |
99 |
| -
|
100 |
| -v2.0.9: |
101 |
| --------- |
102 |
| -- **Fixed**: Issue with finding `libncursesw.so` |
103 |
| -
|
104 |
| -v2.1.0: |
105 |
| --------- |
| 1 | +v1.0: |
| 2 | +----- |
| 3 | + |
| 4 | +- Corrections in the readme |
| 5 | +- Some minor fixes to the wrapper (don't deserve to be mentioned). |
| 6 | +- Corrections to the test scripts so that they work fine on Mac OS X. |
| 7 | + |
| 8 | +v1.1: |
| 9 | +----- |
| 10 | + |
| 11 | +- Changed the way UniCurses behaves if a module import error occurs (it now raises an exception instead of calling the 'exit' function). |
| 12 | +- Released the module as a distutils package |
| 13 | + |
| 14 | +v1.2: |
| 15 | +----- |
| 16 | + |
| 17 | +- Implemented a patch by Florian Stohr that fixes compatibility with Win64 pdcurses/Python. Big thanks to Florian Stohr for the fix! |
| 18 | + |
| 19 | +v1.3: |
| 20 | +----- |
| 21 | + |
| 22 | +- **Fixed**: etc. |
| 23 | +- **Fixed**: setup.py issues. |
| 24 | +- **Added**: import pdcurses on windows 64 bit |
| 25 | +- **Fixed**: set_panel_userptr() fails with memory access violation |
| 26 | + |
| 27 | +v1.3.6: |
| 28 | +------- |
| 29 | + |
| 30 | +- **Added**: 64-bit binaries |
| 31 | + |
| 32 | +v1.3.7: |
| 33 | +------- |
| 34 | + |
| 35 | +- **Added**: 32-bit pdcurses-3.9 version binaries |
| 36 | +- **Fixed**: sdl2 version with WIDE (Unicode) support |
| 37 | + |
| 38 | +v1.3.74: |
| 39 | +-------- |
| 40 | + |
| 41 | +- minor changes |
| 42 | +- **Fixed**: (?) setup.py issues with other platforms |
| 43 | +- **Added**: set_tabsize() and get_tabsize() functions |
| 44 | + |
| 45 | +v1.3.78: |
| 46 | +-------- |
| 47 | + |
| 48 | +- overall minor changes |
| 49 | +- Modified: test_panels_advanced.py example |
| 50 | +- **Added**: test_move_panels_advanced.py example |
| 51 | +- **Fixed**: setup.py & pip, finally work as they should. |
| 52 | +- **Fixed**: waddch & wgetch & mvwaddch, now they support wide (unicode) characters |
| 53 | +- **Fixed**: mvwinstr, now it doesn't throw error for n |
| 54 | + |
| 55 | +v1.3.81: |
| 56 | +-------- |
| 57 | +- **Added**: attribute A_ITALIC |
| 58 | +- **Added**: resize_term function |
| 59 | +- **Added**: new binaries (not v3.9) |
| 60 | +- TEMPORARILY **Fixed**: mvwinch, now support wide (unicode) characters | Until https://github.com/python/cpython/pull/17825 gets merged or something |
| 61 | + |
| 62 | +v2.0.0: |
| 63 | +-------- |
| 64 | +- Update: Completly replaced cpython's ncurses-module with native the .so & .dylib libraries |
| 65 | +- **Added**: Python2 support thanks to the ^Update although not excessively tested |
| 66 | +- **Added**: UP-TO-DATE binaries for PDCURSES |
| 67 | +- **Added**: cchar_t structure for NCURSES |
| 68 | +- **Added**: wadd_wch, mvwadd_wch |
| 69 | +- **Added**: addwstr, waddwstr, mvaddwstr, mvwaddwstr |
| 70 | +- **Added**: CONSTANTS for both NCURSES and PDCURSES |
| 71 | +- **Added**: extra stuff to ucs_reconfigure |
| 72 | +- **Added**: marco wrappers for both NCURSES and PDCURSES |
| 73 | +- **Fixed**: removed the (TEMPORARILY Fixed) from v1.3.81 |
| 74 | +- DISCLAIMER: MANY THINGS ARE NOT TESTED YET. |
| 75 | + |
| 76 | +v2.0.4: |
| 77 | +-------- |
| 78 | +- **Fixed**: indentation at "return ((m) << (((b) - 1) * 5))" |
| 79 | +- **Fixed**: getmouse() and typo in MEVENT-structure |
| 80 | +- **Added**: BUTTON5 mouse events (scroll) |
| 81 | +- **Added**: getmaxy(), getmaxx() |
| 82 | +- **Added**: CTRL(ch) |
| 83 | + |
| 84 | +v2.0.5: |
| 85 | +-------- |
| 86 | +- **Fixed**: issue with `libpanelw.so.x` on freeBSD thanks to [b1ru](https://github.com/b1ru) |
| 87 | + |
| 88 | +v2.0.6: |
| 89 | +-------- |
| 90 | +- **Fixed**: issue with paths in freeBSD thanks to [b1ru](https://github.com/b1ru) |
| 91 | + |
| 92 | +v2.0.7: |
| 93 | +-------- |
| 94 | +- **Fixed**: Typo in paths. |
| 95 | + |
| 96 | +v2.0.8: |
| 97 | +-------- |
| 98 | +- Finally somewhat fixed FreeBSD support. |
| 99 | + |
| 100 | +v2.0.9: |
| 101 | +-------- |
| 102 | +- **Fixed**: Issue with finding `libncursesw.so` |
| 103 | + |
| 104 | +v2.1.0: |
| 105 | +-------- |
106 | 106 | - **Fixed**: Issue with finding shared libraries *(finally!)*
|
0 commit comments