diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b97108..7255be8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true - + jobs: # Prepare environment and build the plugin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a67c249..652963b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: Release on: release: - types: [prereleased, released] + types: [ prereleased, released ] jobs: diff --git a/README.md b/README.md index 1409182..928f960 100644 --- a/README.md +++ b/README.md @@ -4,25 +4,6 @@ [![Version](https://img.shields.io/jetbrains/plugin/v/com.pswidersk.sdkimportplugin.svg)](https://plugins.jetbrains.com/plugin/com.pswidersk.sdkimportplugin) [![Downloads](https://img.shields.io/jetbrains/plugin/d/com.pswidersk.sdkimportplugin.svg)](https://plugins.jetbrains.com/plugin/com.pswidersk.sdkimportplugin) -## Template ToDo list - -- [x] Create a new [IntelliJ Platform Plugin Template][template] project. -- [x] Get familiar with the [template documentation][template]. -- [x] Adjust the [pluginGroup](./gradle.properties), [plugin 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]) -- [x] Review - the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html?from=IJPluginTemplate). -- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) - for the first time. -- [x] Set the `PLUGIN_ID` in the above README badges. -- [ ] Set the [Plugin Signing](https://plugins.jetbrains.com/docs/intellij/plugin-signing.html?from=IJPluginTemplate) - related [secrets](https://github.com/JetBrains/intellij-platform-plugin-template#environment-variables). -- [ ] Set - the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html?from=IJPluginTemplate). -- [ ] Click the Watch button on the top of the [IntelliJ Platform Plugin Template][template] to be notified - about releases containing new features and fixes. - ## Description @@ -84,6 +65,10 @@ make working with multi-module projects easier. manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk... +## Running + +![sdkImportAction.gif](images/sdkImportAction.gif) + --- Plugin based on the [IntelliJ Platform Plugin Template][template]. diff --git a/gradle.properties b/gradle.properties index 1046323..559845e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,7 +15,8 @@ pluginUntilBuild = #platformType = IC # PyCharm community platformType = PC -platformVersion = 2023.1 +#platformVersion = 2023.1 +platformVersion = 2024.1 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 diff --git a/images/sdkImportAction.gif b/images/sdkImportAction.gif new file mode 100644 index 0000000..ec33747 Binary files /dev/null and b/images/sdkImportAction.gif differ