summaryrefslogtreecommitdiffstats
path: root/src/file-update.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix build for Gtk < 3.12Alexander Valavanis2017-07-091-0/+6
|
* Update for Gtk alignment changesAlexander Valavanis2017-07-091-5/+6
|
* Porting the pre-92 file update message from 0.92.x to trunk:Marc Jeanmougin2017-06-041-1/+442
| | | | | | | | | | New dialog when opening pre-0.92 files (with 90 dpi). I implemented it mostly based on mizmo's UI proposal (thanks!), with additional inputs from su_v with a few bugfixes from jabiertxof Also adds a commandline option --convert-dpi-method=[none|scale-viewbox|scale-document] to be able to batch convert files. Fixed bugs: - https://launchpad.net/bugs/1659229 (bzr r15729)
* Minor refactor: check setlocale() occurences and make sure we do not ↵Eduard Braun2017-05-071-1/+4
| | | | | | | | setlocale() without resetting it to the initial default) - inkview.cpp : This occurence in fact does *not* seem to be needed anymore (despite what the comment says) - main.cpp : The (commented out) occurence is unnecessary as it is called as part of gtk_init_check() (bzr r15674)
* temporarily sets decimal separator locale to C to fix files correctly (Users ↵Marc Jeanmougin2017-02-101-0/+3
| | | | | | | | with a comma decimal separator in their locale had files broken by the line update fix) Fixed bugs: - https://launchpad.net/bugs/1663075 (bzr r15503)
* forward-port from 0.92.x the line height conversion from <.92 to >=.92Marc Jeanmougin2017-02-051-0/+173
Code written by su_v in python as an extension, ported to c++ by Mc, some fixes added by bryce. http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15338 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15339 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15350 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15351 Option to disable it is called --no-convert-text-baseline-spacing The terminology "convert" is chosen as a jargon word to be used for all such legacy file conversions. The "--no-XXX" naming style is adopted from the convention used by other software such as GIMP. (bzr r15481)