| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2017-03-21 | 1.7 kB | |
| v4.0.0.tar.gz | 2017-03-21 | 972.7 kB | |
| v4.0.0.zip | 2017-03-21 | 1.1 MB | |
| Totals: 3 Items | 2.1 MB | 0 | |
- API breaking changes
- MyHTML split to MyCORE, MyHTML, MyENCODING. MyCORE is a base module which include shared functions for all others modules. Each of the modules can build without other modules if he not dependent at it. It is good for those need only URL parse and not need other modules.
- Removed all io print functions to file:
myhtml_tree_print_by_node,myhtml_tree_print_node_children,myhtml_tree_print_node; Use serializations instead of their - If you use encoding enum, like
MyHTML_ENCODING_UTF8, now itMyENCODING_UTF_8, i.eMyHTML_ENCODING_* => MyENCODING_* - Functions migrated to MyCORE from MyHTML:
myhtml_incoming_buffer_*=>mycore_incoming_buffer_*,myhtml_string*=>mycore_string*,myhtml_utils*=>mycore_utils* - Fully refactoring build system with GNU Make (Makefile), now it expects generally accepted parameters and rules, like
install,clean,libraryand more - Tested create a DLL library for Windows OS
- Support create ports for different OS or for simple change work with memory, io, threads (if build with threads, default)
- Support add self modules for build library
- Now all return statuses, like a
myhtml_status_t,mycss_status_tchanged to globalmystatus_t(unsigned int) - Added forgot '\0' if text node ends with '\r' #91
- Remove CMakeLists.txt
- Added PKG-CONFIG *.pc after make command