| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
| |
(bzr r14228)
|
| |
|
| |
(bzr r14059.2.18)
|
| |
|
| |
(bzr r14059.2.17)
|
| |
|
| |
(bzr r14059.2.16)
|
| |\
| |
| | |
(bzr r14059.2.15)
|
| | |
| |
| |
| |
| |
| |
| |
| | |
(Bug 1428267)
Fixed bugs:
- https://launchpad.net/bugs/1428267
(bzr r14161)
|
| | |
| |
| | |
(bzr r14059.2.14)
|
| | |
| |
| | |
(bzr r14059.2.13)
|
| | |
| |
| | |
(bzr r14059.2.12)
|
| | |
| |
| | |
(bzr r14059.2.8)
|
| | |
| |
| | |
(bzr r14059.2.7)
|
| | |
| |
| | |
(bzr r14059.2.5)
|
| | |
| |
| | |
(bzr r14059.2.4)
|
| | |
| |
| | |
(bzr r14059.2.3)
|
| | |
| |
| | |
(bzr r14059.2.2)
|
| |/
|
| |
(bzr r14059.2.1)
|
| |
|
|
|
|
|
| |
colinear.
Add output operator, useful for debugging.
(bzr r14035)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1428683
(bzr r14005)
|
| |\
| |
| | |
(bzr r13341.1.278)
|
| | |
| |
| |
| |
| | |
This patch should go upstream to 2geom...
(bzr r13610)
|
| |/
|
| |
(bzr r13341.1.277)
|
| |
|
|
|
|
|
|
| |
and endpoint are equal (within error range)
Fixed bugs:
- https://launchpad.net/bugs/1330295
(bzr r13493)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1330295
(bzr r13492)
|
| |
|
| |
(bzr r13454)
|
| |
|
|
|
|
|
|
| |
duplicate intersections, and faulty sorting of intersections)
Fixed bugs:
- https://launchpad.net/bugs/1022733
(bzr r13397)
|
| |
|
| |
(bzr r13356)
|
| |
|
|
|
| |
suppose)
(bzr r13355)
|
| |
|
|
|
|
|
|
| |
Bug 1309225), by Alvin Penner
Fixed bugs:
- https://launchpad.net/bugs/1309225
(bzr r13320)
|
| |
|
| |
(bzr r13313)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1283174
(bzr r13308)
|
| |
|
| |
(bzr r13273)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1283174
(bzr r13267)
|
| |
|
|
|
|
| |
- main reason for update: better swap for Path (fixes C++11 warning/error)
- faster implementation for Path * Translate (~6x), Inkscape's code has to be modified to use it though
(bzr r13248)
|
| |
|
| |
(bzr r13247)
|
| |
|
| |
(bzr r13246)
|
| |
|
|
|
| |
case)
(bzr r13244)
|
| |
|
| |
(bzr r13175)
|
| |
|
| |
(bzr r13014)
|
| |
|
|
|
|
|
|
| |
zero (Bug 1272119)
Fixed bugs:
- https://launchpad.net/bugs/1272119
(bzr r12980)
|
| |
|
| |
(bzr r12940)
|
| |
|
| |
(bzr r12921)
|
| |
|
| |
(bzr r12803)
|
| |
|
| |
(bzr r12705)
|
| |
|
| |
(bzr r12687)
|
| |
|
|
|
|
|
|
| |
message, localization context needed) by Yuri Chornoivan.
Fixed bugs:
- https://launchpad.net/bugs/1236382
(bzr r12673)
|
| |
|
|
|
| |
(duplicate code, should be fixed later)
(bzr r12558)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. Resolves issue of bug #988601 message 170 (Support of 'Unset' styles in EMF export).
2. Implements CSS 3 (and CSS 2) text-decoration support.
Note that it does not yet provide any method of adding these features - at present it just shows whatever is in the SVG. This new code is also used to display EMF/WMF strike-through and underline text decorations when these files are read in. Those decorations may also be written out to EMF/WMF. Other text decoration features, like overline, or dotted lines, are dropped. For SVG text-decoration -line, -style, -color are all implemented. CSS3 provides two ways to represent the same state, this code uses the compound text-decoration method rather than the 3 fields method. Also it leaves out keywords that are not needed and would break backwards compatibility. For instance:
text-decoration: underline solid
is valid, but would break CSS2. Solid is the default, so that sort of case is written as:
text-decoration: underline
If the state is CSS3 specific all of the needed fields are of course include, like
text-decoration: underline wavy red
3. It incorporates the fix for bug 1181326 (Text edit mishandles span of just colored spaces)
4. It incorporates further changes to text editing so that style can be changed on spans consisting of only spaces when text decorations are present in the span.
5. It incorporates code to disable text decorations when text so marked is mapped onto a path.
6. Fixed more bugs in Hebrew language support than I can remember. Hebrew language export/import to EMF now works quite well. (See the examples in libTERE v 0.7.) WMF does not support unicode and for all intents and purposes Inkscape has no way to read or write Hebrew to it. Some of more important things that now work that didn't (or didn't always): Hebrew diacritical marks, R/L/center justification, and bidirectional text. The Hebrew fonts "Ezra SIL" and "EZRA SIL SR" should be installed before viewing the libTERE examples, otherwise font substitutions will cause some text shifts.
7. Implemented font failover in Text Reassemble, which makes the process more robust. (Again, see the examples in libTERE. )
(bzr r11668.1.71)
|
| |
|
| |
(bzr r12241)
|
| |
|
| |
(bzr r12202)
|
| |
|
| |
(bzr r11804.1.5)
|