diff --git a/CHANGELOG.md b/CHANGELOG.md index e314630..41e1c68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,5 +3,7 @@ # quickfix-spec Changelog ## [Unreleased] + ### Added -- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template) +- v0.0.1 Add tag number next to the field name +- v0.1.0 Add types next to the field name diff --git a/README.md b/README.md index 909d771..a67d2bb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Template ToDo list - [x] Create a new [IntelliJ Platform Plugin Template][template] project. -- [ ] Get familiar with the [template documentation][template]. +- [x] Get familiar with the [template documentation][template]. - [ ] Adjust the [pluginGroup](./gradle.properties) and [pluginName](./gradle.properties), as well as the [id](./src/main/resources/META-INF/plugin.xml) and [sources package](./src/main/kotlin). - [ ] Adjust the plugin description in `README` (see [Tips][docs:plugin-description]) - [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html?from=IJPluginTemplate). diff --git a/gradle.properties b/gradle.properties index be813e3..67e650f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,10 +1,10 @@ # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html -pluginGroup = com.github.dantimofte.quickfixspec +pluginGroup = ac.quant.quickfixspec pluginName = quickfix-spec pluginRepositoryUrl = https://github.com/dantimofte/quickfix-spec # SemVer format -> https://semver.org -pluginVersion = 0.1.0 +pluginVersion = 0.1.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 233 @@ -17,6 +17,7 @@ platformVersion = 2023.3.7 # 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 platformPlugins = + # Example: platformBundledPlugins = com.intellij.java platformBundledPlugins = diff --git a/src/main/java/ac/quant/quickfixspec/inlay/QuickfixInlayHintsProvider.java b/src/main/java/ac/quant/quickfixspec/inlay/QuickfixInlayHintsProvider.java index 8288363..2d32974 100644 --- a/src/main/java/ac/quant/quickfixspec/inlay/QuickfixInlayHintsProvider.java +++ b/src/main/java/ac/quant/quickfixspec/inlay/QuickfixInlayHintsProvider.java @@ -5,17 +5,13 @@ import com.intellij.lang.Language; import com.intellij.lang.xml.XMLLanguage; import com.intellij.openapi.editor.Editor; -import com.intellij.openapi.editor.colors.EditorFontType; import com.intellij.psi.*; import com.intellij.psi.xml.*; import lombok.extern.slf4j.Slf4j; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -import com.intellij.codeInsight.hints.presentation.InlayPresentation; -import com.intellij.codeInsight.hints.presentation.PresentationFactory; import javax.swing.*; -import java.awt.*; @SuppressWarnings("UnstableApiUsage") @Slf4j