summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | Inkview: Fix gettext localizationEduard Braun2017-05-121-6/+10
|/ / / / / / / | | | | | | | | | | | | | | (bzr r15687.1.1)
* | | | | | | Fix crash with fonts containing illegal characters in family name.Eduard Braun2017-05-101-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the problem at hand [1] the crash is caused by a font with the name "Æ Systematic -BRK-". However the font family name returned by pango is "\xc6 Systematic - BRK-". "(\xc6" is the character code of "Æ" in Latin-1 encoding, but is not a valid UTF-8 character, so obviously at some point there went something wrong with character encoding conversion) At this time it is unclear to me where in the chain the issue originates, as it's possible that a) the font name is already stored incorrectly in the font file b) fontconfig incorrectly parses the font file when creating the font cache c) pango messes up somehow For now we ignore fonts with illegal characters in file name as they cause a whole lot of issues (even before triggering a crash), but figuring out the above and (if applicable) work around it in Inkscape might make the font available after all. [1] https://answers.launchpad.net/inkscape/+question/630886 (bzr r15687)
* | | | | | | Fix for Wayland.Tavmjong Bah2017-05-101-2/+9
| | | | | | | | | | | | | | | | | | | | | (bzr r15686)
* | | | | | | Remove more unused stuff missed in last commit.Tavmjong Bah2017-05-101-13/+0
| | | | | | | | | | | | | | | | | | | | | (bzr r15685)
* | | | | | | Remove unused floatscreenissue variable and supporting code.Tavmjong Bah2017-05-102-36/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Previous commit shows how to fix it for Wayland if it were ever to be needed.) (bzr r15684)
* | | | | | | Wayland fix.Tavmjong Bah2017-05-101-7/+25
| | | | | | | | | | | | | | | | | | | | | (bzr r15683)
* | | | | | | Use UTF8 encoding for output on windows console.Eduard Braun2017-05-102-11/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids the misery and frustration of converting to the overly limited ANSI codepages and does not seem to cause any issues so far. (bzr r15682)
* | | | | | | cmake/Windows: convert all 'DESTINATION's to relative paths and allow easy ↵Eduard Braun2017-05-093-41/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | customization of install location via 'CMAKE_INSTALL_PREFIX' (bzr r15681)
* | | | | | | cmake: Don't include 'ConfigPaths.cmake' twiceEduard Braun2017-05-092-4/+1
| | | | | | | | | | | | | | | | | | | | | (bzr r15680)
* | | | | | | cmake: do not install static libraries on WindowsEduard Braun2017-05-082-5/+10
| | | | | | | | | | | | | | | | | | | | | (bzr r15679)
* | | | | | | cmake: Correctly use 'install(TARGETS ...)' instead of 'install(FILES ...)' ↵Eduard Braun2017-05-083-44/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for inkscape executables. It's not only more elegant, but it also makes the "install/strip" target work! Also convert DESTINATION to a relative path. As relative paths are relative to ${CMAKE_INSTALL_PREFIX}, it's effectively the same as before, but cmake does not properly handle absolute paths on Windows, see [1]. [1] https://gitlab.kitware.com/cmake/cmake/issues/16859 (bzr r15678)
* | | | | | | Build an inkview.com as consoler wrapper around inkview.exe to allow for ↵Eduard Braun2017-05-082-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | printing to console (just as we do with inkscape.com / inkscape.exe) (bzr r15677)
* | | | | | | Move gettext initialization to separate function and re-use it in inkview ↵Eduard Braun2017-05-085-68/+188
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (localization was broken) (bzr r15676)
| * | | | | | | Inkview: Fix localizationEduard Braun2017-05-071-15/+12
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15675.1.5)
| * | | | | | | Properly handle ENABLE_NLS defineEduard Braun2017-05-071-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15675.1.4)
| * | | | | | | Move functions for switching gettext charset to helper/gettext.hEduard Braun2017-05-073-7/+32
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15675.1.3)
| * | | | | | | Move gettext initialization into separate function so it can be re-used ↵Eduard Braun2017-05-074-35/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (will come in handy in inkview) (bzr r15675.1.2)
| * | | | | | | Use glib to get the installation prefix on WindowsEduard Braun2017-05-071-6/+6
|/ / / / / / / | | | | | | | | | | | | | | (bzr r15675.1.1)
* | | | | | | Fix typo in POTFILES.inEduard Braun2017-05-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (see r15666) (bzr r15675)
* | | | | | | Minor refactor: check setlocale() occurences and make sure we do not ↵Eduard Braun2017-05-073-7/+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)
* | | | | | | Fix a bug on tapper stroke detected with Ede_123 on IRCJabiertxof2017-05-077-18/+8
| | | | | | | | | | | | | | | | | | | | | (bzr r15673)
* | | | | | | Disable LPE from icon files for faster load. Also added a desc in the LPE ↵Jabiertxof2017-05-073-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | icons showing the LPE to apply and allow editing (bzr r15672)
* | | | | | | Improvement to store default line width on join type and tapper stroke ↵Jabiertxof2017-05-072-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pointed by Ede_123 on IRC (bzr r15671)
* | | | | | | Reorder LPE enum to match definition in effect.cpp. also fix a bug pointed ↵Jabiertxof2017-05-073-57/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | by Ede_123 in IRC, LPE dialog show bad default selected LPE (bzr r15670)
* | | | | | | Add missing filesJabiertxof2017-05-062-0/+154
| | | | | | | | | | | | | | | | | | | | | (bzr r15669)
* | | | | | | Add improvement pointed in IRC by Ede_123 to allow defaultables parametes on ↵Jabiertxof2017-05-064-6/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fillet chamfer (bzr r15668)
* | | | | | | Fix a compiling bug found by Ede_123 on IRCJabiertxof2017-05-061-1/+1
| | | | | | | | | | | | | | | | | | | | | (bzr r15667)
* | | | | | | Merge pathVectorSatellitesJabiertxof2017-05-0620-1612/+1974
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | (bzr r15666)
| * | | | | | | Pre merge fixingJabiertxof2017-05-065-30/+51
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r13645.1.177)
| * | | | | | | Updating code to trunkJabiertxof2017-05-064-50/+3
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r13645.1.176)
| * | | | | | | Update to trunkJabiertxof2017-05-057-5/+19
| |\ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | (bzr r13645.1.175)
* | | | | | | | LPE widget refactor. Improvement to not update on same valueJabiertxof2017-05-057-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | (bzr r15665)
| * | | | | | | Update to trunkJabier Arraiza Cenoz2017-05-05185-12948/+13634
| |\ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | (bzr r13645.1.174)
* | | | | | | | merge lpeUpdDefaultParamsJabier Arraiza Cenoz2017-05-0536-136/+358
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | (bzr r15664)
| * \ \ \ \ \ \ \ Update to trunkJabier Arraiza Cenoz2017-05-0521-50/+152
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.17)
| * | | | | | | | | Remove coutsJabiertxof2017-05-011-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.16)
| * | | | | | | | | Update to trunkJabiertxof2017-05-012-2/+0
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.15)
| * \ \ \ \ \ \ \ \ \ Update to trunkJabiertxof2017-05-0127-101/+220
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.14)
| * | | | | | | | | | | minor bugfixingJabiertxof2017-04-294-13/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.13)
| * | | | | | | | | | | Rewrite UXJabiertxof2017-04-2935-136/+351
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.12)
| * | | | | | | | | | | Update to trunkJabiertxof2017-04-2829-171/+171
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.11)
| * \ \ \ \ \ \ \ \ \ \ \ Update to trunkJabiertxof2017-04-281-51/+52
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.10)
| * | | | | | | | | | | | | ResetJabiertxof2017-04-2878-953/+380
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.9)
| * | | | | | | | | | | | | Update to trunkJabiertxof2017-04-281-2/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.8)
| * | | | | | | | | | | | | | Fixing remove prefsJabier Arraiza Cenoz2017-04-273-310/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.7)
| * | | | | | | | | | | | | | Add end of preferences GUIJabier Arraiza Cenoz2017-04-2724-26/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.6)
| * | | | | | | | | | | | | | Update to trunkJabiertxof2017-04-261-2/+7
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.5)
| * | | | | | | | | | | | | | | Add LPE prefs dialogJabiertxof2017-04-266-15/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.4)
| * | | | | | | | | | | | | | | Start adding GUI to prefsJabier Arraiza Cenoz2017-04-263-3/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.3)
| * | | | | | | | | | | | | | | Update to trunkJabier Arraiza Cenoz2017-04-2642-7113/+7729
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bzr r15620.1.2)