Skip to content

Commit bc7bb8d

Browse files
committed
v2.5.0t
1 parent 5bbec72 commit bc7bb8d

31 files changed

Lines changed: 334 additions & 181 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
__pycache__
33
.vscode
4+
.gitignore
45
Configuration.json
56
*.pyc

Apps/Building/Clang/OrangeLoader.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
139139
@end
140140

141141
int main(int argc, char* argv[]) {
142-
std::string current_version = "2.5.0s";
142+
std::string current_version = "2.5.0t";
143143
printWarnMessage("-----------");
144144
printWarnMessage("Welcome to OrangeBlox Loader 🍊!");
145145
printWarnMessage("Made by Efaz from efaz.dev!");

Apps/Building/Nuitka/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
<key>CFBundleName</key>
1414
<string>OrangeBlox</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>2.5.0s</string>
16+
<string>2.5.0t</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.5.0s</string>
20+
<string>2.5.0t</string>
2121
<key>CFBundlePackageType</key>
2222
<string>APPL</string>
2323
<key>LSApplicationCategoryType</key>

Apps/Building/Nuitka/Rebuild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
cur_path = os.path.realpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), "../", "../", "../"))
3434
cwd = cur_path
3535
prefix_print = "Rebuild OrangeBlox @ "
36-
current_version = {"version": "2.5.0s"}
36+
current_version = {"version": "2.5.0t"}
3737

3838
split_vers = current_version["version"].split(".")
3939
letter_version = None

Apps/Building/OrangeBlox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import webbrowser
1515
import PyKits
1616

17-
current_version = {"version": "2.5.0s"}
17+
current_version = {"version": "2.5.0t"}
1818
main_os = platform.system()
1919
args = sys.argv
2020
generated_app_id = os.urandom(3).hex()

Apps/Building/Pyinstaller/OrangeBlox_Windows.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ main_exe = EXE(
4646
upx=True,
4747
icon="../../../Images/AppIcon.ico",
4848
version="../../Storage/Version.txt",
49-
strip=True
49+
strip=False
5050
)
5151
combined_coll = COLLECT(
5252
main_exe,
@@ -56,6 +56,6 @@ combined_coll = COLLECT(
5656
upx=True,
5757
upx_exclude=[],
5858
name="OrangeBlox",
59-
strip=True,
59+
strip=False,
6060
distpath="dist",
6161
)

Apps/Building/Pyinstaller/OrangeBlox_macOS.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ except:
88
print("Disabled Visual Studio Code Mode")
99

1010
icon_file = "../../../Images/AppIcon.icns"
11-
current_version = {"version": "2.5.0s"}
11+
current_version = {"version": "2.5.0t"}
1212

1313
main_plist = {
1414
"CFBundleExecutable": "OrangeBlox",

Apps/Building/Pyinstaller/OrangeBlox_macOSIntel.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ except:
88
print("Disabled Visual Studio Code Mode")
99

1010
icon_file = "../../../Images/AppIcon.icns"
11-
current_version = {"version": "2.5.0s"}
11+
current_version = {"version": "2.5.0t"}
1212

1313
main_plist = {
1414
"CFBundleExecutable": "OrangeBlox",

Apps/Building/UpdateVersion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def generateFileHash(file_path):
1818

1919
# Load Version.json
2020
version_json = {
21-
"version": "2.5.0s",
22-
"latest_version": "2.5.0s",
21+
"version": "2.5.0t",
22+
"latest_version": "2.5.0t",
2323
"hashes": {},
2424
"download_location": "https://github.com/EfazDev/orangeblox/archive/refs/heads/main.zip"
2525
}

Apps/OrangeBloxMac.zip

1.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)