<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/widgets/select-toolbar.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>Move toolbars to ui/toolbar</title>
<updated>2018-06-17T16:00:04+00:00</updated>
<author>
<name>Alexander Valavanis</name>
<email>valavanisalex@gmail.com</email>
</author>
<published>2018-06-17T16:00:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=039408dbad2877c3b75d08f66dddaff17fe3dcf3'/>
<id>039408dbad2877c3b75d08f66dddaff17fe3dcf3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Misc. typos</title>
<updated>2018-05-14T19:38:17+00:00</updated>
<author>
<name>luz.paz</name>
<email>luzpaz@users.noreply.github.com</email>
</author>
<published>2018-05-09T14:37:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=5f701e9b37a3a8adc6e4964bc7fac0f34dfc9db1'/>
<id>5f701e9b37a3a8adc6e4964bc7fac0f34dfc9db1</id>
<content type='text'>
Found via `codespell` and `grep`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found via `codespell` and `grep`</pre>
</div>
</content>
</entry>
<entry>
<title>Convert UnitTracker to use ink-select-one-action.</title>
<updated>2018-02-04T19:14:50+00:00</updated>
<author>
<name>Tavmjong Bah</name>
<email>tavmjong@free.fr</email>
</author>
<published>2018-02-04T19:14:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=2b79799fff8ed89c649a934186c176cb2765823c'/>
<id>2b79799fff8ed89c649a934186c176cb2765823c</id>
<content type='text'>
Additional code clean up.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Additional code clean up.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move classes derived from SPObject to own directory.</title>
<updated>2018-01-30T08:33:01+00:00</updated>
<author>
<name>Tavmjong Bah</name>
<email>tavmjong@free.fr</email>
</author>
<published>2018-01-30T08:33:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=267299811df952d08324a39008f52c19641de9e0'/>
<id>267299811df952d08324a39008f52c19641de9e0</id>
<content type='text'>
A lot of header clean-up.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A lot of header clean-up.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove old icon handling code</title>
<updated>2017-06-29T11:43:56+00:00</updated>
<author>
<name>Alexander Valavanis</name>
<email>valavanisalex@gmail.com</email>
</author>
<published>2017-06-29T11:43:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=22d06152d0fabc7fe50bb6829f00b2bac4ed1796'/>
<id>22d06152d0fabc7fe50bb6829f00b2bac4ed1796</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix selection toolbar icons missing on start</title>
<updated>2016-11-12T09:52:50+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2016-11-12T09:52:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=9d5b2b1b51810c97dd941b051f7bcfeada346fa4'/>
<id>9d5b2b1b51810c97dd941b051f7bcfeada346fa4</id>
<content type='text'>
(bzr r15240)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r15240)</pre>
</div>
</content>
</entry>
<entry>
<title>CPPification: almost all sp_object_set_whatever and sp_selection_whatever global functions are now methods of ObjectSet*, with these additional benefits:</title>
<updated>2016-10-24T22:58:43+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2016-10-24T22:58:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=532f77b14a76fc04e6bdeca3625f9a55b5f11bdf'/>
<id>532f77b14a76fc04e6bdeca3625f9a55b5f11bdf</id>
<content type='text'>
- They can now act on any SelectionSet, not just the current selection;
- Whenever possible, they don't need a desktop anymore and can run if called from GUI.

I hope I did not break too many things in the process.

*: So instead of callink sp_selection_move(desktop,x,y), you call myobjectset-&gt;move(x,y)

(bzr r15189)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- They can now act on any SelectionSet, not just the current selection;
- Whenever possible, they don't need a desktop anymore and can run if called from GUI.

I hope I did not break too many things in the process.

*: So instead of callink sp_selection_move(desktop,x,y), you call myobjectset-&gt;move(x,y)

(bzr r15189)</pre>
</div>
</content>
</entry>
<entry>
<title>Merged trunk</title>
<updated>2016-08-09T09:33:34+00:00</updated>
<author>
<name>Adrian Boguszewski</name>
<email>adrbogus1@student.pg.gda.pl</email>
</author>
<published>2016-08-09T09:33:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=577a95c2028790cbb856feda6ac6880ddd1aaad2'/>
<id>577a95c2028790cbb856feda6ac6880ddd1aaad2</id>
<content type='text'>
(bzr r14954.1.30)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r14954.1.30)</pre>
</div>
</content>
</entry>
<entry>
<title>Split InkAction classes into separate files</title>
<updated>2016-08-05T18:07:48+00:00</updated>
<author>
<name>Alex Valavanis</name>
<email>valavanisalex@gmail.com</email>
</author>
<published>2016-08-05T18:07:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=a0cacd78d5d987eafa3739bb8f45587d82246780'/>
<id>a0cacd78d5d987eafa3739bb8f45587d82246780</id>
<content type='text'>
(bzr r15043)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r15043)</pre>
</div>
</content>
</entry>
<entry>
<title>End GTK+ 2 support and remove GDL fork</title>
<updated>2016-08-04T11:26:03+00:00</updated>
<author>
<name>Alex Valavanis</name>
<email>valavanisalex@gmail.com</email>
</author>
<published>2016-08-04T11:26:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=16fbf83a79ecd1882817598b74a14c07115a5a2c'/>
<id>16fbf83a79ecd1882817598b74a14c07115a5a2c</id>
<content type='text'>
(bzr r15038)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r15038)</pre>
</div>
</content>
</entry>
</feed>
