-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (61 loc) · 1.76 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.15'
}
version '1.3.2'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.jfree', name: 'jfreechart', version: '1.5.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version '2017.2'
version '2019.3.1'
}
patchPluginXml {
pluginDescription """
GPU Monitor adds a tool window on the right side to monitor GPU temperatures, usage, and memory usage. Currently only supports single NVIDIA gpu setups.
"""
changeNotes """
<h3>Changes in 1.3.2</h3>
<ul>
<li>Made error more obvious
</ul>
<h3>Changes in 1.3.1</h3>
<ul>
<li>Added error message if nvidia-smi wasn't found
</ul>
<h3>Changes in 1.3</h3>
<ul>
<li>Added custom themes
<li>Moved window size and refresh time settings into settings window
</ul>
<h3>Changes in 1.2.2</h3>
<ul>
<li>Added reset button functionality
</ul>
<h3>Changes in 1.2.1</h3>
<ul>
<li>Extended compatability to 2017.2 versions of all IDEs
</ul>
<h3>Changes in 1.2</h3>
<ul>
<li>Fixed flickering
</ul>
<h3>Changes in 1.1</h3>
<ul>
<li>Added darcula theme.
<li>Decreased flickering when moving the tool window.
<li>Changed time axis on graphs.
</ul>
<h3>Changes in 1.0</h3>
<ul>
<li>Basic functionality added with graphs for GPU temperatures, usage, and memory usage.
</ul>
"""
sinceBuild "172"
}