Skip to content

Commit

Permalink
Add support for IU, IC and CL 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Apr 11, 2024
1 parent f393620 commit 2b7be7d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Copyright (c) 2022-2024 ChilliBits. All rights reserved.
*/

import org.jetbrains.changelog.Changelog
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

fun properties(key: String) = project.findProperty(key).toString()
Expand Down Expand Up @@ -81,9 +82,9 @@ tasks {

// Get the latest available change notes from the changelog file
changeNotes.set(provider {
changelog.run {
changelog.renderItem(changelog.run {
getOrNull(properties("pluginVersion")) ?: getLatest()
}.toHTML()
}, Changelog.OutputType.HTML)
})
}

Expand Down
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ pluginVersion = 1.0.5

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 233
pluginUntilBuild = 233.*
pluginSinceBuild = 241
pluginUntilBuild = 241.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IU
ideaVersion = 2023.3
clionVersion = 2023.3
ideaVersion = 2024.1
clionVersion = 2024.1

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# https://plugins.jetbrains.com/plugin/12775-native-debugging-support/versions
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:233.11799.188
ideaPlugins = com.intellij.java, com.intellij.nativeDebug:233.11799.188, org.intellij.plugins.markdown:233.11799.165
ideaCommunityPlugins = com.intellij.java, org.intellij.plugins.markdown:233.11799.165
clionPlugins = com.intellij.cidr.base, com.intellij.clion, org.intellij.plugins.markdown:233.11799.165
ideaPlugins = com.intellij.java, com.intellij.nativeDebug:241.14494.234, org.intellij.plugins.markdown:241.14494.150
ideaCommunityPlugins = com.intellij.java, org.intellij.plugins.markdown:241.14494.150
clionPlugins = com.intellij.cidr.base, com.intellij.clion, org.intellij.plugins.markdown:241.14494.150

# Java language level used to compile sources and to generate the files for - Java 17 is required since 2022.3
javaVersion = 17

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.3
gradleVersion = 8.7

# Opt-out flag for bundling Kotlin standard library.
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
Expand Down

0 comments on commit 2b7be7d

Please sign in to comment.