Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,10 @@ jobs:
uses: actions/github-script@v6
with:
script: core.setFailed('It seems the build process failed silently. See previous step for more info.')

- if: contains(github.event.head_commit.message, 'build(artifact)')
name: Upload artifacts
uses: actions/upload-artifact@v6
with:
path: 'dist/electron/Packaged'
name: 'r2modman-${{ matrix.platform }}-build-${{ github.sha }}'
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### 3.2.14
#### Games added
- Carrier Deck
- Factory Planner
- On-Together: Virtual Co-Working
- Project Arrhythmia
- Stolen Realm
- The Farmer Was Replaced
- YAPYAP

#### Fixes
- On Together automatically resolves the correct folder
- Fixed linux_wrapper implementation that supports UMM. (Thanks to @alexneargarder)
- Miside image fixed (Thanks to @Hythera)

### 3.2.13
#### Fixes
- Linux behaviour used to automatically set WINEDLLOVERRIDES. This has been restored for now.
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.2.13",
"version": "3.2.14",
"description": "A simple and easy to use mod manager for many games using Thunderstore.",
"productName": "r2modman",
"author": "ebkr",
Expand Down
Binary file added public/images/game_selection/carrier-deck.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/game_selection/factory-planner.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/game_selection/on-together.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/game_selection/stolen-realm.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/game_selection/yapyap.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion public/linux_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ fi

if test -f "$BASEDIR/profiles/$R2PROFILE/run_bepinex.sh"; then
exec "$BASEDIR/profiles/$R2PROFILE/run_bepinex.sh" "$@"
elif test -f "$BASEDIR/profiles/$R2PROFILE/run_umm.sh"; then
exec "$BASEDIR/profiles/$R2PROFILE/run_umm.sh" "$@"
else
exec "$BASEDIR/profiles/$R2PROFILE/start_game_bepinex.sh" "$@"
exec "$BASEDIR/profiles/$R2PROFILE/start_game_bepinex.sh" "$@"
fi
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.2.13');
public static VERSION: VersionNumber = new VersionNumber('3.2.14');
public static IS_PORTABLE: boolean = false;
public static APP_NAME: string = "r2modman";
}
Loading
Loading