Skip to content

Commit 32d89b9

Browse files
author
minh.tran
committed
bump to 1.1.4
1 parent aced63d commit 32d89b9

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.gradle
22
.idea
33
build
4+
.DS_Store

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,26 @@
1414
### Fixed
1515

1616
### Security
17-
## [1.1.3]
17+
18+
## 1.1.4
19+
### Added
20+
- rename field snake by default
21+
### Changed
22+
- update description and changed log
23+
24+
1825
## 1.1.3
1926
### Added
2027
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
2128

2229
## 1.1.2
23-
30+
### Changed
2431
- just for test ci/cd
2532

2633
## 1.1.1
27-
28-
- required since-build 202.5103.13<br>
34+
### Changed
35+
- required since-build 202.5103.13
2936

3037
## 1.0.0
31-
38+
### Changed
3239
- First release

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@
99
- [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html).
1010

1111
<!-- Plugin description -->
12-
This plugin help you to write generator's template quickly
12+
This plugin help you to write generator's template quickly <br>
13+
Freezed <br>
14+
<img width="400" src="https://gist.githubusercontent.com/tbm98/3726c42cf2c06f70d44606070eb1bf8d/raw/1286b354e0236833191998970e5988891b5451e8/freezed.png" alt="Freezed">
15+
<br>json-outside <br>
16+
<img width="400" src="https://gist.githubusercontent.com/tbm98/3726c42cf2c06f70d44606070eb1bf8d/raw/1286b354e0236833191998970e5988891b5451e8/json-outside.png" alt="Freezed">
17+
<br>json-inside <br>
18+
<img width="400" src="https://gist.githubusercontent.com/tbm98/3726c42cf2c06f70d44606070eb1bf8d/raw/1286b354e0236833191998970e5988891b5451e8/json-inside.png" alt="Freezed">
1319
<!-- Plugin description end -->
1420

1521
## Installation

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ tasks {
114114
// Get the latest available change notes from the changelog file
115115
changeNotes(
116116
closure {
117-
changelog.getLatest().toHTML()
117+
var msg = ""
118+
changelog.getAll().forEach { (key, value) -> msg += "<h1>$key</h1><br>$value<br><br>" }
119+
msg.replace("\n", "<br>")
118120
}
119121
)
120122
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = com.github.tbm98.fluttergeneratorsnippets
55
pluginName_ = flutter_generator_snippets
6-
pluginVersion = 1.1.3
6+
pluginVersion = 1.1.4
77
pluginSinceBuild = 202
88
pluginUntilBuild = 203.*
99
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl

0 commit comments

Comments
 (0)