backport: 23.1.1
This commit is contained in:
parent
dd9c6daae7
commit
06f933a69c
3 changed files with 9 additions and 2 deletions
|
@ -17,6 +17,13 @@ Changelog structure reference:
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [23.1.1]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Project
|
||||||
|
- New project creation creates a blank ZLS config
|
||||||
|
|
||||||
## [23.1.0]
|
## [23.1.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
pluginName=ZigBrains
|
pluginName=ZigBrains
|
||||||
pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
|
pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
|
||||||
|
|
||||||
pluginVersion=23.1.0
|
pluginVersion=23.1.1
|
||||||
|
|
||||||
pluginSinceBuild=241
|
pluginSinceBuild=241
|
||||||
pluginUntilBuild=241.*
|
pluginUntilBuild=241.*
|
||||||
|
|
|
@ -225,7 +225,7 @@ class ZLSSettingsPanel(private val project: Project) : ZigProjectConfigurationPr
|
||||||
}
|
}
|
||||||
|
|
||||||
override var data
|
override var data
|
||||||
get() = ZLSSettings(
|
get() = if (project.isDefault) ZLSSettings() else ZLSSettings(
|
||||||
zlsPath.text,
|
zlsPath.text,
|
||||||
zlsConfigPath.text,
|
zlsConfigPath.text,
|
||||||
inlayHints.isSelected,
|
inlayHints.isSelected,
|
||||||
|
|
Loading…
Add table
Reference in a new issue