mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-05-29 12:34:07 +02:00
build against platform 2024.1, #457
This commit is contained in:
parent
ca2b0a8dbe
commit
c68487c989
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 3.8.19
|
||||||
|
|
||||||
|
- Enable support for 2024.1, fixing ([#457](https://github.com/acejump/AceJump/issues/457))
|
||||||
|
|
||||||
## 3.8.18
|
## 3.8.18
|
||||||
|
|
||||||
- Disable tagging and jumping to folded regions ([#453](https://github.com/acejump/AceJump/issues/453)), thanks to [@chylex](https://github.com/chylex)
|
- Disable tagging and jumping to folded regions ([#453](https://github.com/acejump/AceJump/issues/453)), thanks to [@chylex](https://github.com/chylex)
|
||||||
|
@ -4,7 +4,7 @@ import org.jetbrains.changelog.date
|
|||||||
plugins {
|
plugins {
|
||||||
idea
|
idea
|
||||||
kotlin("jvm") version "1.8.20" // https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
|
kotlin("jvm") version "1.8.20" // https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
|
||||||
id("org.jetbrains.intellij") version "1.17.2"
|
id("org.jetbrains.intellij") version "1.17.3"
|
||||||
id("org.jetbrains.changelog") version "2.2.0"
|
id("org.jetbrains.changelog") version "2.2.0"
|
||||||
id("com.github.ben-manes.versions") version "0.51.0"
|
id("com.github.ben-manes.versions") version "0.51.0"
|
||||||
}
|
}
|
||||||
@ -32,7 +32,7 @@ tasks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runPluginVerifier {
|
runPluginVerifier {
|
||||||
ideVersions = listOf("233.11361.10-EAP-SNAPSHOT")
|
ideVersions = listOf("241.*")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove pending: https://youtrack.jetbrains.com/issue/IDEA-278926
|
// Remove pending: https://youtrack.jetbrains.com/issue/IDEA-278926
|
||||||
@ -54,7 +54,7 @@ kotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val acejumpVersion = "3.8.18"
|
val acejumpVersion = "3.8.19"
|
||||||
|
|
||||||
changelog {
|
changelog {
|
||||||
version = acejumpVersion
|
version = acejumpVersion
|
||||||
@ -74,7 +74,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
intellij {
|
intellij {
|
||||||
version = "2023.3.4"
|
version = "2024.1"
|
||||||
pluginName = "AceJump"
|
pluginName = "AceJump"
|
||||||
updateSinceUntilBuild = false
|
updateSinceUntilBuild = false
|
||||||
plugins = listOf("java")
|
plugins = listOf("java")
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Loading…
Reference in New Issue
Block a user