File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
src/main/java/software/xdev/saveactions/processors Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.4.1
2
+ * Dropped support for IntelliJ versions < 2025.2
3
+ * Resolves "`` ActionUtil.performActionDumbAwareWithCallbacks `` deprecated" #250
4
+
1
5
## 1.4.0
2
6
* Dropped support for IntelliJ versions < 2024.3
3
7
* This is required to fix a few deprecations and remove some workarounds #171
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ pluginName=Save Actions X
5
5
pluginVersion =1.4.1-SNAPSHOT
6
6
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
7
7
platformType =IC
8
- platformVersion =2025.1.3
9
- platformSinceBuild =243
8
+ platformVersion =252.23309.22 # TODO
9
+ platformSinceBuild =252
10
10
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
11
11
# Example: platformBundledPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
12
12
platformBundledPlugins =com.intellij.java
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public enum BuildProcessor implements Processor
95
95
96
96
// Run Action on EDT thread
97
97
ApplicationManager .getApplication ().invokeLater (() ->
98
- ActionUtil .performActionDumbAwareWithCallbacks (anAction , event ));
98
+ ActionUtil .performAction (anAction , event ));
99
99
}
100
100
})
101
101
{
You can’t perform that action at this time.
0 commit comments