Fix Dispatch Executable and missing README Info (#229)

This commit is contained in:
Mitchell Syer
2026-06-06 09:32:42 +02:00
committed by GitHub
parent b21772ffdf
commit 3ff76e2798
2 changed files with 10 additions and 3 deletions
+1
View File
@@ -52,6 +52,7 @@ You can rename `modorganizer-basic_games-xxx` to whatever you want (e.g., `basic
| Darkest Dungeon — [GOG](https://www.gog.com/game/darkest_dungeon) / [STEAM](https://store.steampowered.com/app/262060/Darkest_Dungeon/) | [erri120](https://github.com/erri120) | [game_darkestdungeon.py](games/game_darkestdungeon.py) | <ul><li>save slot parsing</li><li>mod data checker</li></ul> |
| Dark Messiah of Might & Magic — [STEAM](https://store.steampowered.com/app/2100/Dark_Messiah_of_Might__Magic/) | [Holt59](https://github.com/holt59/) | [game_darkmessiahofmightandmagic.py](games/game_darkmessiahofmightandmagic.py) | <ul><li>save game preview</li></ul> |
| Dark Souls — [STEAM](https://store.steampowered.com/app/211420/DARK_SOULS_Prepare_To_Die_Edition/) | [Holt59](https://github.com/holt59/) | [game_darksouls.py](games/game_darkestdungeon.py) | |
| Dispatch — [STEAM](https://store.steampowered.com/app/2592160/Dispatch/) | [Syer10](https://github.com/Syer10) | [game_dispatch.py](games/game_dispatch.py) | |
| Divinity: Original Sin (Classic) — [STEAM](https://store.steampowered.com/app/230230/Divinity_Original_Sin_Classic/) | [LostDragonist](https://github.com/LostDragonist/) | [game_divinityoriginalsin.py](games/game_divinityoriginalsin.py) | <ul><li>save game preview</li></ul> |
| Divinity: Original Sin (Enhanced Edition) — [STEAM](https://store.steampowered.com/app/373420/Divinity_Original_Sin__Enhanced_Edition/) | [LostDragonist](https://github.com/LostDragonist/) | [game_divinityoriginalsinee.py](games/game_divinityoriginalsinee.py) | <ul><li>save game preview</li><li>mod data checker</li></ul> |
| Dragon's Dogma: Dark Arisen — [GOG](https://www.gog.com/game/dragons_dogma_dark_arisen) / [STEAM](https://store.steampowered.com/app/367500/Dragons_Dogma_Dark_Arisen/) | [EzioTheDeadPoet](https://github.com/EzioTheDeadPoet) | [game_dragonsdogmadarkarisen.py](games/game_dragonsdogmadarkarisen.py) | |
+9 -3
View File
@@ -1,6 +1,6 @@
from pathlib import Path
from PyQt6.QtCore import QDir
from PyQt6.QtCore import QDir, QFileInfo
import mobase
@@ -28,7 +28,7 @@ class DispatchModDataChecker(BasicModDataChecker):
class Dispatch(BasicGame, mobase.IPluginFileMapper):
Name = "Dispatch Support Plugin"
Author = "Syer10"
Version = "0.1.0"
Version = "0.1.1"
GameName = "Dispatch"
GameShortName = "dispatch"
@@ -56,7 +56,13 @@ class Dispatch(BasicGame, mobase.IPluginFileMapper):
def executables(self):
return [
mobase.ExecutableInfo("Dispatch", self.GameBinary),
mobase.ExecutableInfo(
"Dispatch",
QFileInfo(
self.gameDirectory(),
self.GameBinary,
),
),
]
## SAVE