ci: add 251 to build and docs
This commit is contained in:
parent
f28cf77347
commit
b3ce6d62a7
5 changed files with 6 additions and 3 deletions
|
@ -19,6 +19,8 @@ Changelog structure reference:
|
|||
|
||||
### Added
|
||||
|
||||
- IDEA 2025.1 support
|
||||
|
||||
- LSP
|
||||
- Configurable inlay hints file size limit to reduce IDE lag
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
build.sh
2
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]}"
|
||||
|
||||
|
|
2
push.sh
2
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 "$@"
|
||||
|
|
Loading…
Add table
Reference in a new issue