backport: 23.1.1

This commit is contained in:
FalsePattern 2025-03-26 23:33:15 +01:00
parent dd9c6daae7
commit 06f933a69c
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
3 changed files with 9 additions and 2 deletions

View file

@ -17,6 +17,13 @@ Changelog structure reference:
## [Unreleased]
## [23.1.1]
### Fixed
- Project
- New project creation creates a blank ZLS config
## [23.1.0]
### Added

View file

@ -1,7 +1,7 @@
pluginName=ZigBrains
pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
pluginVersion=23.1.0
pluginVersion=23.1.1
pluginSinceBuild=241
pluginUntilBuild=241.*

View file

@ -225,7 +225,7 @@ class ZLSSettingsPanel(private val project: Project) : ZigProjectConfigurationPr
}
override var data
get() = ZLSSettings(
get() = if (project.isDefault) ZLSSettings() else ZLSSettings(
zlsPath.text,
zlsConfigPath.text,
inlayHints.isSelected,