diff --git a/CHANGELOG.md b/CHANGELOG.md index f296ff5..d1a1a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ #### Unreleased +- Added 2024.3 Build Support + +#### 5.11.0 + - Added 2024.2 Build Support #### 5.10.0 diff --git a/build.gradle b/build.gradle index f1fd30a..f77b532 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,11 @@ +buildscript { + configurations.all { + resolutionStrategy.dependencySubstitution { + substitute module("com.overzealous:remark:1.1.0") using module("com.wavefront:remark:2023-07.07") because "not available on maven central anymore" + } + } +} + plugins { id 'one-dark-theme-plugin' id 'org.jetbrains.intellij' version '1.9.0' @@ -61,7 +69,7 @@ tasks.runPluginVerifier { tasks.patchPluginXml { version.set(projectVersion) sinceBuild.set('203.7148.57') - untilBuild.set('242.*') + untilBuild.set('243.*') def changelogPath = "$projectDir/build/html/CHANGELOG.html" def readmePath = "$projectDir/build/html/README.html" diff --git a/src/main/kotlin/com/markskelton/notification/Notifications.kt b/src/main/kotlin/com/markskelton/notification/Notifications.kt index d3bae80..d1a728e 100644 --- a/src/main/kotlin/com/markskelton/notification/Notifications.kt +++ b/src/main/kotlin/com/markskelton/notification/Notifications.kt @@ -13,7 +13,7 @@ import org.intellij.lang.annotations.Language val UPDATE_MESSAGE: String = """ What's New?

Please see the Changelog for more details.