Skip to content

Commit 348031f

Browse files
committed
Merge branch 'VEX-6_v1.4' into main
2 parents b271725 + 6a52539 commit 348031f

File tree

12 files changed

+574
-103
lines changed

12 files changed

+574
-103
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ dist/
1010
*.exe
1111
*.bak
1212
build/
13-
sign.bat
13+
sign.bat
14+
compile.bat
15+
tokenString.py

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,18 @@ Download zip from ![here](https://github.com/BitTim/VexTrack/releases) and extra
1010
## Compilation
1111
First of all, download and install the latest version of python from ![here](https://python.org).
1212

13-
Then install pyinstaller via this command: `pip install pyinstaller`
13+
To compile the binaries, you need the following packages:
1414

15-
When you have both installed, run the following commands in the root folder:
15+
pip install tkinter
16+
pip install matplotlib
17+
pip install pyinstaller
18+
19+
When you have everything installed, create a new file called "tokenString.py" in src/ which should contain the following:
20+
21+
TOKEN=<YOUR_GITHUB_PERSONAL_ACCESS_TOKEN>
22+
23+
Where <YOUR_GITHUB_PERSONAL_ACCESS_TOKEN> should be replaced by your personal access token, which can be generated ![here](https://github.com/settings/tokens). The only needed permissions are `repo:status` and `public_repo`.
24+
After you have created tokenString.py, run these two commands to compile the binaries:
1625

1726
pyinstaller --onefile --windowed --icon=VexTrack.ico src/VexTrack.py
1827
pyinstaller --onefile --windowed --icon=VexTrack.ico src/Updater.py

0 commit comments

Comments
 (0)