diff --git a/CHANGELOG.md b/CHANGELOG.md index b389534..768960a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2025.1.3 + * Fix the missing project templates + ## 2025.1.2 * Implement the Debug Run Configuration on Linux diff --git a/build.gradle.kts b/build.gradle.kts index 263698c..a57877b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -167,6 +167,10 @@ dependencies { jetbrainsRuntime() bundledPlugin("com.intellij.resharper.unity") + + if (ProductVersion.contains("2025.2")) { + bundledModule("intellij.spellchecker") + } } } @@ -212,7 +216,7 @@ tasks.prepareSandbox { from(file, { into("${rootProject.name}/dotnet") }) }) - from("${rootDir}/src/dotnet/${DotnetPluginId}/projectTemplates", { into("${rootProject.name}/projectTemplates") }) + from("${rootDir}/src/dotnet/${DotnetPluginId}/ProjectTemplates", { into("${rootProject.name}/ProjectTemplates") }) doLast { dllFiles.forEach({ f -> diff --git a/gradle.properties b/gradle.properties index a53e823..43044b6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ DotnetPluginId=ReSharperPlugin.RimworldDev DotnetSolution=ReSharperPlugin.RimworldDev.sln RiderPluginId=com.jetbrains.rider.plugins.rimworlddev -PluginVersion=2025.1.2 +PluginVersion=2025.1.3 BuildConfiguration=Release