forked from secondfry/shortcircuit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move database out of shortcircuit.resources.database
I don't even know how to build packages anymore. `--paths` just doesn't work (but `PYTHONPATH` does). `--collect-data` from submodules works, but packaging then fails due to absense of subfolders (i.e. `--collect-data shortcircuit.resources.database`).
- Loading branch information
Showing
33 changed files
with
20 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
python -O -m PyInstaller ^ | ||
--clean ^ | ||
--windowed ^ | ||
--icon src\shortcircuit\resources\images\app_icon.ico ^ | ||
--icon resources\images\app_icon.ico ^ | ||
--add-data 'src\database:.' ^ | ||
--noconfirm ^ | ||
--name shortcircuit src\main.py ^ | ||
--onefile ^ | ||
--paths "build\libs" ^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pyside2-uic --from-imports src\shortcircuit\resources\ui\gui_main.ui -o src\shortcircuit\view\gui_main.py | ||
pyside2-uic --from-imports src\shortcircuit\resources\ui\gui_tripwire.ui -o src\shortcircuit\view\gui_tripwire.py | ||
pyside2-uic --from-imports src\shortcircuit\resources\ui\gui_about.ui -o src\shortcircuit\view\gui_about.py | ||
pyside2-rcc src\shortcircuit\resources\resources.qrc -o src\shortcircuit\view\resources_rc.py | ||
pyside2-uic --from-imports resources\ui\gui_main.ui -o src\shortcircuit\view\gui_main.py | ||
pyside2-uic --from-imports resources\ui\gui_tripwire.ui -o src\shortcircuit\view\gui_tripwire.py | ||
pyside2-uic --from-imports resources\ui\gui_about.ui -o src\shortcircuit\view\gui_about.py | ||
pyside2-rcc resources\resources.qrc -o src\shortcircuit\view\resources_rc.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
pyside2-uic --from-imports src/shortcircuit/resources/ui/gui_main.ui -o src/shortcircuit/view/gui_main.py | ||
pyside2-uic --from-imports src/shortcircuit/resources/ui/gui_tripwire.ui -o src/shortcircuit/view/gui_tripwire.py | ||
pyside2-uic --from-imports src/shortcircuit/resources/ui/gui_about.ui -o src/shortcircuit/view/gui_about.py | ||
pyside2-rcc src/shortcircuit/resources/resources.qrc -o src/shortcircuit/view/resources_rc.py | ||
pyside2-uic --from-imports resources/ui/gui_main.ui -o src/shortcircuit/view/gui_main.py | ||
pyside2-uic --from-imports resources/ui/gui_tripwire.ui -o src/shortcircuit/view/gui_tripwire.py | ||
pyside2-uic --from-imports resources/ui/gui_about.ui -o src/shortcircuit/view/gui_about.py | ||
pyside2-rcc resources/resources.qrc -o src/shortcircuit/view/resources_rc.py |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.