-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
107 lines (100 loc) · 2.53 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.13.3'
}
group = "varme.pw"
version = "1.1.9"
sourceCompatibility = 17
repositories {
mavenCentral()
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = "2022.3.3"
updateSinceUntilBuild = false
}
buildSearchableOptions.enabled = false
patchPluginXml {
changeNotes = """
<h3>v1.1.9</h3>
<ul>
<li>Fix refactor popup table</li>
</ul>
<h3>v1.1.8</h3>
<ul>
<li>Compatibility with IU-241.*</li>
</ul>
<h3>v1.1.7</h3>
<ul>
<li>Change stop widget red color</li>
<li>Fix tree selection background</li>
<li>Add unused element foreground</li>
</ul>
<h3>v1.1.6</h3>
<ul>
<li>Compatibility with IU-233.* and New UI</li>
</ul>
<h3>v1.1.5</h3>
<ul>
<li>Compatibility with IU-223.*</li>
</ul>
<h3>v1.1.4</h3>
<ul>
<li>Compatibility with IU-222.*</li>
</ul>
<h3>v1.1.3</h3>
<ul>
<li>Fix sidebar color</li>
<li>Fix radio button color</li>
<li>Fix vsc branch search color</li>
<li>Change lessons color</li>
<li>Change popups accent color</li>
<li>Change editor border color</li>
<li>Small tree indent</li>
</ul>
<h3>v1.1.2</h3>
<ul>
<li>Compatibility with IU-221.*</li>
</ul>
<h3>v1.1.1</h3>
<ul>
<li>Compatibility with IU-213.*</li>
</ul>
<h3>v1.1.0</h3>
<ul>
<li>Changed Get from VCS window selection background</li>
</ul>
<h3>v1.0.9</h3>
<ul>
<li>Changed Popups and Hints background completion</li>
</ul>
<h3>v1.0.8</h3>
<ul>
<li>Compatibility with IU-212.*</li>
</ul>
<h3>v1.0.7</h3>
<ul>
<li>Changed DragAndDrop area background</li>
<li>Fix Server mapping background</li>
</ul>
<h3>v1.0.6</h3>
<ul>
<li>Fix Golang color</li>
<li>Fix JS/TypeScript color</li>
<li>Fixed selection foreground</li>
<li>Fix Py color</li>
</ul>
<h3>v1.0.5</h3>
<ul>
<li>Changed doc comment color</li>
<li>Changed default keyword and string color</li>
<li>Changed Golang style</li>
<li>Fixed selection foreground</li>
<li>Fixed console style</li>
<li>Fixed SASS comment style</li>
</ul>
"""
}
publishPlugin {
token = System.getenv("oceanicDark_intellijPublishToken")
}