From 084c5555f21a6e927e4de98fdb66c4c408626f58 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Fri, 30 Mar 2018 20:37:11 -0400 Subject: print through web browser (#127) * spawn a web server and open a printable view of the design in the user's web browser * configurable inclusion of client and operator views * editable fields for color names, client, title, and purchase order number * groundwork laid to save these parameters back into the SVG * major refactor of codebase to support printing * code is organized logically into modules * added inkstitch logo and branding guidelines * l10n text extraction now handled by babel * removed legacy embroider_update extension * partial fix for #125 --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 43d6d9f1..a4379202 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -EXTENSIONS:=embroider embroider_params embroider_simulate embroider_update +EXTENSIONS:=embroider embroider_params embroider_simulate embroider_print # This gets the branch name or the name of the tag VERSION:=$(TRAVIS_BRANCH) @@ -8,7 +8,9 @@ ARCH:=$(shell uname -m) dist: distclean locales bin/build-dist $(EXTENSIONS) cp *.inx dist - mv locales dist/inkstitch/bin + mkdir -p dist/inkstitch/bin/locales + cp -a locales/* dist/inkstitch/bin/locales + cp -a print dist/inkstitch/bin/ if [ "$$BUILD" = "windows" ]; then \ cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \ else \ @@ -20,7 +22,7 @@ distclean: messages.po: rm -f messages.po - xgettext --no-location --add-comments embroider*.py inkstitch/__init__.py + pybabel extract -o messages.po -F babel.conf --no-location --add-comments l10n --add-comments L10n --add-comments L10N -s . .PHONY: messages.po .PHONY: locales -- cgit v1.3.1