Skip to content

Commit 196d36d

Browse files
author
minh.tran
committed
fixup! sync with template v0.10.0
1 parent 0e5afbc commit 196d36d

File tree

3 files changed

+41
-21
lines changed

3 files changed

+41
-21
lines changed

CHANGELOG.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,65 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
2+
23
## [Latest release]
4+
35
- support since-build: 201 and until-build: 211.*
46
- sync with intellij-platform-plugin-template v0.10.0
57

68
## [1.1.9]
9+
710
- set `explicitToJson: true` by default
811

912
## [1.1.8]
13+
1014
- remove redundant code,service
1115

1216
## [1.1.7]
17+
1318
- change name and icon plugin
1419

1520
## [1.1.6]
21+
1622
### Changed
23+
1724
- update code base
1825

1926
## [1.1.5]
27+
2028
### Added
29+
2130
- support json fieldRename: snake in freezed by default
2231

23-
## [1.1.4]
32+
## [1.1.4]
33+
2434
### Added
35+
2536
- rename field snake by default
37+
2638
### Changed
27-
- update description and changed log
2839

40+
- update description and changed log
2941

3042
## [1.1.3]
43+
3144
### Added
32-
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
45+
46+
- Initial scaffold created
47+
from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
3348

3449
## [1.1.2]
50+
3551
### Changed
52+
3653
- just for test ci/cd
3754

3855
## [1.1.1]
56+
3957
### Changed
58+
4059
- required since-build 202
4160

4261
## [1.0.0]
62+
4363
### Changed
64+
4465
- First release

build.gradle.kts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,12 @@ tasks {
9696
)
9797

9898
// Get the latest available change notes from the changelog file
99-
changeNotes.set(provider { File("./CHANGELOG.md")
100-
.readText().lines()
101-
.joinToString("\n")
102-
.run { markdownToHTML(this) } })
99+
changeNotes.set(provider {
100+
File("./CHANGELOG.md")
101+
.readText().lines()
102+
.joinToString("\n")
103+
.run { markdownToHTML(this) }
104+
})
103105
}
104106

105107
runPluginVerifier {

gradle.properties

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
# IntelliJ Platform Artifacts Repositories
22
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
3-
4-
pluginGroup = com.github.tbm98.fluttergeneratorsnippets
5-
pluginName = flutter_generator_snippets
6-
pluginVersion = 1.3.0
7-
pluginSinceBuild = 201
8-
pluginUntilBuild = 211.*
3+
pluginGroup=com.github.tbm98.fluttergeneratorsnippets
4+
pluginName=flutter_generator_snippets
5+
pluginVersion=1.3.0
6+
pluginSinceBuild=201
7+
pluginUntilBuild=211.*
98
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
109
# See https://jb.gg/intellij-platform-builds-list for available build versions
11-
pluginVerifierIdeVersions = 2020.2.4, 2020.3.4, 2021.1.2
12-
13-
platformType = IC
14-
platformVersion = 2021.1
15-
platformDownloadSources = true
10+
pluginVerifierIdeVersions=2020.2.4, 2020.3.4, 2021.1.2
11+
platformType=IC
12+
platformVersion=2021.1
13+
platformDownloadSources=true
1614
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1715
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
18-
platformPlugins =
19-
16+
platformPlugins=
2017
# Opt-out flag for bundling Kotlin standard library.
2118
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for details.
22-
kotlin.stdlib.default.dependency = false
19+
kotlin.stdlib.default.dependency=false

0 commit comments

Comments
 (0)