Skip to content

Commit

Permalink
Imports are now relative
Browse files Browse the repository at this point in the history
  • Loading branch information
ebkr committed Apr 25, 2021
1 parent fa0c3df commit 31e5cfb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ From small features such as always-expanded cards, all the way to larger feature
The only thing you have to consider when suggesting a feature is the impact it will have on users who don't have a lot of experience with computers.

## Changelog
### 3.1.11
- Added Outward support.
- Update all can now be accessed without going to the Settings screen.
- Fixed several settings.
- Config editor allows editing of JSON/TXT files again.
- API requests are now cached, allowing usage when the API is inaccessible.
- Knowing if the API is down is currently only accessible from the "Refresh online mod list" setting. This will be fixed in a later update.
- Valheim BepInEx can now use the native version of the game.
- Other minor fixes.

### 3.1.10
- Game selection screen has been overhauled.
- You can now skip game selection using the "Set as default" button.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "r2modman",
"version": "3.1.10",
"version": "3.1.11",
"description": "A simple and easy to use mod manager for Risk of Rain 2, Dyson Sphere Program and Valheim.",
"productName": "r2modman",
"author": "ebkr",
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.10');
public static VERSION: VersionNumber = new VersionNumber('3.1.11');
public static IS_PORTABLE: boolean = false;
public static APP_NAME: string = "r2modman";
}

0 comments on commit 31e5cfb

Please sign in to comment.