Skip to content

Commit d236b9f

Browse files
authored
Merge pull request #279 from xdev-software/develop
Release
2 parents 2d09f20 + d02a90d commit d236b9f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
pluginGroup=software.xdev.saveactions
33
pluginName=Save Actions X
44
# SemVer format -> https://semver.org
5-
pluginVersion=1.4.3-SNAPSHOT
5+
pluginVersion=1.5.0-SNAPSHOT
66
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
77
platformType=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
1212
platformBundledPlugins=com.intellij.java

src/main/java/software/xdev/saveactions/processors/BuildProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)