Update AutoLoadGame mod and remove RemoteControl mod

The RemoteControl mod has been completely deleted along with its references in README.md file and docker-compose.yml. In addition, the AutoLoadGame mod has been updated with an added author and bumped up version.
This commit is contained in:
norimicry 2024-03-29 20:10:45 -04:00
parent e7285b3d96
commit 13597e046a
8 changed files with 4 additions and 33 deletions

View File

@ -58,13 +58,6 @@ environment:
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true} - AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true} - AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
## Remote Control mod
# Disabling this will remove the ability to automatically sleep and save on shutdown
- ENABLE_REMOTECONTROL_MOD=${ENABLE_REMOTECONTROL_MOD-true}
- REMOTE_CONTROL_EVERYONE_IS_ADMIN=${REMOTE_CONTROL_EVERYONE_IS_ADMIN-true} # Disable any authorization by just making everyone an admin - useful for private servers where everyone is trusted
- REMOTE_CONTROL_DEFAULT_ADMINS=${REMOTE_CONTROL_DEFAULT_ADMINS-} # A list of comma-separated json objects to use as default admins, eg: {id: "123456789", name: "Seb"}, {id: "987654321", name: "Kitz"}
- REMOTE_CONTROL_SHOULD_ASSIGN_ADMIN_TO_FIRST_CABIN_FARMER=${REMOTE_CONTROL_SHOULD_ASSIGN_ADMIN_TO_FIRST_CABIN_FARMER-true} # Give the first player that connects admin privileges
## Save Backup mod ## Save Backup mod
# Disabling this will stop saves being backed up # Disabling this will stop saves being backed up
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true} - ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}

View File

@ -48,13 +48,6 @@ services:
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true} - AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true} - AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
## Remote Control mod
# Disabling this will remove the ability to automatically sleep and save on shutdown
- ENABLE_REMOTECONTROL_MOD=${ENABLE_REMOTECONTROL_MOD-true}
- REMOTE_CONTROL_EVERYONE_IS_ADMIN=${REMOTE_CONTROL_EVERYONE_IS_ADMIN-true} # Disable any authorization by just making everyone an admin - useful for private servers where everyone is trusted
- REMOTE_CONTROL_DEFAULT_ADMINS=${REMOTE_CONTROL_DEFAULT_ADMINS-} # A list of comma-separated json objects to use as default admins, eg: {id: "123456789", name: "Seb"}, {id: "987654321", name: "Kitz"}
- REMOTE_CONTROL_SHOULD_ASSIGN_ADMIN_TO_FIRST_CABIN_FARMER=${REMOTE_CONTROL_SHOULD_ASSIGN_ADMIN_TO_FIRST_CABIN_FARMER-true} # Give the first player that connects admin privileges
## Save Backup mod ## Save Backup mod
# Disabling this will stop saves being backed up # Disabling this will stop saves being backed up
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true} - ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}

View File

@ -1,10 +1,10 @@
{ {
"Name": "Auto Load Game", "Name": "Auto Load Game",
"Author": "Caraxian", "Author": "Caraxian, yatsukiko",
"Version": "1.0.2", "Version": "1.0.3",
"Description": "Automatically load a save file when starting.", "Description": "Automatically load a save file when starting.",
"UniqueID": "caraxian.AutoLoadGame", "UniqueID": "caraxian.AutoLoadGame",
"EntryDll": "AutoLoadGame.dll", "EntryDll": "AutoLoadGame.dll",
"MinimumApiVersion": "2.10.1", "MinimumApiVersion": "4.0.0",
"UpdateKeys": [ "Nexus:2509" ] "UpdateKeys": [ "Nexus:2509" ]
} }

View File

@ -1,5 +0,0 @@
{
"everyoneIsAdmin": ${REMOTE_CONTROL_EVERYONE_IS_ADMIN},
"admins": [],
"shouldAssignAdminToFirstCabinFarmer": ${REMOTE_CONTROL_SHOULD_ASSIGN_ADMIN_TO_FIRST_CABIN_FARMER}
}

View File

@ -1,10 +0,0 @@
{
"Name": "Remote Control",
"Author": "Sebbity",
"Version": "1.0.0",
"Description": "Remotely control a stardew valley host ",
"UniqueID": "Sebbity.RemoteControl",
"EntryDll": "RemoteControl.dll",
"MinimumApiVersion": "2.10.0",
"UpdateKeys": [ "GitHub:Novex/StardewValley-RemoteControl"]
}