From b3ce6d62a7df19419b70e6591750de8375e7b75b Mon Sep 17 00:00:00 2001 From: FalsePattern Date: Thu, 17 Apr 2025 09:44:51 +0200 Subject: [PATCH] ci: add 251 to build and docs --- CHANGELOG.md | 2 ++ README.md | 1 + build.gradle.kts | 2 +- build.sh | 2 +- push.sh | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb38c155..28082ec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ Changelog structure reference: ### Added +- IDEA 2025.1 support + - LSP - Configurable inlay hints file size limit to reduce IDE lag diff --git a/README.md b/README.md index 289a7aa2..73a9ebea 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ through the built-in plugin browser: 1. Go to `Settings -> Plugins` 2. To the right of the `Installed` button at the top, click on the `...` dropdown menu, then select `Manage Plugin Repositories...` 3. Click the add button, and then enter the ZigBrains updater URL, based on your IDE version: + - `2025.1.*` or newer: https://falsepattern.com/zigbrains/updatePlugins-251.xml - `2024.3.*`: https://falsepattern.com/zigbrains/updatePlugins-243.xml - `2024.2.*`: https://falsepattern.com/zigbrains/updatePlugins-242.xml - `2024.1.*`: https://falsepattern.com/zigbrains/updatePlugins-241.xml diff --git a/build.gradle.kts b/build.gradle.kts index 51b5a3d8..d5315c52 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ plugins { idea `maven-publish` } -val publishVersions = listOf("241", "242", "243") +val publishVersions = listOf("241", "242", "243", "251") val pluginVersionFull get() = "$pluginVersion-$pluginSinceBuild" val pluginVersion: String by project val pluginSinceBuild: String by project diff --git a/build.sh b/build.sh index f91f693d..9c12ede7 100644 --- a/build.sh +++ b/build.sh @@ -23,7 +23,7 @@ set -e -declare -a branches=("master" "242" "241") +declare -a branches=("master" "243" "242" "241") DEFAULT_BRANCH="${branches[0]}" diff --git a/push.sh b/push.sh index 79d73c3a..7142ca83 100755 --- a/push.sh +++ b/push.sh @@ -23,7 +23,7 @@ set -e -declare -a branches=("dev" "master" "242" "241") +declare -a branches=("dev" "master" "243" "242" "241") die () { echo >&2 "$@"