Skip to content

Commit

Permalink
Merge pull request #16 from Hinaser/v0.0.6
Browse files Browse the repository at this point in the history
V0.0.6
  • Loading branch information
Hinaser authored Apr 8, 2021
2 parents 3691c40 + e6ec1e3 commit 4c6455d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.0.6] - April 8, 2021
### Fixed
- Removed IDE's upper version limit
\*Because of this limit, plugin users were always required to wait
for plugin update. I'm really sorry about this.
- Updated inner intellij plugin version
- Improved stability

## [0.0.5] - Jan 24, 2021
### Fixed
- Fixed typos. (Github -> GitHub)
Expand All @@ -26,7 +34,8 @@
### Fixed
- Fixed an issue where offline parser did not properly parse and render some gfm syntax.

[0.0.5]: https://github.com/Hinaser/gfm-advanced/releases/tag/v0.0.5
[0.0.4]: https://github.com/Hinaser/gfm-advanced/releases/tag/v0.0.4
[0.0.3]: https://github.com/Hinaser/gfm-advanced/releases/tag/v0.0.3
[0.0.2]: https://github.com/Hinaser/gfm-advanced/releases/tag/v0.0.2
[0.0.6]: https://github.com/Hinaser/gfm-advanced/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/Hinaser/gfm-advanced/compare/v0.0.4...v0.0.5
[0.0.4]: https://github.com/Hinaser/gfm-advanced/compare/v0.0.3...v0.0.4
[0.0.3]: https://github.com/Hinaser/gfm-advanced/compare/v0.0.2...v0.0.3
[0.0.2]: https://github.com/Hinaser/gfm-advanced/compare/v0.0.1...v0.0.2
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.21'
id 'org.jetbrains.intellij' version '0.7.2'
id 'org.jetbrains.changelog' version '0.4.0'
}

apply plugin: 'org.jetbrains.changelog'

group 'com.github.hinaser'
version '0.0.5'
version '0.0.6'

repositories {
mavenCentral()
Expand All @@ -27,12 +27,11 @@ dependencies {
// For debugging purpose, I recommend to also download correspond source file here.
// https://github.com/JetBrains/intellij-community/tags
intellij {
version '203.5981.155'
version '211.6693.111'
}
patchPluginXml {
changeNotes({ changelog.getLatest().toHTML() })
sinceBuild '202.6109'
untilBuild '203.*'
}
publishPlugin {
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,9 @@ public void dispose(){
public @NotNull String getName() {
return "GfmA Preview";
}

@Override
public @NotNull VirtualFile getFile() {
return markdownFile;
}
}
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>GfmA</name>
<vendor email="rindo.hinase@gmail.com" url="https://github.com/Hinaser">Hinaser</vendor>

<idea-version since-build="202.6109" until-build="203.*" />
<idea-version since-build="202.6109" />

<description><![CDATA[
<p>Yet another GFM(GitHub Flavored Markdown) Preview plugin for intellij platform</p>
Expand Down

0 comments on commit 4c6455d

Please sign in to comment.