Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)Author
2012-03-04Add release notes for 2.1.0 release2.1.0Mark Pulford
2012-03-04Update release date for 2.0.0 to 22 Jan 20122.0.0Mark Pulford
2012-03-04Update NEWS for 2.0.0 releaseMark Pulford
2012-03-04Bump version to 2.0develMark Pulford
Bump version to 2.0devel due to significant changes and updated API (runtime config not fully backwards compatible).
2011-12-31Update NEWS for 1.0.5Mark Pulford
2011-12-12Convert documentation to AsciiDocMark Pulford
- Rename README to manual.txt and add AsciiDoc markup - Rewrite some sections of documentation (more outstanding) - Add "doc" Makefile target - Update RPM spec file to include HTML output
2011-12-08Fix Makefile for use with non-GNU makeMark Pulford
- Remove GNU make "override" statements. - Add OBJS variable since there is no portable way to specify all targets for linking. Also: - Put build defaults at the top to avoid potential confusion. - Don't assume a Linux platform. Default to USE_POSIX_SETLOCALE. - Change "install -d" to mkdir/install since the former isn't available on some platforms (Solaris).
2011-11-29Update NEWS for 1.0.4 release1.0.4Mark Pulford
2011-10-05Support locales which use comma decimal separatorsMark Pulford
Some locales (cs_CZ, de_DE,..) use a comma as their decimal separator. This causes CJSON to generate incorrect JSON (Eg, [10,1]), and fail when parsing some valid JSON (Eg, [10,"test"]). Added USE_POSIX_LOCALE #define which harnesses the thread-safe POSIX.1-2008 locale support (newlocale(), uselocale(), freelocale()) to temporarily use the POSIX locale during JSON conversion. Some older POSIX operating systems with xlocale.h (MacOSX) are also supported.
2011-09-15Add release notes for 1.0.31.0.3Mark Pulford
Also update release date in RPM spec file.
2011-05-29Update version to 1.0.2Mark Pulford
2011-05-10Add stack overflow fix to NEWSMark Pulford
2011-05-10Add runtime option for persistent encode bufferMark Pulford
2011-05-10Remove whitespace from generated JSON outputMark Pulford
Remove excess whitespace to reduce output size and increase encode performance. Suggested by: Zhang "agentzh" Yichun <agentzh@gmail.com>
2011-05-10Update version to 1.0.1Mark Pulford
2011-05-08Add changelog (NEWS)Mark Pulford