mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-04-11 04:15:45 +02:00
fixes #408
This commit is contained in:
parent
5271d97c00
commit
f1f9ec5974
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@ -1,3 +0,0 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: breandan
|
@ -2,6 +2,12 @@
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 3.8.8
|
||||
|
||||
- Add AZERTY keyboard layout, [#398](https://github.com/acejump/AceJump/pull/398), thanks to [@delphinaubin](https://github.com/delphinaubin)
|
||||
- Add bounded toggle mode to start jump mode before or after the caret, [#401](https://github.com/acejump/AceJump/pull/401), thanks to [@colossatr0n](https://github.com/colossatr0n)
|
||||
- Remove only the highlighters added by AceJump when jump session ends, [#407](https://github.com/acejump/AceJump/pull/407), thanks to [@huoguangjin](https://github.com/huoguangjin)
|
||||
|
||||
## 3.8.7
|
||||
|
||||
- Fixes Unicode-ASCII regression, [#399](https://github.com/acejump/AceJump/issues/399)
|
||||
|
@ -42,6 +42,7 @@ tasks {
|
||||
}
|
||||
|
||||
// Remove pending: https://youtrack.jetbrains.com/issue/IDEA-278926
|
||||
@Suppress("UNUSED_VARIABLE")
|
||||
val test by getting(Test::class) {
|
||||
isScanForTestClasses = false
|
||||
// Only run tests from classes that end with "Test"
|
||||
@ -58,7 +59,7 @@ kotlin.jvmToolchain {
|
||||
}
|
||||
|
||||
changelog {
|
||||
version.set("3.8.7")
|
||||
version.set("3.8.8")
|
||||
path.set("${project.projectDir}/CHANGES.md")
|
||||
header.set(provider { "[${project.version}] - ${date()}" })
|
||||
itemPrefix.set("-")
|
||||
@ -77,11 +78,11 @@ dependencies {
|
||||
}
|
||||
|
||||
intellij {
|
||||
version.set("2022.1.1")
|
||||
version.set("2022.1.3")
|
||||
pluginName.set("AceJump")
|
||||
updateSinceUntilBuild.set(false)
|
||||
plugins.set(listOf("java"))
|
||||
}
|
||||
|
||||
group = "org.acejump"
|
||||
version = "3.8.7"
|
||||
version = "3.8.8"
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-rc-2-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
Loading…
Reference in New Issue
Block a user