Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3486cb0
Separate UpdateAllInstalledModsModal's state from DownloadModModal an…
VilppeRiskidev Jun 24, 2025
19dc8c7
Separate DownloadModVersionSelectModal's state from DownloadModModal …
VilppeRiskidev Jun 24, 2025
6baf23a
Separate DownloadModModal from other modals and rename it to Download…
VilppeRiskidev Jun 24, 2025
1304dc0
Simplify component control logic
anttimaki Jun 27, 2025
d47c2af
Merge pull request #1831 from ebkr/separate-downloadmodmodal
anttimaki Jun 27, 2025
321eb3f
Auto-focus the name input when CreateProfileModal is opened
VilppeRiskidev Jun 25, 2025
b6873ef
Merge pull request #1833 from ebkr/auto-focus-create-profile-name
anttimaki Jun 27, 2025
1490e24
Add auto-focus and submit on enter key to a few inputs on the ImportP…
VilppeRiskidev Jun 25, 2025
caa22a1
Merge pull request #1834 from ebkr/auto-focus-import-profile-modal
anttimaki Jun 27, 2025
0765ec5
Fix online mod list reactivity
anttimaki Jun 28, 2025
d29e6cc
Merge pull request #1840 from ebkr/fix-modlist-reactivity
anttimaki Jun 28, 2025
c14741e
Add Lost Skies Island Creator
anttimaki Jun 29, 2025
fa3cb61
Merge pull request #1841 from ebkr/add-lsic
anttimaki Jun 29, 2025
f2812bd
Moved usages of isProtonGame to safer Utils call
ebkr Jul 15, 2025
388fce8
Corrected accidental inversion of conditional
ebkr Jul 17, 2025
fd906a4
Add support for four games
anttimaki Jul 19, 2025
6e71f74
Merge pull request #1852 from ebkr/game-additions
anttimaki Jul 19, 2025
7ded62e
Add Bad North and mod loader support for Mycopunk
anttimaki Jul 21, 2025
b1fb158
Merge pull request #1853 from ebkr/bad-north
anttimaki Jul 21, 2025
1815868
Added STEAM_DIRECT support for isProtonRequired call
ebkr Jul 24, 2025
8985a8e
Added restriction for isProtonRequired to only apply for Linux
ebkr Jul 16, 2025
adb7ffe
WIP: Added setting and modal to allow selection of launch types.
ebkr Jul 16, 2025
c45ff83
Changed imports to relative
ebkr Jul 16, 2025
ab4d35b
Added ability to show wrapper launch arguments if required
ebkr Jul 16, 2025
f18f715
Implemented a CopyToClipboardButton component
ebkr Jul 16, 2025
ad10ed0
LaunchType setting can now be set via modal
ebkr Jul 16, 2025
7389fb7
Proton game determination can now be overridden via LaunchType setting
ebkr Jul 16, 2025
47db158
Fixed condition where launch wrapper arguments are shown
ebkr Jul 18, 2025
5dc8374
Merge pull request #1849 from ebkr/fix-linux-other-selection
ebkr Jul 24, 2025
e7ff78b
Addressed PR comments
ebkr Jul 24, 2025
5697fd0
Fixed leftover non-relative import
ebkr Jul 24, 2025
4381fd1
Merge pull request #1850 from ebkr/proton-settings-selection
ebkr Jul 24, 2025
cb93751
Updated CHANGELOG and versions. Updated screenshots in README.
ebkr Jul 28, 2025
03ff2b9
Merge pull request #1861 from ebkr/release-3.2.2
ebkr Jul 28, 2025
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
### 3.2.2
#### Games added
- Bad North
- Logic World
- Lost Skies Island Creator
- Mycopunk
- Vellum
- Word Play

#### Other changes
This release primarily focuses on improved Linux support, of which:
- The `Other` platform option no longer hangs the application on Linux
- You can now manually choose between Native, Proton, and Auto launch behaviour

### 3.2.1
#### Games added
- PEAK
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,21 @@ The only thing you have to consider when suggesting a feature is the impact it w

Game selection

![](https://i.imgur.com/mmzY9xQ.png)
![](https://i.imgur.com/sz1HZP7.png)

Installed mod view

![](https://i.imgur.com/d7w4qEl.png)
![](https://i.imgur.com/oqOREkh.png)

Downloadable mods

![](https://i.imgur.com/eoIAMMP.png)
![](https://i.imgur.com/o6EydOd.png)

Config editor

![](https://i.imgur.com/RT6HsxF.png)
![](https://i.imgur.com/A01ntPm.png)

Profiles

![](https://i.imgur.com/nLfNaQJ.png)
![](https://i.imgur.com/ocwFGkS.png)

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.1",
"version": "3.2.2",
"description": "A simple and easy to use mod manager for many games using Thunderstore.",
"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.2.1');
public static VERSION: VersionNumber = new VersionNumber('3.2.2');
public static IS_PORTABLE: boolean = false;
public static APP_NAME: string = "r2modman";
}
Loading
Loading