├── resources ├── darwin │ ├── bin │ │ └── autotrace │ │ │ ├── AUTHORS │ │ │ ├── bin │ │ │ ├── autotrace │ │ │ └── autotrace-config │ │ │ ├── lib │ │ │ ├── libautotrace.3.0.0.dylib │ │ │ └── pkgconfig │ │ │ │ └── autotrace.pc │ │ │ ├── include │ │ │ └── autotrace │ │ │ │ ├── exception.h │ │ │ │ ├── types.h │ │ │ │ ├── input.h │ │ │ │ └── output.h │ │ │ ├── TODO │ │ │ ├── NEWS │ │ │ ├── README │ │ │ └── share │ │ │ ├── aclocal │ │ │ └── autotrace.m4 │ │ │ └── man │ │ │ └── man1 │ │ │ └── autotrace.1 │ ├── app.icns │ ├── dmg_back.png │ └── dmg_back@2x.png ├── win32 │ ├── bin │ │ └── autotrace │ │ │ ├── AUTHORS │ │ │ ├── autotrace.exe │ │ │ ├── THANKS │ │ │ └── README │ ├── app.ico │ └── install_anim.gif ├── app.png └── linux │ └── bin │ └── autotrace │ ├── autotrace │ └── lib │ ├── libpng12.so.0 │ ├── libautotrace.so.3 │ ├── libpstoedit.so.0 │ └── libMagickCore-6.Q16.so.2 ├── .travis.yml ├── src ├── images │ ├── icon-pen.png │ ├── icon-fill.png │ ├── icon-import.png │ ├── icon-select.png │ ├── cursor-fill-0.png │ ├── cursor-fill-1.png │ ├── cursor-fill-2.png │ ├── cursor-fill-3.png │ ├── cursor-pen-0.png │ ├── cursor-pen-1.png │ ├── cursor-pen-2.png │ ├── cursor-pen-3.png │ ├── cursor-select.png │ ├── cursor-eyedropper.png │ ├── icon-autotrace-color-2.svg │ ├── icon-select.svg │ ├── icon-import.svg │ ├── icon-autotrace-color-3.svg │ ├── icon-autotrace-color-4.svg │ ├── icon-pen.svg │ ├── griddle.svg │ ├── icon-autotrace-simple.svg │ ├── icon-manual.svg │ ├── icon-autotrace-complex.svg │ ├── logo.svg │ ├── icon-autotrace-color-5.svg │ └── icon-fill.svg ├── windows │ ├── window.autotrace.webview.html │ ├── window.export.webview.html │ ├── window.settings.js │ ├── window.settings.html │ ├── window.autotrace.html │ ├── window.export.html │ └── window.export.js ├── styles │ ├── _loaders.scss │ ├── _math.scss │ ├── _trace-menu.scss │ └── _fancy-elements.scss ├── index.html ├── squirrel-update.js ├── helpers │ ├── helper.clipboard.js │ ├── helper.undo.js │ └── helper.autotrace.js ├── tools │ ├── tool.pen.js │ └── tool.fill.js ├── main.js └── editor.ps.js ├── Gruntfile.js ├── .gitignore ├── locales └── en-US │ ├── menus-en-US.json │ └── app-en-US.json ├── menus ├── menu-init.js ├── menu-win32.js └── menu-darwin.js ├── .jshintrc ├── package.json └── README.md /resources/darwin/bin/autotrace/AUTHORS: -------------------------------------------------------------------------------- 1 | Martin Weber 2 | martweb@gmx.net -------------------------------------------------------------------------------- /resources/win32/bin/autotrace/AUTHORS: -------------------------------------------------------------------------------- 1 | Martin Weber 2 | martweb@gmx.net -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | dist: trusty 2 | language: node_js 3 | node_js: 4 | - "5.3" 5 | -------------------------------------------------------------------------------- /resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/app.png -------------------------------------------------------------------------------- /resources/win32/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/win32/app.ico -------------------------------------------------------------------------------- /src/images/icon-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/icon-pen.png -------------------------------------------------------------------------------- /resources/darwin/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/darwin/app.icns -------------------------------------------------------------------------------- /src/images/icon-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/icon-fill.png -------------------------------------------------------------------------------- /src/images/icon-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/icon-import.png -------------------------------------------------------------------------------- /src/images/icon-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/icon-select.png -------------------------------------------------------------------------------- /src/images/cursor-fill-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-fill-0.png -------------------------------------------------------------------------------- /src/images/cursor-fill-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-fill-1.png -------------------------------------------------------------------------------- /src/images/cursor-fill-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-fill-2.png -------------------------------------------------------------------------------- /src/images/cursor-fill-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-fill-3.png -------------------------------------------------------------------------------- /src/images/cursor-pen-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-pen-0.png -------------------------------------------------------------------------------- /src/images/cursor-pen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-pen-1.png -------------------------------------------------------------------------------- /src/images/cursor-pen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-pen-2.png -------------------------------------------------------------------------------- /src/images/cursor-pen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-pen-3.png -------------------------------------------------------------------------------- /src/images/cursor-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-select.png -------------------------------------------------------------------------------- /resources/darwin/dmg_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/darwin/dmg_back.png -------------------------------------------------------------------------------- /resources/darwin/dmg_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/darwin/dmg_back@2x.png -------------------------------------------------------------------------------- /resources/win32/install_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/win32/install_anim.gif -------------------------------------------------------------------------------- /src/images/cursor-eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/src/images/cursor-eyedropper.png -------------------------------------------------------------------------------- /resources/linux/bin/autotrace/autotrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/linux/bin/autotrace/autotrace -------------------------------------------------------------------------------- /resources/win32/bin/autotrace/autotrace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/win32/bin/autotrace/autotrace.exe -------------------------------------------------------------------------------- /resources/darwin/bin/autotrace/bin/autotrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/darwin/bin/autotrace/bin/autotrace -------------------------------------------------------------------------------- /resources/linux/bin/autotrace/lib/libpng12.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/linux/bin/autotrace/lib/libpng12.so.0 -------------------------------------------------------------------------------- /resources/linux/bin/autotrace/lib/libautotrace.so.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/linux/bin/autotrace/lib/libautotrace.so.3 -------------------------------------------------------------------------------- /resources/linux/bin/autotrace/lib/libpstoedit.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/linux/bin/autotrace/lib/libpstoedit.so.0 -------------------------------------------------------------------------------- /resources/linux/bin/autotrace/lib/libMagickCore-6.Q16.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/linux/bin/autotrace/lib/libMagickCore-6.Q16.so.2 -------------------------------------------------------------------------------- /resources/darwin/bin/autotrace/lib/libautotrace.3.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PancakeBot/PancakePainter/HEAD/resources/darwin/bin/autotrace/lib/libautotrace.3.0.0.dylib -------------------------------------------------------------------------------- /resources/darwin/bin/autotrace/lib/pkgconfig/autotrace.pc: -------------------------------------------------------------------------------- 1 | prefix=/usr/local/Cellar/autotrace/0.31.1_2 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: Autotrace 7 | Description: a utility that converts bitmap to vector graphics 8 | Version: 0.31.1 9 | Requires: 10 | Libs: -L${exec_prefix}/lib -lautotrace 11 | Cflags: -I${prefix}/include 12 | -------------------------------------------------------------------------------- /src/images/icon-autotrace-color-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.initConfig({ 4 | sass: { // Task 5 | dist: { // Target 6 | options: { // Target options 7 | style: 'expanded' 8 | }, 9 | files: { // Dictionary of files 10 | 'src/styles/index.css': 'src/styles/index.scss' 11 | } 12 | } 13 | } 14 | }); 15 | 16 | grunt.loadNpmTasks('grunt-contrib-sass'); 17 | 18 | 19 | // Default task(s). 20 | grunt.registerTask('default', ['sass']); 21 | }; 22 | -------------------------------------------------------------------------------- /src/windows/window.autotrace.webview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |