diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-02-22 23:06:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-22 23:06:27 -0500 |
| commit | bb42124a87393fa86288ad8f4079158183683f8f (patch) | |
| tree | efd8a5a216ffe41ba4b2c90b0ca8721dc953b7de /README.md | |
| parent | 48e5d628a8f49b0ff7e6db3d91b3b91f4a1af91a (diff) | |
Windows fixes (#83)
* os.execv doesn't replace the process on windows
* fix simulate/params crash
* pyinstaller windowed mode breaks things?
* fix output routing for windows
* properly route stderr to inkscape too
* don't print unless there's something to print
* remove last backup version if necessary
* add documentation for Windows build
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -1,10 +1,11 @@ # ink/stitch: An Inkscape extension for designing machine embroidery patterns +* February 22, 2018: **Windows support added!** * February 5, 2018: Portuguese (pt_PT) translation added! [Want to help translate?](LOCALIZATION.md) * January 5, 2018: Default DPI changed to 96, to match Inkscape. * January 3, 2018: Project renamed from `inkscape-embroidery` to **ink/stitch** -* **NEW January 1, 2018:** [video demo of the new live stitch preview feature](https://youtu.be/QY9NcLN3oJM) -* **NEW December 6, 2017:** [video demo of how to use the extension](https://www.youtube.com/watch?v=qXntE1X1RIw) +* January 1, 2018: [video demo of the new live stitch preview feature](https://youtu.be/QY9NcLN3oJM) +* December 6, 2017: [video demo of how to use the extension](https://www.youtube.com/watch?v=qXntE1X1RIw) ## Introduction **Want to design embroidery pattern files (PES, DST, etc) using free, open source software? Hate all the other options? Try this one.** @@ -15,9 +16,19 @@ So I wrote one. Okay, not really. I'm pretty terrible at GUIs, but I found this nifty inkscape extension that was created and hacked on by a couple of other folks. It was pretty rudimentary, but it got the job done, and more importantly, it was super hackable. I hacked the hell out of it, and at this point **ink/stitch is a viable entry-level machine embroidery design tool**. -## Quick Setup On Ubuntu 14.04 or later (and derivative Linux distributions) +## Quick Setup On Ubuntu and Windows -Download the [latest release](https://github.com/lexelby/inkstitch/releases/latest), the `inkscape-*.tar.gz` file. Decompress this archive directly into `~/.config/inkscape/extensions`, for example: +First, download the right release archive for your platform from the [latest release](https://github.com/lexelby/inkstitch/releases/latest). + +* **Linux**: `inkstitch-[VERSION]-Linux-x86_64.tar.gz` + * Currently supports most 64-bit Linux systems from the last couple of years. + * 32-bit support coming soon. +* **Windows**: `inkstitch-[VERSION]-win32.zip` + * Supports 32-bit and 64-bit Windows + +In Inkscape, go to Preferences and look under System. Next to "User Extensions" is a folder. Decompress the archive you downloaded directly into this folder. + +For example, on Linux: ``` $ cd ~/.config/inkscape/extensions |
