| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
|
|
|
|
|
|
| |
- do not call cairo_show_page as the GtkPrintOperation seems to do
that internally (calling it manually will emit the current page,
clear it, and the cleared page seems to be emitted in error later)
- we can (and should) still call cairo_surface_destroy as it's doing
reference counting internally (we increase the reference count in
CairoRenderContext::setSurfaceTarget) and won't actually destroy
anything until the count reaches zero
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Previously only the first page was printed properly,
all following pages were either blank or were not printed at all.
This was caused by finishing/destroying the cairo surface of the
cairo context associated with the GtkPrintContext used for printing
which made it impossible to draw to it for any consecutive page
Fixed bugs:
- https://bugs.launchpad.net/inkscape/+bug/1733424
- https://bugs.launchpad.net/inkscape/+bug/490866
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt`
whereby whitelist file contained:
```
dum
iff
glight
substract
te
upto
```
|
| |/ |
|
| |\ |
|
| | |
| |
| |
| |
| | |
This replaces all usage of boost::scoped_ptr with std::unique_ptr.
Also removes the corresponding includes.
|
| |/ |
|
| |
|
|
| |
Just use Gio::File when access to non-local files is needed.
|
| | |
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The crash only affected embedded images.
(we were already catching the exception when loading a linked file)
While at it add some error reporting via debug messages,
fix a memory leak and do some minor cleanup.
Fixed bug:
- https://bugs.launchpad.net/inkscape/+bug/1720330
|
| |/ |
|
| | |
|
| |
|
|
|
|
| |
The idea behind inkscape-version.h / inkscape-version.cpp is to
avoid rebuilding most of the code base when the version number
changes. Defining a version number in config.h defeats this purpose.
|
| | |
|
| | |
|
| |
|
|
| |
get_filename methods
|
| |
|
|
|
| |
Fixes Bug:
- https://launchpad.net/bugs/1417470
|
| |
|
| |
(bzr r15724)
|
| |
|
|
|
| |
longer tied to Adobe).
(bzr r15723)
|
| |
|
| |
(bzr r15715)
|
| |
|
|
|
| |
placeholder instead
(bzr r15653)
|
| |
|
| |
(bzr r15633.1.2)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This unconditionally sets "LC_NUMERIC" to "C" to use dots (.) in all scanf/printf-like functions to prevent parsing issues with locales that would use a comma (,) instead.
Fixed bugs:
- https://launchpad.net/bugs/1549015
- https://launchpad.net/bugs/1675755
- https://launchpad.net/bugs/1335660
- https://launchpad.net/bugs/1089857
- https://launchpad.net/bugs/1599763
(bzr r15617)
|
| |
|
|
|
|
| |
Remove rotation via viewbox.
Still some work to do...
(bzr r15603)
|
| |
|
| |
(bzr r15586)
|
| |
|
| |
(bzr r15585)
|
| |
|
|
|
|
|
|
|
|
| |
polygon series"
The problem where calls of "sprintf()" to format SVG path data. Unfortunately depending on the locale set at this point via "setlocale()" the output could contain commas (,) instead of dots (.) as decimal spearator resulting in invalid path data.
Fixed bugs:
- https://launchpad.net/bugs/1549015
(bzr r15568)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1664372
(bzr r15532)
|
| |
|
| |
(bzr r15526)
|
| |
|
| |
(bzr r15525)
|
| |
|
| |
(bzr r15505)
|
| |
|
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1662686
- https://launchpad.net/bugs/1662683
(bzr r15493)
|
| |
|
|
|
|
| |
Fixed bugs:
- https://launchpad.net/bugs/1537497
(bzr r15446)
|
| |\
| |
| | |
(bzr r15142.1.38)
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Windows if the filename contains non-ASCII characters
The problem is that "RVNGFileStream" uses "fopen()" internally which only supports ANSI filenames on Windows (i.e. a complete fix would require upstream code changes).
By using "g_win32_locale_filename_from_utf8()" the problem can be worked around in most cases, though:
* the filename is converted to the current codepage (i.e. all 255 characters that are available in the current character encoding are allowed in the filename)
* even if the filename contains a character that's not available in the current character encoding it's attempted to use the alternative short (8.3) file name instead
Therefore the input operation will only fail in the unlikely case that the filename contains a character not available in the current ANSI code page while at the same time short file names are disabled on the file system (which is not the case in standard configurations).
Fixed bugs:
- https://launchpad.net/bugs/1656763
- https://launchpad.net/bugs/1656763
(bzr r15421)
|
| | |
| |
| | |
(bzr r15364)
|
| | |
| |
| | |
(bzr r15363)
|
| | |
| |
| | |
(bzr r15362)
|
| | |
| |
| | |
(bzr r15360)
|
| | |
| |
| |
| |
| |
| | |
Fixed bugs:
- https://launchpad.net/bugs/1639985
(bzr r15238)
|
| | |
| |
| |
| |
| | |
clipping works
(bzr r15235)
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Reproducible Builds is a ongoing project which aims at having "packages"
"build" (as in, every build step, be it code compilation, doc generation, etc)
be bit-by-bit reproducible regardless of the build environment.
With this commit inkscape can be built reproducibly.
See https://reproducible-builds.org for more info about the project.
(bzr r15222.1.1)
|
| |/
|
| |
(bzr r15142.1.32)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
global functions are now methods of ObjectSet*, with these additional benefits:
- 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->move(x,y)
(bzr r15189)
|
| |\
| |
| | |
(bzr r15100.1.28)
|
| | |
| |
| |
| |
| |
| | |
Fixed bugs:
- https://launchpad.net/bugs/179679
(bzr r15141)
|
| |\|
| |
| | |
(bzr r15100.1.23)
|
| | |
| |
| |
| |
| | |
Note: <mesh> has been repurposed to be a special shape that tightly wraps a mesh gradient.
(bzr r15137)
|