Skip to content

Releases: benhoyt/inih

inih version 58

24 Jan 17:06
5cc5e2c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: r57...r58

inih version 57

07 Jul 02:02
9cecf06
Compare
Choose a tag to compare

What's Changed

  • MSVC throws C4244 by @AbsintheScripting in #142
  • Added a GetUnsigned function for getting unsigned values. by @jcormier in #147
  • meson.build: fix start-of-line_comment_prefix variable name by @ihilt in #149
  • Added GetInteger64 and GetUnsigned64 to read 64-bit integers by @natcat256 in #151

New Contributors

Full Changelog: r56...r57

inih version 56

12 Jul 21:15
Compare
Choose a tag to compare

inih version 55

25 Mar 21:32
Compare
Choose a tag to compare

Added "version" to meson.build config: #135 (but bumped up to 55 in a subsequent commit, for this release).

inih version 54

23 Mar 19:34
5a31af9
Compare
Choose a tag to compare

Mainly #134, adding the visibility symbols to the Meson build config, but also other small tweaks to tests and so on.

inih version 53

07 Feb 20:38
cb55f57
Compare
Choose a tag to compare

Updates to Meson config:

  • #124 meson: optionally depend on C++
  • #125 meson: enable distro settings by default
  • #126 meson: add static compile args to inih_dep

inih version 52

13 Oct 08:30
1e80a47
Compare
Choose a tag to compare

Add INI_CUSTOM_ALLOCATOR to allow using a custom memory allocator. Per the README:

By default when using the heap, the standard library's malloc, free, and realloc functions are used; to use a custom allocator, specify -DINI_CUSTOM_ALLOCATOR=1 (and -DINI_USE_STACK=0). You must define and link functions named ini_malloc, ini_free, and (if INI_ALLOW_REALLOC is set) ini_realloc, which must have the same signatures as the stdlib.h memory allocation functions.

See tests/unittest_alloc.c for an example.

Fixes #118.

inih version 51

19 Jun 00:24
Compare
Choose a tag to compare

Fix potential read from invalid memory with memcpy fix (#107 - thanks @nolange).

inih version 50

08 Jun 07:51
Compare
Choose a tag to compare

Use memcpy instead of strncpy to avoid gcc warnings (issue #104 and #91)

inih version 49

22 Apr 02:50
16787c4
Compare
Choose a tag to compare

Meson build updates and options, README tweak (no code changes)