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

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-31make DEFINITIONS SI_NoCase & SI_Case for SI_NO_CONVERSION (#52)HEADmasterVShawn
Looks reasonable.
2020-06-21Try again to fix build statusBrodie Thiesfield
2020-06-21Fix build statusBrodie Thiesfield
2020-06-16Fix for issue 4 "value returned by GetValue for multiline includes ENDTAG" ↵unknown
caused by end tags having whitespace after them
2020-06-16Fix problem where items without a section (e.g. the empty section) were ↵unknown
added into whichever section they were created after.
2020-06-16Create a new SI_NO_CONVERSION define to disable all wchar conversion. This ↵unknown
means that ConvertUTF.c is not required.
2020-06-16Move back to top level of repositoryBrodie Thiesfield
2020-06-16Fixing build on linuxwatercal
2020-06-16First stage of updating the project to have full test harness and ↵unknown
incorporate some of the requested changes
2018-08-31Make compile with C++17 (#37)csware
binary_function was deprecated in C++11 and removed in C++17. Signed-off-by: Sven Strickroth <email@cs-ware.de>
2017-08-25Enable unicode when data starts with UTF-8 BOMBrodie Thiesfield
Automatically enable the Unicode mode if the data being loaded starts with the UTF-8 BOM.
2017-08-25Hookup with TravisCI (#30)Mike Tzou
Add TravisCI
2017-08-25Replace std::binary_function with std::function (#31)Ian Dunn
* std::binary_function is deprecated in C++11, removed in C++17 - replace with std::function * Remove inheritance of std::function<...> that is not necessary. See #31
2016-07-24Merge pull request #20 from leokoppel/masterBrodie Thiesfield
Fix failure on loading empty file
2016-07-22Fix failure on loading empty fileLeo Koppel
Re: brofield/simpleini#19 The Windows, Unicode, UTF-8 version of SizeFromStore returns failure when given zero-length data. Fix by moving a_uDataLen == 0 check to after the UTF-8 BOM removal.
2015-10-12Merge pull request #17 from vladon/masterBrodie Thiesfield
correct use of `new`
2015-10-12correct use of `new`Vladislav Yaroslavlev
`new` without `std::nothrow` does not return NULL, it throws an exception; use `new(std::nothrow)` instead for correct detecting of no memory error
2015-03-02Update SimpleIni.hBrodie Thiesfield
Spell it all out in full
2015-03-02Merge pull request #8 from LogicalKnight/masterBrodie Thiesfield
Add missing #include for cstdlib
2014-11-12Add missing #include for cstdlibSean LK
Required for functions like strtol.
2014-11-11Merge pull request #7 from noryb009/masterBrodie Thiesfield
Add DeleteValue()
2014-07-22Add DeleteValue()noryb009
DeleteValue() deletes a given key from a given section, if it has a given value.
2014-06-12Use explicit scope for SizeToStore memberBrodie Thiesfield
2013-09-28Prepare for release4.17Brodie Thiesfield
2013-09-28Fixes issue #3Brodie Thiesfield
Fixes issue #3
2013-09-28Fixes issue #2Brodie Thiesfield
2013-09-28Fix formatting4.16Brodie Thiesfield
2013-09-28Update LICENCE.txtBrodie Thiesfield
2013-09-28Create LICENCE.txtBrodie Thiesfield
2013-09-28Update README.mdBrodie Thiesfield
2013-09-28Create README.mdBrodie Thiesfield
2013-02-13Fix for issue 7: mbstowcs with NULL dest is not supported by all librariesBrodie Thiesfield
2013-02-01Fix for issue 7: mbstowcs is used in non-standard way, thus casing crash ↵Brodie Thiesfield
with gcc
2012-08-16Update revision numberBrodie Thiesfield
2012-08-16Ensure that the file buffer is always null terminated (thanks to irov13 for ↵Brodie Thiesfield
bug notification and patch)
2012-03-29added fix for compiling with clangBrodie Thiesfield
2012-02-27update copyright dateBrodie Thiesfield
2012-02-27Fix a bug reported by andreaplanet in the ICU processing that caused ↵Brodie Thiesfield
conversion of zero-length strings (like empty values) to fail. See http://www.codeproject.com/Articles/13881/Cross-platform-INI-Configuration-Files-Win32-Un-x?msg=4148327#xx4148327xx
2011-03-17update version numberBrodie Thiesfield
2011-03-17prepare for 4.14 releaseBrodie Thiesfield
* change Load() to LoadData() to avoid confusion * add support for GetDoubleValue/SetDoubleValue
2010-04-19hardcode doxygen path in packagerBrodie Thiesfield
2010-04-19v4.13, get rid of warning when building with VS 2010Brodie Thiesfield
2009-09-15release 4.12Brodie Thiesfield
2009-09-11Fix for security warnings with VC9Brodie Thiesfield
2009-09-10ensure that UTF32 is 32-bits on a 64-bit platform. It should still be 32 on ↵Brodie Thiesfield
a 32-bit platform even with this change.
2009-06-30add test target to MakefileBrodie Thiesfield
2009-06-30revert to vc2003 project filesBrodie Thiesfield
2009-06-30build with VC2008 no warningsBrodie Thiesfield
2009-06-30test script (although really just testing in name rather than spirit)Brodie Thiesfield
2009-06-30fixing mime-types and line endingsBrodie Thiesfield