Skip to content

Prepare for IJ 2025.2 #257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.4.1
* Dropped support for IntelliJ versions < 2025.2
* Resolves "``ActionUtil.performActionDumbAwareWithCallbacks`` deprecated" #250

## 1.4.0
* Dropped support for IntelliJ versions < 2024.3
* This is required to fix a few deprecations and remove some workarounds #171
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pluginName=Save Actions X
pluginVersion=1.4.1-SNAPSHOT
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType=IC
platformVersion=2025.1.3
platformSinceBuild=243
platformVersion=252.23309.22 # TODO
platformSinceBuild=252
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformBundledPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformBundledPlugins=com.intellij.java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public enum BuildProcessor implements Processor

// Run Action on EDT thread
ApplicationManager.getApplication().invokeLater(() ->
ActionUtil.performActionDumbAwareWithCallbacks(anAction, event));
ActionUtil.performAction(anAction, event));
}
})
{
Expand Down
Loading