You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,13 +92,40 @@ You can edit this file manually or use the **GUI Settings Window**.
92
92
93
93
*Note: Key mappings and colors are currently defined in`core/config.py`.*
94
94
95
+
96
+
## Building from Source
97
+
98
+
To create a standalone executable (Windows .exe):
99
+
100
+
1. Run the build script:
101
+
```bash
102
+
python build.py
103
+
```
104
+
2. The output will be in`dist/RainingKeysPython/`.
105
+
106
+
### Debug vs Release Build
107
+
You can toggle the console window visibility via `config.ini`:
108
+
109
+
- **Debug Mode** (Console visible):
110
+
```ini
111
+
[General]
112
+
debug_mode = true
113
+
```
114
+
- **Release Mode** (No console, default):
115
+
```ini
116
+
[General]
117
+
debug_mode = false
118
+
```
119
+
(Or simply omit the line)
120
+
95
121
## Roadmap
96
122
97
-
- [] Interactive Configuration UI (GUI for settings)
98
-
- [] Save/Load config from JSON/YAML
123
+
- [x] Interactive Configuration UI (GUI for settings)
124
+
- [x] Save/Load config from ini
99
125
- [ ] Multi-monitor support
100
126
- [ ] Custom skins/textures for bars
101
127
128
+
102
129
## Disclaimer
103
130
104
131
This software is an unofficial community tool. It is not affiliated with, endorsed by, or connected to 7th Beat Games (developers of A Dance of Fire and Ice) or any other game developer. Use responsibly.
0 commit comments