Skip to content
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

Allow installation on IntelliJ 2024.2.x #179

Merged
merged 1 commit into from
Sep 8, 2024
Merged
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
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ pluginVersion = 2.0.1
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 241
pluginUntilBuild = 241.*
pluginUntilBuild = 242.*

# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
pluginVerifierIdeVersions = 2024.1
pluginVerifierIdeVersions = 2024.2

platformType = IC
platformVersion = 2024.1
platformVersion = 2024.2
platformDownloadSources = true

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void updateCustomRulesMenu() {
PMDCustom actionGroup = (PMDCustom) ActionManager.getInstance().getAction("PMDCustom");
if (numProjectsOpen.get() != 1) {
// merge actions from menu and from settings to not lose any when switching between projects
AnAction[] currentActions = actionGroup.getChildren(null);
AnAction[] currentActions = actionGroup.getChildren((ActionManager)null);
Set<String> ruleSetPathsFromMenu = new LinkedHashSet<>();
for (AnAction action : currentActions) {
if (action.getSynonyms().size() == 1) {
Expand Down
Loading