Skip to content

Commit

Permalink
Merge pull request #107 from BUTR/dev
Browse files Browse the repository at this point in the history
Release v1.0.1
  • Loading branch information
Aragas authored May 28, 2024
2 parents 0d5fe4f + a378c8d commit ac58717
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
needs: [get-version, build-and-test]
uses: BUTR/workflows/.github/workflows/release-github.yml@master
with:
mod_id: Vortex-Extension
mod_id: game-mount-and-blade2
mod_version: ${{ needs.get-version.outputs.version }}
mod_description: |
Download and install using the Extensions panel in Vortex.
Expand All @@ -73,12 +73,12 @@ jobs:
with:
nexusmods_game_id: site
nexusmods_mod_id: 875
mod_filename: 'Vortex Extension'
mod_filename: game-mount-and-blade2
mod_version: ${{ needs.get-version.outputs.version }}
mod_description: |
Download and install using the Extensions panel in Vortex.
To manually install, extract the 7z to %APPDATA%/Vortex/plugins/game-mount-and-blade2.
artifact_name: game-mount-and-blade2
secrets:
NEXUSMODS_APIKEY: ${{ secrets.ARAGAS_NEXUSMODS_API_KEY }}
NEXUSMODS_COOKIES: ${{ secrets.ARAGAS_NEXUSMODS_COOKIE_SID_DEVELOP }}
NEXUSMODS_SESSION_COOKIE: ${{ secrets.ARAGAS_NEXUSMODS_SESSION_COOKIE }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "game-mount-and-blade-ii-bannerlord-butr",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Vortex extension for Mount and Blade II: Bannerlord mod management.",
"author": "BUTR Team & Nexus Mods",
"license": "GPL-3.0+",
Expand Down
3 changes: 3 additions & 0 deletions src/utils/vortexLauncherManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ export class VortexLauncherManager {
}

const loadOrder = state.persistent.loadOrder[profileId] ?? [];
if (!Array.isArray(loadOrder)) {
return [];
}
return loadOrder;
};

Expand Down

0 comments on commit ac58717

Please sign in to comment.