backport: 23.1.1
This commit is contained in:
parent
83d7c9d932
commit
6da7815895
3 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
pluginName=ZigBrains
|
||||
pluginRepositoryUrl=https://github.com/FalsePattern/ZigBrains
|
||||
|
||||
pluginVersion=23.1.0
|
||||
pluginVersion=23.1.1
|
||||
|
||||
pluginSinceBuild=242
|
||||
pluginUntilBuild=242.*
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue