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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2025.1.1
* Fixes an issue with the Rimworld Run Configuration when using multiple parameters

## 2025.1
* Adds support for [Parent=""] attributes
* Makes the New Mod template modular, allowing you to select the components you want included in your mod
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
DotnetPluginId=ReSharperPlugin.RimworldDev
DotnetSolution=ReSharperPlugin.RimworldDev.sln
RiderPluginId=com.jetbrains.rider.plugins.rimworlddev
PluginVersion=2025.1
PluginVersion=2025.1.1

BuildConfiguration=Release

Expand Down
2 changes: 1 addition & 1 deletion src/rider/main/kotlin/run/RunConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class RunConfiguration(project: Project, factory: ConfigurationFactory, name: St
return object : CommandLineState(environment) {
override fun startProcess(): ProcessHandler {
val commandLine = GeneralCommandLine(getScriptName())
.withParameters(getCommandLineOptions())
.withParameters(getCommandLineOptions().split(' '))

EnvironmentVariablesData.create(getEnvData(), true).configureCommandLine(commandLine, true)

Expand Down
Loading