| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Run clang-tidy’s modernize-use-noexcept pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -4/+4 |
| | | | | | This removes deprecated dynamic exception specifications. | ||||
| * | Run clang-tidy’s modernize-deprecated-headers pass. | Emmanuel Gil Peyrot | 2018-06-18 | 2 | -2/+2 |
| | | | | | This renames most C <*.h> includes into C++ <c*> includes. | ||||
| * | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 2018-06-18 | 3 | -25/+18 |
| | | | | | | This replaces empty constructors and destructors with the default keyword. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 9 | -68/+68 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Run clang-tidy’s modernize-use-override pass. | Emmanuel Gil Peyrot | 2018-06-18 | 7 | -128/+128 |
| | | | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | ||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 4 | -6/+6 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 4 | -6/+6 |
| | | |||||
| * | Removing sample meson build files. | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -41/+0 |
| | | | | | | | | | | | These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY | ||||
| * | [meson-build] libio + zlib | Felipe Corrêa da Silva Sanches | 2018-03-17 | 1 | -0/+41 |
| | | |||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 1 | -1/+4 |
| | | | | | A lot of header clean-up. | ||||
| * | Misc. typos | luzpaz | 2017-12-04 | 1 | -1/+1 |
| | | | | | | | Please confirm typos in the following `doc/nr-filter-interface.txt` `share/symbols/BalloonSymbols.svg` . | ||||
| * | Misc. typos | Unknown | 2017-11-07 | 2 | -3/+3 |
| | | | | | | | | | | | | | 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 ``` | ||||
| * | Define INKSCAPE_FONTSDIR and add USER/SYSTEM resource paths for fonts | Eduard Braun | 2017-10-20 | 2 | -0/+3 |
| | | | | | | (Note we always had an empty /share/fonts directory that didn't seem to have any purpose yet) | ||||
| * | Merge branch 'smartpointer_refactor' of gitlab.com:jali/inkscape | Marc Jeanmougin | 2017-10-20 | 2 | -3/+3 |
| |\ | |||||
| | * | Refactor Util::ptr_shared | Jan Lingscheid | 2017-10-18 | 2 | -3/+3 |
| | | | | | | | | | | | Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway. | ||||
| * | | Drop obsolete wrapper around Glib::file_open_tmp | Stefano Facchini | 2017-10-19 | 2 | -23/+0 |
| | | | |||||
| * | | Remove all unused makefile.in | Stefano Facchini | 2017-10-19 | 1 | -17/+0 |
| |/ | |||||
| * | Create parent directories when opening a file for writing | Eduard Braun | 2017-09-27 | 1 | -1/+11 |
| | | | | | | | | | | | - this affects callers of Inkscape::IO::fopen_utf8name - fixes at least two issues: - creating custom shortcuts failed when "/inkscape/keys" was missing in the configuration directory, see https://bugs.launchpad.net/inkscape/+bug/1719629 - autosaving probably failed if a non-existent directory was specified | ||||
| * | Expand io api for tav, resolve filename to local directory | Martin Owens | 2017-07-31 | 2 | -0/+27 |
| | | |||||
| * | Replace deprecated SHGetSpecialFolderLocation with SHGetFolderLocation | Eduard Braun | 2017-07-08 | 1 | -2/+2 |
| | | |||||
| * | Hackfest Regression: Fix profile_path() not returning the correct directory | Eduard Braun | 2017-07-08 | 1 | -3/+8 |
| | | | | | Also drop some unnecessary defines from the pre-XP era | ||||
| * | Merge branch 'su-v/inkscape-fix-MSYS2-libsoup-req' | Eduard Braun | 2017-07-06 | 2 | -2/+2 |
| |\ | |||||
| | * | Update MSYS2 port for new dependency (libsoup) | su-v | 2017-07-06 | 2 | -2/+2 |
| | | | | | | | | | | | | | - update script to install dependencies - update InstallMSYS2.cmake - fix Windows builds (uint -> unsigned int) | ||||
| * | | http: Migrate to new LibSoup API | Alexander Valavanis | 2017-07-06 | 1 | -1/+1 |
| |/ | |||||
| * | Add new libsoup based http access with caching and async | Martin Owens | 2017-07-06 | 4 | -0/+215 |
| | | |||||
| * | Make path scanning recursive, add ustring get_filenames and clean up | Martin Owens | 2017-07-05 | 2 | -16/+16 |
| | | |||||
| * | Move directory scanners to new get_filenames(...) calls | Martin Owens | 2017-07-02 | 1 | -3/+11 |
| | | |||||
| * | Hackfest: Tidy and test for file exists in output. | Martin Owens | 2017-07-01 | 1 | -3/+6 |
| | | |||||
| * | Introduce get_filenames which scans paths for all filenames. | Martin Owens | 2017-07-01 | 2 | -3/+75 |
| | | |||||
| * | Add caching to io resources path construction | Martin Owens | 2017-06-29 | 2 | -1/+8 |
| | | |||||
| * | Improved warning in io/resource.cpp | Martin Owens | 2017-06-29 | 1 | -1/+1 |
| | | |||||
| * | Refactor profile directory use and promote IO::Resource get_path and ↵ | Martin Owens | 2017-06-28 | 2 | -12/+194 |
| | | | | | get_filename methods | ||||
| * | Use user interface files for the user interface | Martin Owens | 2017-06-15 | 2 | -2/+36 |
| | | |||||
| * | Simplify code and avoid conditional compilation by consistently using glib ↵ | Eduard Braun | 2017-04-22 | 1 | -15/+7 |
| | | | | | | | | | | | functions Also fixes a case where the modifier passed to g_fopen() might contain a duplicated binary specifier on Windows (e.g. 'wbb') which broke functionality in MSYS2 builds (see bug 1685091) Fixed bugs: - https://launchpad.net/bugs/1685091 (bzr r15630) | ||||
| * | Cleanup: Remove some unused debug messages | Eduard Braun | 2017-04-22 | 1 | -54/+0 |
| | | | | (bzr r15629) | ||||
| * | Use GStatBuf where appropriate to ensure usage of the correct type | Eduard Braun | 2017-01-12 | 1 | -1/+1 |
| | | | | | | (fixes compilation with i686-w64-mingw32) (bzr r15414) | ||||
| * | Inkview: Remove support for obsolete SVG JAR archives | Alex Valavanis | 2016-08-25 | 3 | -716/+0 |
| | | | | (bzr r15075) | ||||
| * | Add std::nothrow so tests of memory allocation work as expected. | Tavmjong Bah | 2016-08-17 | 1 | -4/+4 |
| | | | | | | Should eventually be replaced by smart pointers. (bzr r15062) | ||||
| * | Remove deprecated Autotools and btool files. Please use CMake instead | Alex Valavanis | 2016-08-08 | 1 | -26/+0 |
| | | | | (bzr r15046) | ||||
| * | Merge | Moritz Eberl | 2016-04-13 | 1 | -7/+1 |
| | | | | (bzr r14761.1.4) | ||||
| * | static code analysis | Kris De Gussem | 2016-02-22 | 1 | -6/+11 |
| | | | | (bzr r14665) | ||||
| * | Ensure strncpy'd strings are null terminated | Bryce Harrington | 2015-08-29 | 1 | -0/+1 |
| | | | | (bzr r14332) | ||||
| * | Convert accidental member accesses into static function accesses | Liam P. White | 2014-06-26 | 1 | -1/+1 |
| | | | | (bzr r13341.5.7) | ||||
| * | 1. make it compile | Liam P. White | 2014-06-25 | 1 | -1/+1 |
| | | | | (bzr r13341.5.1) | ||||
| * | inkjar: Handle return values correctly | Alex Valavanis | 2014-03-30 | 2 | -25/+25 |
| | | | | (bzr r13239) | ||||
| * | inkjar: Fix access mode string | Alex Valavanis | 2014-03-30 | 1 | -1/+1 |
| | | | | (bzr r13235) | ||||
| * | Migrate inkjar to cstdio functions to fix build issues on Free BSD (Thanks ↵ | Alex Valavanis | 2014-03-30 | 2 | -12/+12 |
| | | | | | | Markus Engel); see bug #1232474 (bzr r13233) | ||||
| * | Fix build errors with clang 3.3 and c++11 enabled. | Markus Engel | 2013-10-18 | 4 | -68/+64 |
| | | | | (bzr r12701) | ||||
| * | updates for cmake | Campbell Barton | 2013-09-19 | 1 | -2/+0 |
| | | | | (bzr r12547) | ||||
| * | Merge from trunk (r12439). | Markus Engel | 2013-07-25 | 4 | -1595/+0 |
| |\ | | | | | (bzr r11608.1.108) | ||||
