Skip to content

Commit

Permalink
v1.1.6 - 新增 CATCH().DO() 表达式的支持
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlau committed Mar 15, 2023
1 parent c5804ae commit cd6ae19
Show file tree
Hide file tree
Showing 156 changed files with 9,744 additions and 9,603 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]

## [1.1.6] - 2023-03-16
- 新增 CATCH().DO() 表达式

## [1.1.5] - 2023-02-01
- 修复 ITERATOR 关键字组件图标无法正常显示问题
- 修复 .el.xml 文件中 chain 标签无法识别 id 属性问题
Expand Down
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,12 @@ repositories {
// Configure Gradle IntelliJ Plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
intellij {
pluginName.set(properties("pluginName"))
version.set(properties("platformVersion"))
type.set(properties("platformType"))

// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file.
plugins.set(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))

// version.set(properties("platformVersion"))
// type.set(properties("platformType"))
sandboxDir.set(properties("platformSandboxDir"))
localPath.set(properties("platformLocalPath"))
}

// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
Expand Down
8 changes: 3 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@
pluginGroup = top.xystudio.plugin.idea
pluginName = LiteFlowX
# SemVer format -> https://semver.org
pluginVersion = 1.1.5
pluginVersion = 1.1.6

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 203.*
pluginUntilBuild = 223.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
#platformType = IU
#platformVersion = 2021.2.1
platformSandboxDir = idea-sandbox
platformLocalPath = D:\\JetBrains\\IntelliJ IDEA 2022.2
platformType = IU
platformVersion = 2021.3.3

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Expand Down
Loading

0 comments on commit cd6ae19

Please sign in to comment.