23 Commits

Author SHA1 Message Date
Storm Dragon 8939922030 Insure launcher still works with orca dbus call changes. 2026-05-06 17:31:39 -04:00
Storm Dragon 279b22ea02 Add Bring Back the 90s map detection for custom maps. Remember to use FreeDoom1 if you plan on choosing that map. 2026-01-04 13:36:05 -05:00
Storm Dragon ab0023f8f5 Cthulhu support updated to use d-bus. 2026-01-04 12:22:38 -05:00
Storm Dragon 17d2954eef Launcher updates. 2025-12-22 21:20:13 -05:00
Storm Dragon f2e4ab7177 Improved Orca d-bus integration. Actually use dasbus instead of subprocessing it. 2025-12-10 13:52:13 -05:00
Storm Dragon 9d1b65d71b The fancy copying stuff didn't work. Simplified the .spec. 2025-11-03 21:05:41 -05:00
Storm Dragon 1c6710106f The fancy copying stuff didn't work. Simplified the .spec. 2025-11-03 21:00:58 -05:00
Storm Dragon 54040d2669 Hopefully improve the .spec file to copy files in place and not open a console window. 2025-11-03 20:55:15 -05:00
Storm Dragon 64a5546a55 Experimental changes to addon loading. 2025-11-03 19:03:37 -05:00
Storm Dragon 3816c649ef Updated the launcher to call the weapons9 version. 2025-11-03 18:11:12 -05:00
Storm Dragon ba514c33ae Make sure files are shown and played in order. 2025-11-03 02:48:10 -05:00
Storm Dragon cd48d9071c Manual player updated to handle the new file structure. 2025-11-03 01:45:26 -05:00
Storm Dragon a1ce9eab9f Fixed case mismatch in sound directory files for Heretic and Hexen. 2025-11-01 13:42:55 -04:00
Storm Dragon 4225988c94 Found and fixed a windows compatibility problem. no sigquit on windows apparently. 2025-10-31 22:10:44 -04:00
Storm Dragon 0975ea34f9 Fixed map problem with Heretic. 2025-10-28 02:52:11 -04:00
Storm Dragon fd8aac0de1 add optional TobyCustom path to ~/.local/share/doom/TobyCustom. 2025-10-10 03:58:01 -04:00
Storm Dragon d8abcc4cca Fix the hang on exit for real this time. The other fix was just a practice run. 2025-10-09 19:49:24 -04:00
Storm Dragon 1b3b90b4df Fix music loading when maps are loaded last. 2025-10-09 17:42:01 -04:00
Storm Dragon d1917ffc03 Hopefully close gracefully. 2025-10-09 17:33:26 -04:00
Storm Dragon c5b1a0af15 Insure the ~/.local/share/doom directory works... Hopefully. 2025-10-09 17:18:19 -04:00
Storm Dragon c359c037e1 Preparing to merge. 2025-09-05 00:01:59 -04:00
Storm Dragon 08be529a33 Few fixes for custom music addons. 2025-09-04 14:54:05 -04:00
Storm Dragon 380bb2ba81 Support for custom music mods. The file name must contain the words in the correct order with correct upper case letters: Custom Music Mod and can optionally include spaces, -, or _. 2025-09-04 13:04:16 -04:00
3 changed files with 732 additions and 218 deletions
+1
View File
@@ -2,3 +2,4 @@ accessible_output2
PySide6>=6.0.0
python-vlc
setproctitle>=1.2.0
dasbus; sys_platform == 'linux'
+729 -217
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -26,7 +26,7 @@ exe = EXE(
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
@@ -42,3 +42,4 @@ coll = COLLECT(
upx_exclude=[],
name='Toby Doom Launcher',
)