File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
src/main/java/software/xdev/saveactions/processors Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.5.0
2
+ * Dropped support for IntelliJ versions < 2025.2
3
+ * Resolves "`` ActionUtil.performActionDumbAwareWithCallbacks `` deprecated" #250
4
+
1
5
## 1.4.2
2
6
* Fix storage deserialization crash on unknown actions value #273
3
7
Original file line number Diff line number Diff line change 2
2
pluginGroup =software.xdev.saveactions
3
3
pluginName =Save Actions X
4
4
# SemVer format -> https://semver.org
5
- pluginVersion =1.4.3 -SNAPSHOT
5
+ pluginVersion =1.5.0 -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.4.1
9
- platformSinceBuild =243
8
+ platformVersion =2025.2
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