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.5.0
2+ * Dropped support for IntelliJ versions < 2025.2
3+ * Resolves "`` ActionUtil.performActionDumbAwareWithCallbacks `` deprecated" #250
4+
15## 1.4.2
26* Fix storage deserialization crash on unknown actions value #273
37
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ pluginName=Save Actions X
55pluginVersion =1.4.3-SNAPSHOT
66# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
77platformType =IC
8- platformVersion =2025.1.4.1
9- platformSinceBuild =243
8+ platformVersion =2025.2
9+ platformSinceBuild =252
1010# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1111# Example: platformBundledPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
1212platformBundledPlugins =com.intellij.java
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public enum BuildProcessor implements Processor
9595
9696 // Run Action on EDT thread
9797 ApplicationManager .getApplication ().invokeLater (() ->
98- ActionUtil .performActionDumbAwareWithCallbacks (anAction , event ));
98+ ActionUtil .performAction (anAction , event ));
9999 }
100100 })
101101 {
You can’t perform that action at this time.
0 commit comments