Skip to content

Commit f5c930e

Browse files
committed
Java auto installation fixed and improved
1 parent a4e7fbd commit f5c930e

File tree

9 files changed

+1172
-243
lines changed

9 files changed

+1172
-243
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ __pycache__/
33
*.pyc
44
*.pyo
55
*.pyd
6+
*.py[cod]
7+
*$py.class
68

79
# Virtual Environment
810
venv/
911
.venv/
12+
env/
13+
ENV/
1014

1115
# Downloaded Dependencies
1216
bore.exe
@@ -17,6 +21,9 @@ bore.exe
1721
# IDE / Editor specific
1822
.vscode/
1923
.idea/
24+
*.swp
25+
*.swo
26+
*~
2027

2128
# Build artifacts
2229
build/
@@ -25,3 +32,44 @@ dist/
2532

2633
# Log files
2734
*.log
35+
36+
# ===== MINECRAFT SERVER GUI SPECIFIC =====
37+
38+
# Java runtime installations (downloaded automatically)
39+
java_runtimes/
40+
41+
# Application configuration files
42+
gui_config.json
43+
44+
# Test servers created during development
45+
test_server/
46+
test_server_*/
47+
48+
# Minecraft server files (if testing locally)
49+
server.properties
50+
eula.txt
51+
ops.json
52+
banned-*.json
53+
whitelist.json
54+
usercache.json
55+
world/
56+
world_*/
57+
logs/
58+
crash-reports/
59+
60+
# Backup files
61+
*.bak
62+
*.backup
63+
64+
# OS specific files
65+
.DS_Store
66+
.DS_Store?
67+
._*
68+
.Spotlight-V100
69+
.Trashes
70+
ehthumbs.db
71+
Thumbs.db
72+
73+
# Temporary files
74+
*.tmp
75+
*.temp

0 commit comments

Comments
 (0)