Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2024.3 Build Support #346

Merged
merged 2 commits into from
Sep 19, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

#### Unreleased

- Added 2024.3 Build Support

#### 5.11.0

- Added 2024.2 Build Support

#### 5.10.0
Expand Down
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.intellij.lang.annotations.Language
val UPDATE_MESSAGE: String = """
What's New?<br>
<ul>
<li>2024.2 Build Support</li>
<li>2024.3 Build Support</li>
</ul>
<br>Please see the <a href='https://github.com/one-dark/jetbrains-one-dark-theme/blob/master/CHANGELOG.md'>Changelog</a> for more details.
<br>
Expand Down
Loading