<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/file.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>Remove OCAL</title>
<updated>2019-11-01T23:08:03+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2019-11-01T19:27:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=a1253803f469ff6be714ec7ce2837286e719939d'/>
<id>a1253803f469ff6be714ec7ce2837286e719939d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move imported files to position of mouse pointer when dropped</title>
<updated>2019-10-07T20:00:51+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-09-26T18:00:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=bc7264191fa20c35f6da87e32ba2fbaaf57704fc'/>
<id>bc7264191fa20c35f6da87e32ba2fbaaf57704fc</id>
<content type='text'>
We only considered the position of the mouse pointer *after*
clicking through possible import dialogs, so we usually imported
at the position of the "OK" button of the import dialog.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We only considered the position of the mouse pointer *after*
clicking through possible import dialogs, so we usually imported
at the position of the "OK" button of the import dialog.
</pre>
</div>
</content>
</entry>
<entry>
<title>Templates: Accept non-underscored variants of "inkscape:templateinfo"</title>
<updated>2019-08-31T14:50:39+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-08-10T21:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=b3949ea33b9145a8c285ff835a61a9f92188fbe7'/>
<id>b3949ea33b9145a8c285ff835a61a9f92188fbe7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace deprecated Gtk::Main::quit() call</title>
<updated>2019-06-16T09:43:07+00:00</updated>
<author>
<name>Karl Cheng</name>
<email>qantas94heavy@gmail.com</email>
</author>
<published>2019-05-22T10:39:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=eee1a8040505f84fad7b313a82082e85ea0a94c6'/>
<id>eee1a8040505f84fad7b313a82082e85ea0a94c6</id>
<content type='text'>
As this should only be called in a console context, we can replace
Gtk::Main::quit() with Gio::Application::quit().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As this should only be called in a console context, we can replace
Gtk::Main::quit() with Gio::Application::quit().
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused code for NEW_EXPORT_DIALOG</title>
<updated>2019-03-27T20:28:03+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-27T18:43:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=9f542bb81f342cbc65a00aeadd084ab3945b02a5'/>
<id>9f542bb81f342cbc65a00aeadd084ab3945b02a5</id>
<content type='text'>
Functionality seems to have been replaced by "Save a Copy" and the
PNG export dialog respectively.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Functionality seems to have been replaced by "Save a Copy" and the
PNG export dialog respectively.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix adding/lookup of recent files.</title>
<updated>2019-03-27T18:12:20+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-27T18:06:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=d21ee683ed80338f958a2d1368727523a89a936d'/>
<id>d21ee683ed80338f958a2d1368727523a89a936d</id>
<content type='text'>
Avoid setting an application name as Gtk::RecentManager calls
  g_get_application_name ()
internally to determine the default "name" attribute used for new
entries in the list of recently used files (recently-used.xbel)

Our Gtk::RecentFilter in menubar.cpp expects the name to equal to
  g_get_prgname ()
though (which happens to be the fallback of g_get_application_name,
but only if no application name is set as in earlier versions)

The alternative would be to set metadata manually, but it would
require us to set *all* fields manually (including mime type, etc.).

See also
  https://gitlab.gnome.org/GNOME/gtk/issues/1775

Fixes
  https://gitlab.com/inkscape/inkscape/issues/160
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid setting an application name as Gtk::RecentManager calls
  g_get_application_name ()
internally to determine the default "name" attribute used for new
entries in the list of recently used files (recently-used.xbel)

Our Gtk::RecentFilter in menubar.cpp expects the name to equal to
  g_get_prgname ()
though (which happens to be the fallback of g_get_application_name,
but only if no application name is set as in earlier versions)

The alternative would be to set metadata manually, but it would
require us to set *all* fields manually (including mime type, etc.).

See also
  https://gitlab.gnome.org/GNOME/gtk/issues/1775

Fixes
  https://gitlab.com/inkscape/inkscape/issues/160
</pre>
</div>
</content>
</entry>
<entry>
<title>Misc. typos</title>
<updated>2019-03-26T11:17:17+00:00</updated>
<author>
<name>luz.paz</name>
<email>luzpaz@users.noreply.github.com</email>
</author>
<published>2019-03-26T11:17:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=57678b4b45f7f76778f7ca04b38ac9a77add9dbb'/>
<id>57678b4b45f7f76778f7ca04b38ac9a77add9dbb</id>
<content type='text'>
Found via `codespell` </content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found via `codespell` </pre>
</div>
</content>
</entry>
<entry>
<title>Make InkscapeApplication responsible for managing documents and windows.</title>
<updated>2019-03-15T14:21:30+00:00</updated>
<author>
<name>Tavmjong Bah</name>
<email>tavmjong@free.fr</email>
</author>
<published>2019-03-15T14:21:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=1602477dfd4371a17639b0b6e4f59f5a5ea9565a'/>
<id>1602477dfd4371a17639b0b6e4f59f5a5ea9565a</id>
<content type='text'>
Any change from previous behavior is a bug.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Any change from previous behavior is a bug.
</pre>
</div>
</content>
</entry>
<entry>
<title>Save default template as "default.$lang.svg" if present</title>
<updated>2019-03-10T00:44:20+00:00</updated>
<author>
<name>Patrick Storz</name>
<email>eduard.braun2@gmx.de</email>
</author>
<published>2019-03-10T00:19:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=fb85d5e1be440be7e9ee75e1a41d49e37383688c'/>
<id>fb85d5e1be440be7e9ee75e1a41d49e37383688c</id>
<content type='text'>
By default we want to save as "default.svg", so it works indepentent
from the UI language selected.

However if a localized default template like "default.de.svg" is
already present (i.e. manually created by the user), it will
override our custom template, so we need to overwrite it.

Second  part of a fix for
  https://gitlab.com/inkscape/inkscape/issues/103
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By default we want to save as "default.svg", so it works indepentent
from the UI language selected.

However if a localized default template like "default.de.svg" is
already present (i.e. manually created by the user), it will
override our custom template, so we need to overwrite it.

Second  part of a fix for
  https://gitlab.com/inkscape/inkscape/issues/103
</pre>
</div>
</content>
</entry>
<entry>
<title>Give more descriptive names to document file related variables and functions.</title>
<updated>2019-02-20T09:50:38+00:00</updated>
<author>
<name>Tavmjong Bah</name>
<email>tavmjong@free.fr</email>
</author>
<published>2019-02-20T09:50:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=774bee47ed685bd666173cb4d1664933217371c9'/>
<id>774bee47ed685bd666173cb4d1664933217371c9</id>
<content type='text'>
Makes searching through code for them easier.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes searching through code for them easier.
</pre>
</div>
</content>
</entry>
</feed>
