|
1 | 1 | New in 2.1.0:
|
2 |
| -* Add a new function `iconv_t iconv_open(int tocode_cp, int fromcode_cp, bool strict = true);` and codepage definitions. |
3 |
| -* Add new function `int iconv_string(const iconv_t& cd, const char *start, const char *end, char **resultp, size_t *lengthp)` |
4 |
| -* Add new function `int iconv_string(int tocode_cp, int fromcode_cp, const char* start, const char* end, char** resultp, size_t* lengthp, bool strict=true)` |
5 |
| -* Update function 'encode' definion. |
6 |
| -* Add CTest on Windows support. |
7 |
| -* Remove 'iconv_allocation_t'; |
8 |
| -* Fully remove wchar support. |
9 |
| -* Fix some bugs. |
10 |
| -* Add header comments NLS support. |
| 2 | +* Add NLS support for the include file, only support en_US and zh_CN. |
| 3 | +* Add CTest support for Windows. |
11 | 4 | * Add Doxygen comments for 'cppp/reiconv.hpp'.
|
| 5 | +* New feature: Convert by codepage. |
| 6 | +* New function: `iconv_t iconv_open (int tocode_cp, int fromcode_cp, bool strict=true);`. |
| 7 | +* New function: `int iconv_string(int tocode_cp, int fromcode_cp, const char* start, const char* end, char** resultp, size_t* lengthp, bool strict=true);`. |
| 8 | +* Update definion of the function `encode`. |
| 9 | +* Update C++ standard of the project to C++17. |
| 10 | +* Change the 'autodetect' feature of 'iconv_string' to a non extra feature. |
| 11 | +* Remove `iconv_allocation_t`, fully remove wchar support. |
| 12 | +* Modify the LGPL version in the copyright statement in the file to 3. |
| 13 | +* Move `lib/gen*.c` to `tools/gen*.cpp`. |
| 14 | +* Optimize `Makefile.devel`. |
| 15 | +* Fix bugs, warnings, typos. |
| 16 | + |
12 | 17 | * Change the 'autodetect' feature of 'iconv_string' to a non extra feature.
|
13 | 18 |
|
14 | 19 | New in 2.0.0:
|
|
0 commit comments