Skip to content

Commit

Permalink
fix: Smaller fixes and updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Nov 5, 2024
1 parent 7e942c2 commit d15d17d
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/[email protected].3
uses: JetBrains/[email protected].6
with:
cache-default-branch-only: true

Expand Down
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

## [Unreleased]

### Fixed

- Fixed some 2024.3 deprecations
- Updates to Qodana and Kotlin

## [5.0.3] - 2024-09-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ pluginGroup = de.dieploegers.develop.idea
pluginName = shellfilter
pluginRepositoryUrl = https://github.com/dploeger/idea-shellfilter
# SemVer format -> https://semver.org
pluginVersion = 5.0.3
pluginVersion = 5.0.4

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
pluginUntilBuild = 243.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion = 2024.2
platformVersion = 243.21565.23

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ junit = "4.13.2"
# plugins
changelog = "2.2.1"
intelliJPlatform = "2.1.0"
kotlin = "2.0.20"
kotlin = "2.0.21"
kover = "0.8.3"
qodana = "2024.2.3"
qodana = "2024.2.6"

[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ public void actionPerformed(final AnActionEvent anActionEvent) {
LOG.debug("Custom Shell Filter was invoked. Fetching data from event.");

final Editor editor =
anActionEvent.getRequiredData(CommonDataKeys.EDITOR);
anActionEvent.getData(CommonDataKeys.EDITOR);

if (editor == null) {
LOG.error("Internal error. Editor not found");
return;
}

LOG.debug("Custom command selected. Show input dialog");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ public void actionPerformed(final AnActionEvent anActionEvent) {
LOG.debug("Shell Filter was invoked. Fetching data from event.");

final Editor editor =
anActionEvent.getRequiredData(CommonDataKeys.EDITOR);
anActionEvent.getData(CommonDataKeys.EDITOR);

if (editor == null) {
LOG.error("Internal error. Editor not found");
return;
}

LOG.debug("Building up command list from settings and custom command");

Expand Down

0 comments on commit d15d17d

Please sign in to comment.