<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libplist/cython, branch 2.3.0</title>
<subtitle>Library to handle Apple Property List format files in binary or XML</subtitle>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/'/>
<entry>
<title>Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()</title>
<updated>2023-01-16T03:25:52+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2023-01-16T03:25:52+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=d886885b0ec2506fa2caf0986a3d0e496fea91c2'/>
<id>d886885b0ec2506fa2caf0986a3d0e496fea91c2</id>
<content type='text'>
This properly supports getting and setting signed or unsigned integer values.
Also, a new helper function plist_int_val_is_negative() was added to determine if
a given #PLIST_INT node has a negative value or not.

The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for
backwards compatibility.

This commit also adds int vs. uint support to the C++ interface, and the python
bindings in a hopefully useful way.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This properly supports getting and setting signed or unsigned integer values.
Also, a new helper function plist_int_val_is_negative() was added to determine if
a given #PLIST_INT node has a negative value or not.

The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for
backwards compatibility.

This commit also adds int vs. uint support to the C++ interface, and the python
bindings in a hopefully useful way.
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Fix 2 warnings with `-Wbad-function-cast`</title>
<updated>2022-09-04T23:34:43+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2022-09-04T23:34:43+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=c3af449543795ad4d3ab178120ff69e90fdd2cc8'/>
<id>c3af449543795ad4d3ab178120ff69e90fdd2cc8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Fix Windows build</title>
<updated>2022-02-07T11:20:49+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2022-02-07T11:20:49+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=19c17052d6cf9fe29039a1869b799efc0b687dc3'/>
<id>19c17052d6cf9fe29039a1869b799efc0b687dc3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Fix for LibTool compilation and Python 3 libintl</title>
<updated>2022-02-07T09:02:52+00:00</updated>
<author>
<name>Rick Mark</name>
</author>
<published>2021-10-13T13:01:31+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=4daba282b8108cf08ef001a7f113a64523f429ed'/>
<id>4daba282b8108cf08ef001a7f113a64523f429ed</id>
<content type='text'>
On Python 3.9 `libpython` no longer is linkable as a static library
due to the fact that `libpython` now depends on `libintl`.  This would
mean we would have to import `libintl` to create a fully linked .la

It is better to be explicit that we are building a .so (really a .dylib
but autotools uses linux file conventions) that doesn't have to be fully
resolved.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Python 3.9 `libpython` no longer is linkable as a static library
due to the fact that `libpython` now depends on `libintl`.  This would
mean we would have to import `libintl` to create a fully linked .la

It is better to be explicit that we are building a .so (really a .dylib
but autotools uses linux file conventions) that doesn't have to be fully
resolved.
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Add -no-undefined to linker flags for shared python lib</title>
<updated>2021-06-08T23:43:48+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2021-06-08T23:43:48+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=bac951e2961b18bb7ee34ae3bd0b993d1d351b74'/>
<id>bac951e2961b18bb7ee34ae3bd0b993d1d351b74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add API version to library and pkgconfig file for proper linking</title>
<updated>2020-06-14T21:18:39+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2020-06-13T01:30:05+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=eff97404bd3ca5954a100a68705474956f1a89dc'/>
<id>eff97404bd3ca5954a100a68705474956f1a89dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Unfold automake variables into multiple lines for maintainability</title>
<updated>2020-06-09T16:19:07+00:00</updated>
<author>
<name>Martin Szulecki</name>
</author>
<published>2020-06-09T16:19:07+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=c14849987d893999c03f165b49257e108d07bad3'/>
<id>c14849987d893999c03f165b49257e108d07bad3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Fix get_value for Data nodes</title>
<updated>2020-04-14T00:51:05+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2020-04-14T00:51:05+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=fbee194fd9cc25e7438e73896ba81020ef1dd266'/>
<id>fbee194fd9cc25e7438e73896ba81020ef1dd266</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Fix handling of Date nodes (needs MACH_EPOCH)</title>
<updated>2020-04-13T21:21:15+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2020-04-13T21:21:15+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=e7355a408a305d0a9aba7c30bbd5a33d978a03c7'/>
<id>e7355a408a305d0a9aba7c30bbd5a33d978a03c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cython: Make sure plist.pxd is installed correctly</title>
<updated>2019-08-08T09:17:03+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2019-08-08T09:13:25+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libplist.git/commit/?id=811a53aefe4693113ef723783c151e473853a398'/>
<id>811a53aefe4693113ef723783c151e473853a398</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
