Skip to content

Commit

Permalink
Build 9+10
Browse files Browse the repository at this point in the history
twanny won
- Removes binaries from the repository. Will make a Windows release soon.
- Build instructions, brought to you by Cocoa at Wix™.
- Replace favi{16,32}.ico with a proper Windows Icon.
- Misc. README.md modifications
- Add .gitignore so Git ignores files made by Pyinstaller automatically.
- Give .py files proper shebangs that work on Linux.
`#!/usr/bin/env python3` instead of `#!py -3.4`.
The py -3.4 shebang would only work on Windows hypothectically, Windows ignores shebangs.
  • Loading branch information
KScott committed Jan 4, 2020
1 parent b4b5804 commit 7a65dbb
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
**.exe
**.spec
dist
dist/**
__pycache__/**
__pycache__
build
build/**
Binary file added Assets/favi.ico
Binary file not shown.
Binary file removed Assets/favi16.ico
Binary file not shown.
Binary file removed Assets/favi64.ico
Binary file not shown.
1 change: 1 addition & 0 deletions Engine_Class_File.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3

#Scares Scrambler Engine Class File
import tkinter as Tkinter
Expand Down
28 changes: 25 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
# Scares-Scrambler-Class-Rebuild
The place where all current/future Scares Scrambler stuff will happen (at least, in its current form).

The place where all current/future Scares Scrambler stuff will happen
(at least, in it's current form).

Current Release Build: 20

Current Beta Build: 20
Current Beta Build: 9+10

Currently Planned Features: A bunch, but Scare'm not writing them right now.

# What need?

- Python3
- Tkinter
- Pyinstaller (for build)

(`pip3 install tkinter pyinstaller`)

# How run without build?

```
python3 Scares_Scrambler_Class_Rebuild.py
```

# How build?

Currently Planned Features: A bunch, but I'm not writing them right now.
```
pyinstaller Scares_Scrambler_Class_Rebuild.py -w -F -i Assets/favi.ico
```
Binary file removed Scares_Scrambler_Class_Rebuild.exe
Binary file not shown.
9 changes: 4 additions & 5 deletions Scares_Scrambler_Class_Rebuild.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

#!py -3.4
#!/usr/bin/env python3

import os
import random
Expand All @@ -15,9 +14,9 @@
'''Hello, anyone reading this! Don't mind the disgusting code in some places; I'm not that good at coding, so don't expect it to work perfectly
and/or look pretty! Anyways, hopefully you'll find some enjoyment messing around with this corrupter. Have fun!'''

buildNumber = "20"
versionNumber = "v1.21"
goodIcon = "Assets/favi16.ico"
buildNumber = "9+10"
versionNumber = "v1.2121"
goodIcon = "Assets/favi.ico"

#os.getcwd() to get working directory
#Thank you Russel Dias from https://stackoverflow.com/questions/5137497
Expand Down
1 change: 1 addition & 0 deletions Theme_Class_File.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3

#Scares Scramber Theme Class File
import tkinter as Tkinter
Expand Down

0 comments on commit 7a65dbb

Please sign in to comment.