Skip to content

Commit

Permalink
fixup! sync with template v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
minh.tran committed May 28, 2021
1 parent 0e5afbc commit 196d36d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 21 deletions.
27 changes: 24 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,65 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->

## [Latest release]

- support since-build: 201 and until-build: 211.*
- sync with intellij-platform-plugin-template v0.10.0

## [1.1.9]

- set `explicitToJson: true` by default

## [1.1.8]

- remove redundant code,service

## [1.1.7]

- change name and icon plugin

## [1.1.6]

### Changed

- update code base

## [1.1.5]

### Added

- support json fieldRename: snake in freezed by default

## [1.1.4]
## [1.1.4]

### Added

- rename field snake by default

### Changed
- update description and changed log

- update description and changed log

## [1.1.3]

### Added
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)

- Initial scaffold created
from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)

## [1.1.2]

### Changed

- just for test ci/cd

## [1.1.1]

### Changed

- required since-build 202

## [1.0.0]

### Changed

- First release
10 changes: 6 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,12 @@ tasks {
)

// Get the latest available change notes from the changelog file
changeNotes.set(provider { File("./CHANGELOG.md")
.readText().lines()
.joinToString("\n")
.run { markdownToHTML(this) } })
changeNotes.set(provider {
File("./CHANGELOG.md")
.readText().lines()
.joinToString("\n")
.run { markdownToHTML(this) }
})
}

runPluginVerifier {
Expand Down
25 changes: 11 additions & 14 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
# IntelliJ Platform Artifacts Repositories
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html

pluginGroup = com.github.tbm98.fluttergeneratorsnippets
pluginName = flutter_generator_snippets
pluginVersion = 1.3.0
pluginSinceBuild = 201
pluginUntilBuild = 211.*
pluginGroup=com.github.tbm98.fluttergeneratorsnippets
pluginName=flutter_generator_snippets
pluginVersion=1.3.0
pluginSinceBuild=201
pluginUntilBuild=211.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
pluginVerifierIdeVersions = 2020.2.4, 2020.3.4, 2021.1.2

platformType = IC
platformVersion = 2021.1
platformDownloadSources = true
pluginVerifierIdeVersions=2020.2.4, 2020.3.4, 2021.1.2
platformType=IC
platformVersion=2021.1
platformDownloadSources=true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins =

platformPlugins=
# Opt-out flag for bundling Kotlin standard library.
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for details.
kotlin.stdlib.default.dependency = false
kotlin.stdlib.default.dependency=false

0 comments on commit 196d36d

Please sign in to comment.