Skip to content

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlau committed Jul 20, 2022
2 parents 8c55314 + ba9e924 commit 07184e9
Show file tree
Hide file tree
Showing 27 changed files with 672 additions and 1,431 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## [1.0.2] - 2022-07-21
- 新增 #I5HPMC 支持EL中的注释
- https://gitee.com/liupeiqiang/LiteFlowX/issues/I5HPMC
- 新增 #I5H8RL 新增 IDEA-222.* 的支持
- https://gitee.com/liupeiqiang/LiteFlowX/issues/I5H8RL
- 新增 识别括号并高亮
- 新增 自动缩进
- 修复 抛出 java.lang.NullPointerException 异常的问题

## [1.0.1] - 2022-07-14
- 修复 因旧表达式存在而导致的报错
- 修复 因qualifiedName参数为null而导致的IllegalArgumentException
Expand Down
29 changes: 17 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<a href="https://plugins.jetbrains.com/plugin/19145-liteflowx">
<img src="https://img.shields.io/jetbrains/plugin/v/19145?logo=JetBrains&label=LiteFlowX&style=for-the-badge" />
</a>
<img src="https://img.shields.io/badge/IntelliJ--IDEA->=2018.3-brightgreen?logo=IntelliJ IDEA&style=for-the-badge"/>
<img src="https://img.shields.io/badge/IntelliJ--IDEA->=2020.1-brightgreen?logo=IntelliJ IDEA&style=for-the-badge"/>
<img src="https://img.shields.io/badge/license-Apache--2.0-blue?style=for-the-badge"/>

</p>
Expand Down Expand Up @@ -60,18 +60,23 @@ For full details of install plugins, <a href="https://www.jetbrains.com/help/ide
> 5. Click **OK** to apply the changes and restart the IDE if prompted.
## 🌈 Demonstration
### Java to Chain
![Java代码跳转到Chain](https://liteflow.yomahub.com/img/liteflowx/JavaToChain.gif)
### Smart prompt
![智能提示ComponentChain](https://liteflow.yomahub.com/img/liteflowx/chaincomponent.gif)

### LiteFlowTool
![LiteFlowTool工具箱](https://liteflow.yomahub.com/img/liteflowx/LiteFlowTool.gif)
### Pre detection
![预检测Chain未命名或重复](https://liteflow.yomahub.com/img/liteflowx/chaindep.gif)

### Jump to ruleSource
![ruleSource跳转](https://liteflow.yomahub.com/img/liteflowx/ruleSourceJump.gif)
### Custom keywords color
![自定义elf语法关键字颜色](https://liteflow.yomahub.com/img/liteflowx/changecolor.gif)

### Xml to Chain
![Xml跳转到Chain](https://liteflow.yomahub.com/img/liteflowx/XmlToChain.gif)
### Jump to
![支持Component和Chain跳转](https://liteflow.yomahub.com/img/liteflowx/componentjump.gif)

### Xml to Component
![Xml跳转Component](https://liteflow.yomahub.com/img/liteflowx/XmlToComponent.gif)
![Xml跳转Component2](https://liteflow.yomahub.com/img/liteflowx/XmlToManyComponent.gif)
### Local variables
![支持局部变量](https://liteflow.yomahub.com/img/liteflowx/localvar.gif)

### Language injection
![支持.el.xml的chain标签自动注入elf语法](https://liteflow.yomahub.com/img/liteflowx/newelxml.gif)

### LiteFlow ToolBox
![LiteFlow 工具箱](https://liteflow.yomahub.com/img/liteflowx/toolbox.gif)
28 changes: 16 additions & 12 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<a href="https://plugins.jetbrains.com/plugin/19145-liteflowx">
<img src="https://img.shields.io/jetbrains/plugin/v/19145?logo=JetBrains&label=LiteFlowX&style=for-the-badge" />
</a>
<img src="https://img.shields.io/badge/IntelliJ--IDEA->=2018.3-brightgreen?logo=IntelliJ IDEA&style=for-the-badge"/>
<img src="https://img.shields.io/badge/IntelliJ--IDEA->=2020.1-brightgreen?logo=IntelliJ IDEA&style=for-the-badge"/>
<img src="https://img.shields.io/badge/license-Apache--2.0-blue?style=for-the-badge"/>

</p>
Expand Down Expand Up @@ -60,22 +60,26 @@
> 5. 如果提示重启IDE,点击 **OK** 应用更改即可。
## 🌈 功能演示
### Java代码跳转到Chain
![Java代码跳转到Chain](https://liteflow.yomahub.com/img/liteflowx/JavaToChain.gif)
### 智能提示Component和Chain
![智能提示ComponentChain](https://liteflow.yomahub.com/img/liteflowx/chaincomponent.gif)

### LiteFlowTool工具箱
![LiteFlowTool工具箱](https://liteflow.yomahub.com/img/liteflowx/LiteFlowTool.gif)
### 预检测Chain未命名或重复
![预检测Chain未命名或重复](https://liteflow.yomahub.com/img/liteflowx/chaindep.gif)

### ruleSource跳转
![ruleSource跳转](https://liteflow.yomahub.com/img/liteflowx/ruleSourceJump.gif)
### 自定义elf语法关键字颜色
![自定义elf语法关键字颜色](https://liteflow.yomahub.com/img/liteflowx/changecolor.gif)

### Xml跳转到Chain
![Xml跳转到Chain](https://liteflow.yomahub.com/img/liteflowx/XmlToChain.gif)
### 支持Component和Chain跳转
![支持Component和Chain跳转](https://liteflow.yomahub.com/img/liteflowx/componentjump.gif)

### Xml跳转Component
![Xml跳转Component](https://liteflow.yomahub.com/img/liteflowx/XmlToComponent.gif)
![Xml跳转Component2](https://liteflow.yomahub.com/img/liteflowx/XmlToManyComponent.gif)
### 支持局部变量
![支持局部变量](https://liteflow.yomahub.com/img/liteflowx/localvar.gif)

### 支持.el.xml的chain标签自动注入elf语法
![支持.el.xml的chain标签自动注入elf语法](https://liteflow.yomahub.com/img/liteflowx/newelxml.gif)

### LiteFlow 工具箱
![LiteFlow 工具箱](https://liteflow.yomahub.com/img/liteflowx/toolbox.gif)



4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
pluginGroup = top.xystudio.plugin.idea
pluginName = LiteFlowX
# SemVer format -> https://semver.org
pluginVersion = 1.0.1
pluginVersion = 1.0.2

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

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IC
Expand Down

0 comments on commit 07184e9

Please sign in to comment.