Skip to content

Commit 1cbfd77

Browse files
Add build script and update README to include link to release page
1 parent c344fb9 commit 1cbfd77

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
music
2+
*.spec
3+
build
4+
dist

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ for MakeCode Arcade!
99
### Install via binary
1010

1111
1. Download an executable (only have binaries for 64-bit Windows currently)
12-
for your platform.
13-
2. Open a terminal at where you downloaded the binary.
14-
3. Instead of running `python main.py <arguments>` run the binary instead.
12+
for your platform from the
13+
[releases page](https://github.com/UnsignedArduino/Musical-Images-Generator/releases).
14+
3. Open a terminal at where you downloaded the binary.
15+
4. Instead of running `python main.py <arguments>` run the binary instead.
1516
(If the binary is named `musical-images-generator.exe` then you can just run
1617
`musical-images-generator <arguments>`)
1718

build.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
REM Make sure to install pyinstaller with pip if you want to build your own binaries!
2+
REM pip install pyinstaller
3+
4+
pyinstaller main.py --noconfirm --onefile --name "musical-images-generator"

0 commit comments

Comments
 (0)