-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
140 additions
and
62 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!-- Keep a Changelog guide -> https://keepachangelog.com --> | ||
|
||
# Slint-Idea-Plugin Changelog | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.7] - 2023-11-15 | ||
|
||
### Fixed | ||
- export error; | ||
- repetition error; | ||
- conditional element error; | ||
- model declaration error; | ||
|
||
## [0.2.6] - 2023-11-13 | ||
|
||
### Fixed | ||
- color error for hex colors with alpha channel; | ||
- state declaration error; | ||
- export error; | ||
- error declaring global singletons; | ||
- property binding error; | ||
- element declaration error; | ||
- error declaring an animation block; | ||
- image declaration error; | ||
- gradient declaration error; | ||
|
||
### Added | ||
- added highlighting of numeric values with units; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[versions] | ||
# libraries | ||
annotations = "24.0.1" | ||
|
||
# plugins | ||
kotlin = "1.9.10" | ||
changelog = "2.2.0" | ||
intellij = "1.16.0" | ||
grammarkit = "2022.3.1" | ||
|
||
#gradleIntelliJPlugin = "1.15.0" | ||
#qodana = "0.1.13" | ||
#kover = "0.7.4" | ||
|
||
[libraries] | ||
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" } | ||
|
||
[plugins] | ||
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } | ||
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" } | ||
intellij = { id = "org.jetbrains.intellij", version.ref = "intellij" } | ||
grammarkit = { id = "org.jetbrains.grammarkit", version.ref = "grammarkit" } | ||
|
||
|
||
# gradleIntelliJPlugin = { id = "org.jetbrains.intellij", version.ref = "gradleIntelliJPlugin" } | ||
|
||
#kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } | ||
#kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" } | ||
#qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,30 +11,6 @@ | |
<vendor email="[email protected]" url="https://github.com/kizeevov/slint-idea-plugin">kizeev</vendor> | ||
<resource-bundle>messages.SlintBundle</resource-bundle> | ||
|
||
<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager. | ||
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag. | ||
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description --> | ||
<description><![CDATA[ | ||
Support for <a href="https://slint.dev/">Slint</a>. Plugin is experimental and unofficial<br> | ||
Features:<br> | ||
<ul> | ||
<li>highlighting</li> | ||
<li>slint-lsp support</li> | ||
<li>preview support</li> | ||
<li>plugin configuration</li> | ||
</ul> | ||
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
Fixed: | ||
<ul> | ||
<li>export error;</li> | ||
<li>repetition error;</li> | ||
<li>conditional element error;</li> | ||
<li>model declaration error;</li> | ||
</ul> | ||
]]></change-notes> | ||
|
||
<depends>com.intellij.modules.platform</depends> | ||
<depends>com.intellij.modules.ultimate</depends> | ||
|
||
|