mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge branch 'main' into set-nexus-api-key
This commit is contained in:
commit
fd01fadf2c
@ -1,7 +1,9 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
#### Version - 3.6.1.0 - TBD
|
#### Version - 3.6.1.0 - TBD
|
||||||
*Added `set-nexus-api-key` CLI command
|
* Added `set-nexus-api-key` CLI command
|
||||||
|
* Added Starfield meta data
|
||||||
|
* Added Fallout New Vegas Epic Games meta data
|
||||||
|
|
||||||
#### Version - 3.6.0.0 - 5/25/2024
|
#### Version - 3.6.0.0 - 5/25/2024
|
||||||
* Wabbajack now uses OAuth2 for Nexus Mods logins
|
* Wabbajack now uses OAuth2 for Nexus Mods logins
|
||||||
|
@ -54,5 +54,6 @@ public enum Game
|
|||||||
[Description("Modding Tools")] ModdingTools,
|
[Description("Modding Tools")] ModdingTools,
|
||||||
|
|
||||||
[Description("Final Fantasy VII Remake")] FinalFantasy7Remake,
|
[Description("Final Fantasy VII Remake")] FinalFantasy7Remake,
|
||||||
[Description("Baldur's Gate 3")] BaldursGate3
|
[Description("Baldur's Gate 3")] BaldursGate3,
|
||||||
|
[Description("Starfield")] Starfield
|
||||||
}
|
}
|
||||||
|
@ -74,6 +74,7 @@ public static class GameRegistry
|
|||||||
MO2ArchiveName = "falloutnv",
|
MO2ArchiveName = "falloutnv",
|
||||||
SteamIDs = new[] {22380, 22490}, // normal and RU version
|
SteamIDs = new[] {22380, 22490}, // normal and RU version
|
||||||
GOGIDs = new long[] {1454587428},
|
GOGIDs = new long[] {1454587428},
|
||||||
|
EpicGameStoreIDs = new[] {"dabb52e328834da7bbe99691e374cb84"},
|
||||||
RequiredFiles = new[]
|
RequiredFiles = new[]
|
||||||
{
|
{
|
||||||
"FalloutNV.exe".ToRelativePath()
|
"FalloutNV.exe".ToRelativePath()
|
||||||
@ -602,6 +603,22 @@ public static class GameRegistry
|
|||||||
MainExecutable = @"bin/bg3.exe".ToRelativePath()
|
MainExecutable = @"bin/bg3.exe".ToRelativePath()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Game.Starfield, new GameMetaData
|
||||||
|
{
|
||||||
|
Game = Game.Starfield,
|
||||||
|
NexusName = "starfield",
|
||||||
|
NexusGameId = 4187,
|
||||||
|
MO2Name = "Starfield",
|
||||||
|
MO2ArchiveName = "Starfield",
|
||||||
|
SteamIDs = [1716740],
|
||||||
|
RequiredFiles = new []
|
||||||
|
{
|
||||||
|
@"Starfield.exe".ToRelativePath()
|
||||||
|
},
|
||||||
|
MainExecutable = @"Starfield.exe".ToRelativePath()
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Game.ModdingTools, new GameMetaData
|
Game.ModdingTools, new GameMetaData
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user