Skip to content

Releases: benhoyt/inih

inih version 48

01 Mar 06:32
3512171
Compare
Choose a tag to compare

Added meson.build. Thanks @stephanlachnit.

inih version 47

14 Dec 02:48
Compare
Choose a tag to compare

Fix crashes due to name or value being NULL if INI_CALL_HANDLER_ON_NEW_SECTION or INI_ALLOW_NO_VALUE are enabled, respectively (see #93). Also add INIReader constructor accepting a buffer (#92). Thanks @vrresto.

inih version 46

05 Oct 20:11
Compare
Choose a tag to compare

Add INI_ALLOW_NO_VALUE: by default, inih treats a name with no value (no = or : on the line) as an error. To allow names with no values, add -DINI_ALLOW_NO_VALUE=1, and inih will call your handler function with value set to NULL. Thanks @weltling.

inih version 45

02 Aug 00:45
Compare
Choose a tag to compare

Ensure INI_CALL_HANDLER_ON_NEW_SECTION is always defined. Add copyright and SPDX-License fields to source files.

inih version 44

24 May 08:06
Compare
Choose a tag to compare

Add HasSection() to C++ API. #81

inih version 43

09 Apr 01:03
Compare
Choose a tag to compare

Support for calling handler on new section (INI_CALL_HANDLER_ON_NEW_SECTION). Thanks @ksdhans. Fixes #79.

inih version 42

15 May 01:49
Compare
Choose a tag to compare

Silence -Wstringop-truncation #64

inih version r41

09 Feb 16:22
Compare
Choose a tag to compare

Adds INI_START_COMMENT_PREFIXES to allow changing start-of-line comment chars. Addresses #62.

inih version r40

31 May 13:00
Compare
Choose a tag to compare

Add ini_parse_string() function to parse INI data directly from a string (addresses #57 and #38).

inih version r39

29 Dec 16:03
Compare
Choose a tag to compare

Add compile-time flag INI_HANDLER_LINENO to allow reporting current line number to handler callback (originated in #56).