-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathbuild.gradle
112 lines (94 loc) · 6.24 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
108
109
110
111
112
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.4'
}
compileJava {
options.compilerArgs += ["-Xlint"]
}
group 'gitflow4idea'
version '0.7.7'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version '2021.2'
plugins 'git4idea', 'tasks'
}
patchPluginXml {
pluginId "Gitflow"
pluginDescription 'Git Flow Integration'
version '0.7.7'
sinceBuild '212.0'
untilBuild '212.*'
changeNotes """
<H2>Changelog for 0.7.7</H2>
<ul>
<li>Fix issue with "Unsupported gitflow version" message presented at startup #328 #329</li>
<li>Support for 2021.2 build</li>
</ul>
<H2>Changelog for 0.7.6</H2>
<ul>
<li>Fix "Error using shortcuts" #322</li>
<li>fix Finishing BugFix throws stacktrace #320</li>
<li>Support for 2021.1 build</li>
</ul>
<H2>Changelog for 0.7.5</H2>
<ul>
<li>PluginException: Icon cannot be found in 'AllIcons.Vcs.CheckOut' #314 (@tumb1er)</li>
<li>Support for 2020.3 build</li>
</ul>
<H2>Changelog for 0.7.4</H2>
<ul>
<li>Fix deprecations #298 (@fabmars)</li>
<li>Support for 2020.2 build</li>
</ul>
<H2>Changelog for 0.7.3</H2>
<ul>
<li>Implemented sorting and filtering of track branch dialog #290 (@mmopitz)</li>
<li>Fix Version 0.7.2 causes that Active Tool Windows only is showed in one project if you have several open #301 (@tumb1er)</li>
<li>Fix Unsupported Git Flow version Fix #302 (@opherv)</li>
<li>Fix init settings shown in UI are misleading (do not match default) #283 (@opherv)</li>
</ul>
<H2>Changelog for 0.7.2</H2>
<ul>
<li>Support for Idea build 200 #276 (@fabmars, @tumb1er )</li>
<li>Fix Icon cannot be found in 'AllIcons.Vcs.' #286 (@fabmars)</li>
<li>Fix finish release error (Mac OS) #273 (@opherv)</li>
<li>Breaking 'Search Everywhere' dialog window for projects without git #265 (@opherv)</li>
</ul>
<H2>Changelog for 0.7.1</H2>
<ul>
<li>Support for Idea build 193 #259 (@opherv)</li>
<li>Check that the user has AVH version of git flow installed, show dialog otherwise #253 (@opherv)</li>
<li>Add safety which should help fix #249 - Init repo failed #259 (@opherv)</li>
<li>Fix Memory leak of ProjectImpl and GitRepositoryImpl after projet is closed #255 (@opherv)</li>
<li>Add icons to actions #232 (@opherv)</li>
</ul>
<H2>Changelog for 0.7.0</H2>
<ul>
<li>Fix NPE when clicking Gitflow menu #245 (@opherv)</li>
<li>Fix "Init gitflow" doesn't update widget #247 (@opherv)</li>
<li>Fix Wrong message when finishing a feature #144 (@opherv)</li>
<li>Feature: Re-init gitflow (access from VCS>Git>Gitflow>Advanced menu) #50 (@bmwsedee/@opherv)</li>
<li>"Feature": Don't show branch select combo on new Hotfix (@opherv)</li>
</ul>
<H2>Changelog for 0.6.9</H2>
<ul>
<li>Support for Idea build 192 #241 (@opherv)</li>
<li>Feature: No Fast-forward option is not working #225 (@opherv)</li>
<li>Hotfix: option -k to keep branch after performing finish #199 (@opherv)</li>
<li>Exceptions #243 #235 #323 #223 (@bmwsedee)</li>
</ul>
<H2>Changelog for 0.6.8</H2>
<ul>
<li>Support for Idea build 191 #221 (@ottnorml)</li>
<li>Fix performance issues in plugin #195 (@bmwsedee)</li>
</ul>
<p>Note - if you see 'no gitflow' in the status bar you will need to re-init using <code>git flow init -f</code></p>
"""
}