diff --git a/0_pyinstaler b/0_pyinstaler.sh similarity index 92% rename from 0_pyinstaler rename to 0_pyinstaler.sh index 8f37518..75aa67a 100755 --- a/0_pyinstaler +++ b/0_pyinstaler.sh @@ -3,4 +3,5 @@ rm -rf __pycache__ build #pyinstaller --onefile --windowed fotokilof.py pyinstaller --onefile src/fotokilof.py +rm -rf build diff --git a/0_zip_windows.sh b/0_zip_windows.sh new file mode 100755 index 0000000..254ada7 --- /dev/null +++ b/0_zip_windows.sh @@ -0,0 +1,2 @@ +#!/bin/sh +zip dist/fotokilof.zip dist dist/*.exe dist/*.xml dist/LICENSE* dist/locale/*/*/fotokilof.mo diff --git a/Changelog b/Changelog index 5e4eeab..8d9e004 100644 --- a/Changelog +++ b/Changelog @@ -32,4 +32,5 @@ 2.5 GUI: cleanup and order 2.6 Added: insert logo on picture 2.7 Added: progressbar - 2.8 Added: custom command to execute + 2.8 Added: custom command to execute, theme selection, bugfix + diff --git a/src/fotokilof.py b/src/fotokilof.py index 6831c4b..b816034 100644 --- a/src/fotokilof.py +++ b/src/fotokilof.py @@ -63,7 +63,7 @@ def no_text_in_windows(): def print_command(cmd, cmd_imagick): """ print command in custom window """ - t_custom.insert(END, cmd + " \\\n") + t_custom.insert(END, cmd + " ") cb_custom_command.current(imagick_commands.index(cmd_imagick)) ################