File tree Expand file tree Collapse file tree 5 files changed +11
-7
lines changed
kotlin/com/github/tbm98/fluttergeneratorsnippets Expand file tree Collapse file tree 5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 44
55## [ Unreleased]
66
7+ ## [ 2.223.0]
8+ - Support 2022.3
9+ - Update Gradle IntelliJ Plugin version 1.11.0
10+
711## [ 2.222.1]
812- Support 2022.2
913
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99 // Kotlin support
1010 id(" org.jetbrains.kotlin.jvm" ) version " 1.6.0"
1111 // Gradle IntelliJ Plugin
12- id(" org.jetbrains.intellij" ) version " 1.3 .0"
12+ id(" org.jetbrains.intellij" ) version " 1.11 .0"
1313 // Gradle Changelog Plugin
1414 id(" org.jetbrains.changelog" ) version " 1.3.1"
1515 // Gradle Qodana Plugin
Original file line number Diff line number Diff line change 22# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33pluginGroup =com.github.tbm98.fluttergeneratorsnippets
44pluginName =flutter_generator_snippets
5- pluginVersion =2.222.1
5+ pluginVersion =2.223.0
66
77
88# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99# for insight into build numbers and IntelliJ Platform versions.
1010pluginSinceBuild = 203
11- pluginUntilBuild = 222 .*
11+ pluginUntilBuild = 223 .*
1212
1313# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1414platformType = IC
15- platformVersion = 2020.3.4
15+ platformVersion = 2022.3
1616
1717# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import com.intellij.codeInsight.template.TemplateActionContext
44import com.intellij.codeInsight.template.TemplateContextType
55
66class FlutterContext private constructor() :
7- TemplateContextType (" FLUTTER_GENERATOR_SNIPPETS" , " Flutter generator snippets" ) {
7+ TemplateContextType ( " FLUTTER_GENERATOR_SNIPPETS" , " Flutter generator snippets" ) {
88 override fun isInContext (templateActionContext : TemplateActionContext ): Boolean {
99 return templateActionContext.file.name.endsWith(" .dart" )
1010 }
Original file line number Diff line number Diff line change 11<idea-plugin >
22 <id >io.github.tbm98.flutter_generator_snippets</id >
3- <name >Flutter snippet for generator tool </name >
3+ <name >Flutter Snippet For Generator Tool </name >
44 <
vendor email =
" [email protected] " url =
" https://tbm98.dev" >tbm98</
vendor >
55
66 <!-- Product and plugin compatibility requirements -->
99
1010 <extensions defaultExtensionNs =" com.intellij" >
1111 <defaultLiveTemplates file =" /liveTemplates/Flutter_generator_snippets.xml" />
12- <liveTemplateContext implementation =" com.github.tbm98.fluttergeneratorsnippets.FlutterContext" />
12+ <liveTemplateContext implementation =" com.github.tbm98.fluttergeneratorsnippets.FlutterContext" contextId = " FLUTTER_GENERATOR_SNIPPETS " />
1313 </extensions >
1414
1515</idea-plugin >
You can’t perform that action at this time.
0 commit comments