ci: add 251 to build and docs

This commit is contained in:
FalsePattern 2025-04-17 09:44:51 +02:00
parent f28cf77347
commit b3ce6d62a7
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
5 changed files with 6 additions and 3 deletions

View file

@ -19,6 +19,8 @@ Changelog structure reference:
### Added ### Added
- IDEA 2025.1 support
- LSP - LSP
- Configurable inlay hints file size limit to reduce IDE lag - Configurable inlay hints file size limit to reduce IDE lag

View file

@ -15,6 +15,7 @@ through the built-in plugin browser:
1. Go to `Settings -> Plugins` 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...` 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: 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.3.*`: https://falsepattern.com/zigbrains/updatePlugins-243.xml
- `2024.2.*`: https://falsepattern.com/zigbrains/updatePlugins-242.xml - `2024.2.*`: https://falsepattern.com/zigbrains/updatePlugins-242.xml
- `2024.1.*`: https://falsepattern.com/zigbrains/updatePlugins-241.xml - `2024.1.*`: https://falsepattern.com/zigbrains/updatePlugins-241.xml

View file

@ -14,7 +14,7 @@ plugins {
idea idea
`maven-publish` `maven-publish`
} }
val publishVersions = listOf("241", "242", "243") val publishVersions = listOf("241", "242", "243", "251")
val pluginVersionFull get() = "$pluginVersion-$pluginSinceBuild" val pluginVersionFull get() = "$pluginVersion-$pluginSinceBuild"
val pluginVersion: String by project val pluginVersion: String by project
val pluginSinceBuild: String by project val pluginSinceBuild: String by project

View file

@ -23,7 +23,7 @@
set -e set -e
declare -a branches=("master" "242" "241") declare -a branches=("master" "243" "242" "241")
DEFAULT_BRANCH="${branches[0]}" DEFAULT_BRANCH="${branches[0]}"

View file

@ -23,7 +23,7 @@
set -e set -e
declare -a branches=("dev" "master" "242" "241") declare -a branches=("dev" "master" "243" "242" "241")
die () { die () {
echo >&2 "$@" echo >&2 "$@"