Skip to content

Commit

Permalink
hotfix for archive check and loot
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious committed May 7, 2024
1 parent 5a29d48 commit 9ba9d1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vortex",
"version": "1.11.1-beta",
"version": "1.11.2-beta",
"productName": "Vortex",
"description": "Vortex",
"author": "Black Tree Gaming Ltd.",
Expand Down
2 changes: 1 addition & 1 deletion extensions/gamebryo-archive-check
Submodule gamebryo-archive-check updated 5 files
+2 −0 .gitignore
+1 −1 package.json
+19 −13 src/index.ts
+1 −1 src/types.ts
+1,733 −1,228 yarn.lock
2 changes: 1 addition & 1 deletion extensions/gamebryo-plugin-management
2 changes: 1 addition & 1 deletion src/extensions/updater/autoupdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function setupAutoUpdate(api: IExtensionApi) {

log('debug', 'Querying update', { tag: updateInfo["tag"], version: updateInfo["version"] })

if (semver.satisfies(updateInfo.version, `~${autoUpdater.currentVersion.version}`)) {
if (semver.satisfies(updateInfo.version, `~${autoUpdater.currentVersion.version}`, { includePrerelease: true })) {
log('info', `${updateInfo.version} is a patch update from ${autoUpdater.currentVersion.version} so we need to force download`);
// if it's a patch release (1.2.x) then we don't need to ask to download
return resolve();
Expand Down

0 comments on commit 9ba9d1e

Please sign in to comment.