<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/object-set.h, 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 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>Fix message probles on boolops and for example when moving or transforming a selection no message</title>
<updated>2017-12-29T17:40:45+00:00</updated>
<author>
<name>Jabiertxo Arraiza Cenoz</name>
<email>jtx@jtx-desktop.markerlab.es</email>
</author>
<published>2017-12-29T17:40:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=616721bb0ccc9990083361b1dd4f636f76e405fc'/>
<id>616721bb0ccc9990083361b1dd4f636f76e405fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug: crash - iterator corrupted by removing objects from container</title>
<updated>2017-10-03T19:59:51+00:00</updated>
<author>
<name>Friedrich Beckmann</name>
<email>friedrich.beckmann@gmx.de</email>
</author>
<published>2017-10-03T19:59:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=9e706a36a08dce0d6434cc3186961bcf813533c0'/>
<id>9e706a36a08dce0d6434cc3186961bcf813533c0</id>
<content type='text'>
On MacOS El Capitan with XCode 7.3 inkscape crashes when a
second item is drawn in the drawing area. The crash is
triggered by clearing the selection from the previous drawing
activity. The reason for the crash is that the iterator
is corrupted because during iteration the objects are removed
from the container.

This patch uses a safe way to remove items from the container and
going to the next iteration. Using this patch, inkscape does
not crash anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On MacOS El Capitan with XCode 7.3 inkscape crashes when a
second item is drawn in the drawing area. The crash is
triggered by clearing the selection from the previous drawing
activity. The reason for the crash is that the iterator
is corrupted because during iteration the objects are removed
from the container.

This patch uses a safe way to remove items from the container and
going to the next iteration. Using this patch, inkscape does
not crash anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a bug when creating a cloned LPE with fill between many</title>
<updated>2017-09-09T04:28:03+00:00</updated>
<author>
<name>Jabier Arraiza</name>
<email>jabier.arraiza@marker.es</email>
</author>
<published>2017-09-09T04:28:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=1c31310676b12bd4fd5e477192bf7bd9fffabf83'/>
<id>1c31310676b12bd4fd5e477192bf7bd9fffabf83</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>selection chemistry: implement z-stack order</title>
<updated>2017-05-23T19:48:22+00:00</updated>
<author>
<name>chr</name>
<email>chr</email>
</author>
<published>2017-05-23T19:48:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=dc80e5d0bf82f005628881134b929aa4838308d5'/>
<id>dc80e5d0bf82f005628881134b929aa4838308d5</id>
<content type='text'>
Bug #1395452

"raise and lower objects" used to stack objects above/below the next overlapping object,
which makes it impossible to change the z-order of objects that don't overlap.

Fixes also the object manager panel

Conflicts:
	src/selection-chemistry.cpp
	src/selection-chemistry.h
	src/sp-item.cpp

(bzr r15698.1.7)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug #1395452

"raise and lower objects" used to stack objects above/below the next overlapping object,
which makes it impossible to change the z-order of objects that don't overlap.

Fixes also the object manager panel

Conflicts:
	src/selection-chemistry.cpp
	src/selection-chemistry.h
	src/sp-item.cpp

(bzr r15698.1.7)</pre>
</div>
</content>
</entry>
<entry>
<title>Makes selection complexity linear in the number of selected objects instead of quadratic due to too many signals sent</title>
<updated>2017-02-28T22:07:32+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2017-02-28T22:07:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=dbe9eae8b96400c233e21d4b47046345ecbea26e'/>
<id>dbe9eae8b96400c233e21d4b47046345ecbea26e</id>
<content type='text'>
Fixed bugs:
  - https://launchpad.net/bugs/1666714

(bzr r15556)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed bugs:
  - https://launchpad.net/bugs/1666714

(bzr r15556)</pre>
</div>
</content>
</entry>
<entry>
<title>Fix "swap fill and stroke" for multiple objects in selection</title>
<updated>2017-01-21T22:28:05+00:00</updated>
<author>
<name>alexandru.roman</name>
<email>alexroman5g@gmail.com</email>
</author>
<published>2017-01-21T22:28:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=e8dcb5062f6114a9fb06d496ab5d906aec405c78'/>
<id>e8dcb5062f6114a9fb06d496ab5d906aec405c78</id>
<content type='text'>
Add verb and shortcut possibility

Fixed bugs:
  - https://launchpad.net/bugs/367360
  - https://launchpad.net/bugs/675690

(bzr r15428)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add verb and shortcut possibility

Fixed bugs:
  - https://launchpad.net/bugs/367360
  - https://launchpad.net/bugs/675690

(bzr r15428)</pre>
</div>
</content>
</entry>
<entry>
<title>Move boolop functions from sp_selected_path_&lt;op&gt; to ObjectSet::path&lt;op&gt;</title>
<updated>2016-11-09T00:23:41+00:00</updated>
<author>
<name>Alexander Brock</name>
<email>zaibu@lunar-orbit.de</email>
</author>
<published>2016-11-09T00:23:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=07a86951a15301ccb7eb1446cc1e6d3ca7a68f9b'/>
<id>07a86951a15301ccb7eb1446cc1e6d3ca7a68f9b</id>
<content type='text'>
(bzr r15223.1.1)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r15223.1.1)</pre>
</div>
</content>
</entry>
<entry>
<title>merge recursive unlink clones branch</title>
<updated>2016-11-06T22:07:52+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2016-11-06T22:07:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=9fa25f65a98bbd4abd3673b968ed5252cf9f14b3'/>
<id>9fa25f65a98bbd4abd3673b968ed5252cf9f14b3</id>
<content type='text'>
(bzr r15220)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r15220)</pre>
</div>
</content>
</entry>
<entry>
<title>further cppification</title>
<updated>2016-11-06T15:33:01+00:00</updated>
<author>
<name>Marc Jeanmougin</name>
<email>marc@jeanmougin.fr</email>
</author>
<published>2016-11-06T15:33:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=68c305f169dfe9a273e29dd2aa587f0d59071483'/>
<id>68c305f169dfe9a273e29dd2aa587f0d59071483</id>
<content type='text'>
Fixed bugs:
  - https://launchpad.net/bugs/1306662

(bzr r15218)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed bugs:
  - https://launchpad.net/bugs/1306662

(bzr r15218)</pre>
</div>
</content>
</entry>
</feed>
