diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 5b2635f..cadd24f 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -1,9 +1,9 @@ # GitHub Actions Workflow for launching UI tests on Linux, Windows, and Mac in the following steps: -# - prepare and launch IDE with your plugin and robot-server plugin, which is needed to interact with UI -# - wait for IDE to start -# - run UI tests with separate Gradle task +# - Prepare and launch IDE with your plugin and robot-server plugin, which is needed to interact with the UI. +# - Wait for IDE to start. +# - Run UI tests with a separate Gradle task. # -# Please check https://github.com/JetBrains/intellij-ui-test-robot for information about UI tests with IntelliJ Platform +# Please check https://github.com/JetBrains/intellij-ui-test-robot for information about UI tests with IntelliJ Platform. # # Workflow is triggered manually. diff --git a/.github/workflows/template-cleanup.yml b/.github/workflows/template-cleanup.yml index d103dea..34ac3e9 100644 --- a/.github/workflows/template-cleanup.yml +++ b/.github/workflows/template-cleanup.yml @@ -1,6 +1,5 @@ -# GitHub Actions Workflow responsible for cleaning up the IntelliJ Platform Plugin Template repository from -# the template-specific files and configurations. This workflow is supposed to be triggered automatically -# when a new template-based repository has been created. +# GitHub Actions Workflow responsible for cleaning up the IntelliJ Platform Plugin Template repository from the template-specific files and configurations. +# This workflow is supposed to be triggered automatically when a new template-based repository has been created. name: Template Cleanup on: diff --git a/README.md b/README.md index fd0f429..d0a08fc 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,6 @@ In addition, extra behaviors are configured through the [`gradle.properties`][fi | `org.gradle.configuration-cache` | `true` | Enable [Gradle Configuration Cache][gradle:configuration-cache] | | `org.gradle.caching` | `true` | Enable [Gradle Build Cache][gradle:build-cache] | | `systemProp.org.gradle.unsafe.kotlin.assignment` | `true` | Enable [Gradle Kotlin DSL Lazy Property Assignment][gradle:kotlin-dsl-assignment] | -| `kotlin.incremental.useClasspathSnapshot` | `false` | Temporary workaround for [Kotlin Compiler OutOfMemoryError][docs:intellij-platform-kotlin-oom] | ### Environment variables @@ -218,14 +217,13 @@ Therefore, the template contains only the following files: ``` . -├── MyBundle.kt Bundle class providing access to the resources messages ├── listeners │ └── MyApplicationActivationListener.kt Application activation listener — detects when IDE frame is activated ├── services │ └── MyProjectService.kt Project level service ├── toolWindow │ └── MyToolWindowFactory.kt Tool window factory — creates tool window content -└ +└── MyBundle.kt Bundle class providing access to the resources messages ``` These files are located in `src/main/kotlin`.