diff --git a/IDEA_CHANGELOG.md b/IDEA_CHANGELOG.md index 23cb0634c..bd3232581 100644 --- a/IDEA_CHANGELOG.md +++ b/IDEA_CHANGELOG.md @@ -145,4 +145,10 @@ * feat: new tool `files` [(#289)](https://github.com/tangcent/easy-api/pull/289) - * feat: `Debug` enhancement [(#290)](https://github.com/tangcent/easy-api/pull/290) \ No newline at end of file + * feat: `Debug` enhancement [(#290)](https://github.com/tangcent/easy-api/pull/290) + + * feat: support new rule `method.content.type` [(#292)](https://github.com/tangcent/easy-api/pull/292) + + * feat: support rule `param.http.type` for `RequestParam ` [(#298)](https://github.com/tangcent/easy-api/pull/298) + + * feat: handle annotation `CookieValue` [(#300)](https://github.com/tangcent/easy-api/pull/300) \ No newline at end of file diff --git a/build.gradle b/build.gradle index 1dcfdaa78..85dc8eb0b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,2 +1,2 @@ group 'com.itangcent' -version '1.9.6.183.0' \ No newline at end of file +version '1.9.7.0.183.0' \ No newline at end of file diff --git a/common-api/build.gradle b/common-api/build.gradle index 45aa89a7d..5bc6b5a1e 100644 --- a/common-api/build.gradle +++ b/common-api/build.gradle @@ -28,7 +28,7 @@ dependencies { compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - compile('com.itangcent:commons:0.7.1') { + compile('com.itangcent:commons:0.7.3-SNAPSHOT') { exclude group: 'com.google.inject' exclude group: 'com.google.code.gson' } diff --git a/gradle.properties b/gradle.properties index 64d4f7207..8ce437412 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ org.gradle.daemon=true org.gradle.workers.max=8 idea_version=2017.3.5 plugin_name=EasyYapi -plugin_version=1.9.6.0.183.0 +plugin_version=1.9.7.0.183.0 descriptionFile=parts/pluginDescription.html changesFile=parts/pluginChanges.html \ No newline at end of file diff --git a/idea-plugin/build.gradle b/idea-plugin/build.gradle index dec0016cd..9daeee220 100644 --- a/idea-plugin/build.gradle +++ b/idea-plugin/build.gradle @@ -100,17 +100,17 @@ dependencies { // compile fileTree(dir: 'libs', include: ['*.jar']) - compile('com.itangcent:intellij-idea:0.7.1') { + compile('com.itangcent:intellij-idea:0.7.3-SNAPSHOT') { exclude group: 'com.google.inject' exclude group: 'com.google.code.gson' } - compile('com.itangcent:intellij-kotlin-support:0.7.1') { + compile('com.itangcent:intellij-kotlin-support:0.7.3-SNAPSHOT') { exclude group: 'com.google.inject' exclude group: 'com.google.code.gson' } - compile('com.itangcent:intellij-scala-support:0.7.1') { + compile('com.itangcent:intellij-scala-support:0.7.3-SNAPSHOT') { exclude group: 'com.google.inject' exclude group: 'com.google.code.gson' } diff --git a/idea-plugin/parts/pluginChanges.html b/idea-plugin/parts/pluginChanges.html index c035f6741..b8ef33e16 100644 --- a/idea-plugin/parts/pluginChanges.html +++ b/idea-plugin/parts/pluginChanges.html @@ -1,20 +1,14 @@ -v1.9.6.0.183.0(2020-05-13) +v1.9.7.0.183.0(2020-07-12)
Full Changelog - \ No newline at end of file diff --git a/idea-plugin/parts/pluginDescription.html b/idea-plugin/parts/pluginDescription.html index f540872c4..c95d6b230 100644 --- a/idea-plugin/parts/pluginDescription.html +++ b/idea-plugin/parts/pluginDescription.html @@ -14,6 +14,11 @@

easy-yapi

  • 与之相对的是, 你可以灵活的运用配置规则来适应你的项目特性以减少代码侵入.

  • +

    + 如果快捷键无效, 请检查快捷键冲突. + 可以在 Preferences(Settings) > KeyMap修改快捷键. +

    +
    详细信息参考:Guide