Skip to content

Commit 635cf2e

Browse files
committed
Add support for JetBrains IDEs >= 191
1 parent 2ec090f commit 635cf2e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

build.gradle

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group 'tv.codely'
7-
version '1.0.0'
7+
version '1.0.1'
88

99
sourceCompatibility = 1.8
1010

@@ -18,12 +18,17 @@ dependencies {
1818

1919
// See https://github.com/JetBrains/gradle-intellij-plugin/
2020
intellij {
21-
version '192-EAP-SNAPSHOT'
21+
version '191-EAP-SNAPSHOT'
2222
sameSinceUntilBuild false
2323
}
24+
2425
patchPluginXml {
26+
sinceBuild '191'
27+
untilBuild 'LATEST-EAP-SNAPSHOT'
28+
2529
changeNotes """
2630
<ul>
31+
<li>1.0.1 Improve colors and add retrocompatibility.</li>
2732
<li>1.0.0 First version.</li>
2833
</ul>
2934
"""

src/main/resources/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>tv.codely.codelytv-theme</id>
33
<name>CodelyTV Theme</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<vendor email="[email protected]" url="https://codely.tv">CodelyTV</vendor>
66

77
<description><![CDATA[

0 commit comments

Comments
 (0)