Skip to content

Commit

Permalink
Support new version IDEA v2020.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzewoo committed Apr 10, 2020
1 parent 27ee7df commit 0cddd97
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
## Features
- Multiple storage support, such as local / qiniu / aliyun OSS / tencent OSS, etc.
- Customize the file name naming policy and provide a variety of preset schemes.
- Provide picture compression function. Before uploading files, compress pictures according to the set compression rate to save traffic.
- Provide picture compression function, compress pictures according to the set compression rate.
- Directly from the paste image to the editor, automatically upload the image and convert it to the markdown tag.
- Directly copy one or more picture files to the editor, automatically upload the pictures and convert them to markdown tags.
- Through the ALT + enter shortcut key, the image can be deleted intelligently. When the markdown tag is deleted, the source file in the corresponding storage can be removed.

## Install
Preferences -> Plugins -> Marketplace, Search "Markdown Image Support"

## Preview

Expand Down
5 changes: 4 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
## 特性
- 多种存储支持,如本地/七牛/阿里云OSS/腾讯OSS等。
- 自定义文件名命名策略,并提供多种预设方案。
- 提供图片压缩功能,上传文件前,按照设置的压缩率压缩图片,节省流量
- 提供图片压缩功能,按照设置的压缩率压缩图片。
- 直接从粘贴图片到编辑器,自动上传图片并转换为Markdown标签。
- 直接复制一个或者多个图片文件到编辑器,自动上传图片并转换为Markdown标签。
- 通过Alt+Enter快捷键,智能删除图片,删除Markdown标记的同时,移除对应存储中的源文件。-


## 安装
Preferences -> Plugins -> Marketplace, 搜索 "Markdown Image Support"

## 预览

#### 设置界面
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ plugins {
}

group = "com.github.wenzewoo.jetbrains.plugin"
version = "1.0-SNAPSHOT"
version = "1.1-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -43,7 +43,8 @@ dependencies {

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = "2019.3.1"
version = "IC-2018.3"
updateSinceUntilBuild = false
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
15 changes: 12 additions & 3 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<ul>
<li>Multiple storage support, such as local / qiniu / aliyun OSS / tencent OSS, etc.</li>
<li>Customize the file name naming policy and provide a variety of preset schemes.</li>
<li>Provide picture compression function. Before uploading files, compress pictures according to the set compression rate to save traffic.</li>
<li>Provide picture compression function, compress pictures according to the set compression rate.</li>
<li>Directly from the paste image to the editor, automatically upload the image and convert it to the markdown tag.</li>
<li>Directly copy one or more picture files to the editor, automatically upload the pictures and convert them to markdown tags.</li>
<li>Through the ALT + enter shortcut key, the image can be deleted intelligently. When the markdown tag is deleted, the source file in the corresponding storage can be removed.</li>
Expand All @@ -53,7 +53,7 @@
<ul>
<li>多种存储支持,如本地/七牛/阿里云OSS/腾讯OSS等。</li>
<li>自定义文件名命名策略,并提供多种预设方案。</li>
<li>提供图片压缩功能,上传文件前,按照设置的压缩率压缩图片,节省流量。</li>
<li>提供图片压缩功能,按照设置的压缩率压缩图片。</li>
<li>直接从粘贴图片到编辑器,自动上传图片并转换为Markdown标签。</li>
<li>直接复制一个或者多个图片文件到编辑器,自动上传图片并转换为Markdown标签。</li>
<li>通过Alt+Enter快捷键,智能删除图片,删除Markdown标记的同时,移除对应存储中的源文件。</li>
Expand All @@ -66,7 +66,16 @@
]]></description>

<change-notes><![CDATA[
<p>0.0.1-RELEASE:2020/04/09</p>
<p>1.1-SNAPSHOT:2020/04/10</p>
<ul>
<li>Support new version IDEA v2020.1</li>
</ul>
<ul>
<li>支持新版IDEA v2020.1</li>
</ul>
<hr/>
<p>1.0-SNAPSHOT:2020/04/09</p>
<ul>
<li>First version release</li>
</ul>
Expand Down

0 comments on commit 0cddd97

Please sign in to comment.