From 31e5cfbb01330a3c3bb9e307b51acbf9db95c0c7 Mon Sep 17 00:00:00 2001 From: Cade Ayres Date: Sun, 25 Apr 2021 17:45:34 +0100 Subject: [PATCH] Imports are now relative --- README.md | 10 ++++++++++ package.json | 2 +- src/_managerinf/ManagerInformation.ts | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af8b27fcd..f22152194 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.json b/package.json index 5db10fc69..4cd8b80ee 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index ca3060b42..dba39d95d 100644 --- a/src/_managerinf/ManagerInformation.ts +++ b/src/_managerinf/ManagerInformation.ts @@ -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"; }