diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index e027d0d..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -github: breandan diff --git a/CHANGES.md b/CHANGES.md index 67b1458..ac8933d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/build.gradle.kts b/build.gradle.kts index c3af9c8..8ae6666 100755 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index aa991fc..26e62a1 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -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