Skip to content

Commit

Permalink
Release 3.1.52 (#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebkr authored Nov 4, 2024
1 parent 4a97997 commit e433e33
Show file tree
Hide file tree
Showing 7 changed files with 897 additions and 862 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/setup-node@v3
with:
# The talk on the street says this might be a good version for building.
node-version: 14.20.1
node-version: 19.2.0
cache: yarn

- name: Install Yarn dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/setup-node@v4
with:
# The talk on the street says this might be a good version for building.
node-version: 14.20.1
node-version: 19.2.0
cache: yarn

- name: Install Yarn dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/setup-node@v3
with:
# The talk on the street says this might be a good version for building.
node-version: 14.20.1
node-version: 19.2.0
cache: yarn

- name: Install Yarn dependencies
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 3.1.52
#### Small quality of life changes
- Upgraded from Electron v11 to v24
- Credit to (@JonathanSteininger)
- Mods imported from a profile keep the same order they were exported in
- Fixed sorting by download count
- Reduced time taken to install when a mod has a large number of dependencies

### 3.1.51
#### Memory and performance improvements
The TS team have been working hard to improve the following:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "r2modman",
"version": "3.1.51",
"description": "A simple and easy to use mod manager for several games using Thunderstore.",
"version": "3.1.52",
"description": "A simple and easy to use mod manager for many games using Thunderstore.",
"productName": "r2modman",
"author": "ebkr",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/_managerinf/ManagerInformation.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import VersionNumber from '../model/VersionNumber';

export default class ManagerInformation {
public static VERSION: VersionNumber = new VersionNumber('3.1.51');
public static VERSION: VersionNumber = new VersionNumber('3.1.52');
public static IS_PORTABLE: boolean = false;
public static APP_NAME: string = "r2modman";
}
1,739 changes: 883 additions & 856 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit e433e33

Please sign in to comment.