<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/unicoderange.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>Clarify licenses</title>
<updated>2018-11-08T17:18:20+00:00</updated>
<author>
<name>Max Gaukler</name>
<email>development@maxgaukler.de</email>
</author>
<published>2018-09-11T14:05:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=79d82382b3ea1b7d77e3a47a96a786557588787a'/>
<id>79d82382b3ea1b7d77e3a47a96a786557588787a</id>
<content type='text'>
- add license headers to everything
- convert a few files from public domain or LGPL2.1+ to GPL2+
- some archaeology to clarify which files are from which library
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- add license headers to everything
- convert a few files from public domain or LGPL2.1+ to GPL2+
- some archaeology to clarify which files are from which library
</pre>
</div>
</content>
</entry>
<entry>
<title>Header cleanup: stop using Glib types where they aren't truly needed. Eases GThread deprecation errors.</title>
<updated>2014-08-31T18:17:26+00:00</updated>
<author>
<name>Liam P. White</name>
<email>inkscapebrony@gmail.com</email>
</author>
<published>2014-08-31T18:17:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=1f2d8bc4ce99e970cead4ca96c1859c383a9c043'/>
<id>1f2d8bc4ce99e970cead4ca96c1859c383a9c043</id>
<content type='text'>
(bzr r13341.1.190)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r13341.1.190)</pre>
</div>
</content>
</entry>
<entry>
<title>Workaround usage of deprecated glib symbols in 3rd party libraries</title>
<updated>2013-03-25T17:42:31+00:00</updated>
<author>
<name>Alex Valavanis</name>
<email>valavanisalex@gmail.com</email>
</author>
<published>2013-03-25T17:42:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=0cdd007ebf8dcfbd39c1d36ab53f43617eb692df'/>
<id>0cdd007ebf8dcfbd39c1d36ab53f43617eb692df</id>
<content type='text'>
Fixed bugs:
  - https://launchpad.net/bugs/1122774

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

(bzr r12243)</pre>
</div>
</content>
</entry>
<entry>
<title>Now users can design a font within inkscape, save it and then open the </title>
<updated>2008-12-28T18:35:14+00:00</updated>
<author>
<name>Felipe Corr??a da Silva Sanches</name>
<email>juca@members.fsf.org</email>
</author>
<published>2008-12-28T18:35:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=c3e30311de25dc8b874ce99ccdb864e0a18cf7d6'/>
<id>c3e30311de25dc8b874ce99ccdb864e0a18cf7d6</id>
<content type='text'>
SVG file in Fontforge in order to export a truetype font (or other 
system font formarts fontforge supports).
This improves previous workflow of font design using Inkscape which 
involved creating one SVG for each glyph. Now user only needs to create 
a single SVG file containing an SVGFont.

Glyph kerning settings for the font can also be defined withing Inkscape 
itself with live preview. The kerning management still needs some 
improvements but is currently functional at least.

Improvements in the SVGFonts dialog:

* In Global Settings tab you can define the font family name. Other 
attributes should be added to this tab in the future.
* Glyphs tab allows the user to:
** see a list (combobox) of glyphs available in the currently selected 
font.
** add/remove glyphs
** edit glyph name and unicode
** set the glyph curves based on a given path (selected from canvas). 
Same feature for the missing glyph.
* Kerning tab allows user to:
** add new kerning pairs
** adjust kerning values of selected kerning pair
** live preview while adjusting the kerning values

Code refactoring:

* Inner classes DocumentProperties::SignalObserver and 
FilterEffectsDialog::SignalObserver were duplicated code and another 
instance would be needed in SVGFonts dialog. So, I moved it to 
Inkscape::XML::SignalObserver (in helper-observer.{cpp,h})
* changed SPGlyph-&gt;glyph_name and SPGlyph-&gt;unicode from char* to 
Glib::ustring
* added sp_remove_resource to the release method in sp-font.cpp
* glyph curves used to be stored (in d attribute) and rendered 
upside-down. Now that bug is fixed.

Sorry about this huge commit. I got one week away from the Internet 
during a xmas travel. The lack of 'net connection made me work more 
intensely in Inkscape :-D

Felipe Sanches

(bzr r7029)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SVG file in Fontforge in order to export a truetype font (or other 
system font formarts fontforge supports).
This improves previous workflow of font design using Inkscape which 
involved creating one SVG for each glyph. Now user only needs to create 
a single SVG file containing an SVGFont.

Glyph kerning settings for the font can also be defined withing Inkscape 
itself with live preview. The kerning management still needs some 
improvements but is currently functional at least.

Improvements in the SVGFonts dialog:

* In Global Settings tab you can define the font family name. Other 
attributes should be added to this tab in the future.
* Glyphs tab allows the user to:
** see a list (combobox) of glyphs available in the currently selected 
font.
** add/remove glyphs
** edit glyph name and unicode
** set the glyph curves based on a given path (selected from canvas). 
Same feature for the missing glyph.
* Kerning tab allows user to:
** add new kerning pairs
** adjust kerning values of selected kerning pair
** live preview while adjusting the kerning values

Code refactoring:

* Inner classes DocumentProperties::SignalObserver and 
FilterEffectsDialog::SignalObserver were duplicated code and another 
instance would be needed in SVGFonts dialog. So, I moved it to 
Inkscape::XML::SignalObserver (in helper-observer.{cpp,h})
* changed SPGlyph-&gt;glyph_name and SPGlyph-&gt;unicode from char* to 
Glib::ustring
* added sp_remove_resource to the release method in sp-font.cpp
* glyph curves used to be stored (in d attribute) and rendered 
upside-down. Now that bug is fixed.

Sorry about this huge commit. I got one week away from the Internet 
during a xmas travel. The lack of 'net connection made me work more 
intensely in Inkscape :-D

Felipe Sanches

(bzr r7029)</pre>
</div>
</content>
</entry>
<entry>
<title>UnicodeRange class implementation.</title>
<updated>2008-06-16T01:24:19+00:00</updated>
<author>
<name>Felipe Corr??a da Silva Sanches</name>
<email>juca@members.fsf.org</email>
</author>
<published>2008-06-16T01:24:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=14566438b94c5dfd3d97f72d1926dd9a259734b6'/>
<id>14566438b94c5dfd3d97f72d1926dd9a259734b6</id>
<content type='text'>
This class represents a range of unicode codepoints as used in the u1 
and u2 attributes of glyph kerning nodes.

(bzr r5949)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This class represents a range of unicode codepoints as used in the u1 
and u2 attributes of glyph kerning nodes.

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