From 196d36dc44389e803360cb72764021be5fcff885 Mon Sep 17 00:00:00 2001 From: "minh.tran" Date: Fri, 28 May 2021 15:05:43 +0700 Subject: [PATCH] fixup! sync with template v0.10.0 --- CHANGELOG.md | 27 ++++++++++++++++++++++++--- build.gradle.kts | 10 ++++++---- gradle.properties | 25 +++++++++++-------------- 3 files changed, 41 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6d925..1cb61c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,44 +1,65 @@ + ## [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 diff --git a/build.gradle.kts b/build.gradle.kts index 7d31f94..92dc648 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/gradle.properties b/gradle.properties index 948b451..30b52d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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