<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/inkscape-main.cpp, branch livecoding</title>
<subtitle>An experimental livecoding plugin for Inkscape</subtitle>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/'/>
<entry>
<title>Add extensions directory in user folder to PYTHONPATH</title>
<updated>2019-06-14T20:29:27+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-06-13T21:20:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=370c52d1310a0d86e4d0c4ad125209f320918d54'/>
<id>370c52d1310a0d86e4d0c4ad125209f320918d54</id>
<content type='text'>
This allows users to install modules there and use them easily
within other modules (for example required for extension manager)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows users to install modules there and use them easily
within other modules (for example required for extension manager)
</pre>
</div>
</content>
</entry>
<entry>
<title>Ask Python extensions to return UTF-8 data</title>
<updated>2019-05-17T11:51:11+00:00</updated>
<author>
<name>Karl Cheng</name>
<email>qantas94heavy@gmail.com</email>
</author>
<published>2019-05-17T07:40:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=5af7c48b76091a0a4ed19e326371eaa87790bd80'/>
<id>5af7c48b76091a0a4ed19e326371eaa87790bd80</id>
<content type='text'>
By default, Python 2.x will encode output as ASCII to STDOUT/STDERR if
the output is piped. This commit explicitly requests UTF-8 output by
setting the PYTHONIOENCODING environment variable.

Note this will not fix text encoding problems where the extension itself
does not support Unicode properly.

Refs: https://gitlab.com/inkscape/extensions/merge_requests/90
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By default, Python 2.x will encode output as ASCII to STDOUT/STDERR if
the output is piped. This commit explicitly requests UTF-8 output by
setting the PYTHONIOENCODING environment variable.

Note this will not fix text encoding problems where the extension itself
does not support Unicode properly.

Refs: https://gitlab.com/inkscape/extensions/merge_requests/90
</pre>
</div>
</content>
</entry>
<entry>
<title>Add inkex/deprecated-simple to PYTHONPATH</title>
<updated>2019-04-28T06:26:51+00:00</updated>
<author>
<name>Thomas Holder</name>
<email>thomas@thomas-holder.de</email>
</author>
<published>2019-04-26T21:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=0a5dc276335f6c9b18d522baa30048b51c987cd4'/>
<id>0a5dc276335f6c9b18d522baa30048b51c987cd4</id>
<content type='text'>
Closes #223
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #223
</pre>
</div>
</content>
</entry>
<entry>
<title>Usage of get_program_dir() is more appropriate here</title>
<updated>2019-03-30T21:46:47+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-30T21:46:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=d8c3ca3181470ca18f1cc9ccffebced82f2fc510'/>
<id>d8c3ca3181470ca18f1cc9ccffebced82f2fc510</id>
<content type='text'>
It points at the same folder currently, but this will change with
  https://gitlab.com/inkscape/inkscape/issues/82
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It points at the same folder currently, but this will change with
  https://gitlab.com/inkscape/inkscape/issues/82
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove "get_extensions_path()"</title>
<updated>2019-03-30T20:30:51+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-30T18:57:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=09b38582c874646b49d10a8f11850c10b9c6ad39'/>
<id>09b38582c874646b49d10a8f11850c10b9c6ad39</id>
<content type='text'>
Contrary to what the name and placing suggest it's not a general
utility function but a specialized function that constructs the full
value to set for PYTHONPATH.

Despite the misleading placement most functionality is unneeded:
* INKSCAPE_EXTENSIONDIR should always be absolute
* g_setenv recommends UTF-8 on Windows
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Contrary to what the name and placing suggest it's not a general
utility function but a specialized function that constructs the full
value to set for PYTHONPATH.

Despite the misleading placement most functionality is unneeded:
* INKSCAPE_EXTENSIONDIR should always be absolute
* g_setenv recommends UTF-8 on Windows
</pre>
</div>
</content>
</entry>
<entry>
<title>Add inscape to search path</title>
<updated>2019-03-30T20:30:51+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-30T18:05:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=4eb1edd5538af23101a0dc765abc394a06fbd3c0'/>
<id>4eb1edd5538af23101a0dc765abc394a06fbd3c0</id>
<content type='text'>
This primarily allows extensions to simply call "inkscape"
without requiring the user to modify environment variables or
worrying about different versions of inkscape on the same machine
(as we prefix the search path).

We did this already for Windows but the code was removed in
  db05b842cba28f01b431eee890537959aa2d8fe3

Partially fixes https://gitlab.com/inkscape/inkscape/issues/115
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This primarily allows extensions to simply call "inkscape"
without requiring the user to modify environment variables or
worrying about different versions of inkscape on the same machine
(as we prefix the search path).

We did this already for Windows but the code was removed in
  db05b842cba28f01b431eee890537959aa2d8fe3

Partially fixes https://gitlab.com/inkscape/inkscape/issues/115
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore "Add inkscape root directory to DLL search path"</title>
<updated>2019-03-30T16:14:23+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-30T13:42:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=96117fe989d09286de03d7cc6110d6016ebab3e1'/>
<id>96117fe989d09286de03d7cc6110d6016ebab3e1</id>
<content type='text'>
See ecfc9efaf66d054fda239f48ef984190a89e6bae for details.

This was dropped in db05b842cba28f01b431eee890537959aa2d8fe3

Partial fix for https://gitlab.com/inkscape/inkscape/issues/115
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See ecfc9efaf66d054fda239f48ef984190a89e6bae for details.

This was dropped in db05b842cba28f01b431eee890537959aa2d8fe3

Partial fix for https://gitlab.com/inkscape/inkscape/issues/115
</pre>
</div>
</content>
</entry>
<entry>
<title>An a few more config.h fixes</title>
<updated>2019-03-28T21:23:01+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-28T21:23:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=5606bdeb7c7006347224bdce324d4b8cc048ce8b'/>
<id>5606bdeb7c7006347224bdce324d4b8cc048ce8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore set_extensions_env()</title>
<updated>2019-03-05T08:18:15+00:00</updated>
<author>
<name>Thomas Holder</name>
<email>thomas@thomas-holder.de</email>
</author>
<published>2019-03-02T21:41:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=67791edc4f8ef12c82ad46db06ec6bd98b815b0e'/>
<id>67791edc4f8ef12c82ad46db06ec6bd98b815b0e</id>
<content type='text'>
Function got lost in 408cb49b

Fixes #60
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Function got lost in 408cb49b

Fixes #60
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn InkscapeApplication into singleton.</title>
<updated>2019-02-15T12:07:06+00:00</updated>
<author>
<name>Tavmjong Bah</name>
<email>tavmjong@free.fr</email>
</author>
<published>2019-02-15T12:07:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=93ae542b95b3708e49a75aaa6f81943819e95f7e'/>
<id>93ae542b95b3708e49a75aaa6f81943819e95f7e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
