File tree 2 files changed +13
-14
lines changed
2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ compileJava {
8
8
}
9
9
10
10
group ' gitflow4idea'
11
- version ' 0.7.3 '
11
+ version ' 0.7.4 '
12
12
13
13
sourceCompatibility = JavaVersion . VERSION_1_8
14
14
targetCompatibility = JavaVersion . VERSION_1_8
@@ -22,18 +22,24 @@ dependencies {
22
22
}
23
23
24
24
intellij {
25
- version ' 2020.1 '
25
+ version ' 2020.2 '
26
26
plugins ' git4idea' , ' tasks'
27
27
}
28
28
29
29
patchPluginXml {
30
30
pluginId " Gitflow"
31
31
pluginDescription ' Git Flow Integration'
32
- version ' 0.7.3 '
32
+ version ' 0.7.4 '
33
33
sinceBuild ' 201.0'
34
- untilBuild ' 201 .*'
34
+ untilBuild ' 202 .*'
35
35
changeNotes """
36
36
37
+ <H2>Changelog for 0.7.4</H2>
38
+ <ul>
39
+ <li>Fix deprecations #298 (@fabmars)</li>
40
+ <li>Support for 2020.2 build</li>
41
+ </ul>
42
+
37
43
<H2>Changelog for 0.7.3</H2>
38
44
<ul>
39
45
<li>Implemented sorting and filtering of track branch dialog #290 (@mmopitz)</li>
Original file line number Diff line number Diff line change 1
1
package gitflow .ui ;
2
+
2
3
import com .intellij .openapi .project .Project ;
3
4
import com .intellij .tasks .LocalTask ;
4
- import com .intellij .tasks .Task ;
5
5
import com .intellij .tasks .TaskManager ;
6
+ import com .intellij .tasks .actions .vcs .VcsTaskDialogPanelProvider ;
6
7
import com .intellij .tasks .ui .TaskDialogPanel ;
7
- import com .intellij .tasks .ui .TaskDialogPanelProvider ;
8
8
import git4idea .branch .GitBranchUtil ;
9
9
import git4idea .repo .GitRepository ;
10
10
import gitflow .GitflowBranchUtil ;
13
13
import org .jetbrains .annotations .Nullable ;
14
14
15
15
16
- public class GitflowTaskDialogPanelProvider extends TaskDialogPanelProvider {
17
-
18
- @ Deprecated
19
- @ Nullable
20
- @ Override
21
- public TaskDialogPanel getOpenTaskPanel (@ NotNull Project project , @ NotNull Task task ) {
22
- return null ;
23
- }
16
+ public class GitflowTaskDialogPanelProvider extends VcsTaskDialogPanelProvider {
24
17
25
18
@ Nullable
26
19
@ Override
You can’t perform that action at this time.
0 commit comments