Skip to content

Commit

Permalink
Merge branch 'release/4.0.0' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
adambonneruk committed Sep 24, 2020
2 parents af584ea + 2aa6bdb commit 1b7382f
Show file tree
Hide file tree
Showing 47 changed files with 1,118 additions and 335 deletions.
Binary file added .screenshot/docker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux-about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux-options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux-options_error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux-options_warn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/macos-about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/macos-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/macos-options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/macos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/win10-about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/win10-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/win10-options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/win10.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .screenshot/win10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM python:3
WORKDIR /app
COPY . /app

ENTRYPOINT [ "python", "./unique/unique.py" ]
284 changes: 226 additions & 58 deletions README.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion build_python.bat

This file was deleted.

17 changes: 17 additions & 0 deletions pyinstaller_make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
REM clear-down the ./dist/ folder
IF EXIST dist ( ERASE /F /Q dist )

REM copy unique.py to unique.pyw (we'll delete again at the end)
COPY unique\unique_gui.py unique\unique_gui.pyw

REM copy images and icons
XCOPY unique\icon\ dist\icon\ /E

REM run pyinstaller for unique.py to create .exe
pyinstaller.exe --onefile --icon=.\unique\icon\icon.ico unique\unique.py

REM run pyinstaller for unique_gui.pyw to create .exe (with no cli)
pyinstaller.exe --onefile --hidden-import tkinter --icon=.\unique\icon\icon.ico unique\unique_gui.pyw

REM remove the .pyw file
ERASE unique\unique_gui.pyw
138 changes: 0 additions & 138 deletions unique.py

This file was deleted.

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
Binary file added unique/icon/vswin2019/CloseSolution_16x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added unique/icon/vswin2019/InformationSymbol_16x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added unique/icon/vswin2019/LevelAll_16x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added unique/icon/vswin2019/LevelFive_16x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added unique/icon/vswin2019/LevelFour_16x.png
Binary file added unique/icon/vswin2019/LevelOne_16x.png
Binary file added unique/icon/vswin2019/LevelThree_16x.png
Binary file added unique/icon/vswin2019/LevelTwo_16x.png
Binary file added unique/icon/vswin2019/NewFile_16x.png
Binary file added unique/icon/vswin2019/OpenFile_16x.png
Binary file added unique/icon/vswin2019/SaveAs_16x.png
Binary file added unique/icon/vswin2019/Save_16x.png
Binary file added unique/icon/vswin2019/Settings_16x.png
Loading

0 comments on commit 1b7382f

Please sign in to comment.