generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from siropkin/develop
v1.2.0
- Loading branch information
Showing
6 changed files
with
64 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
<idea-plugin require-restart="false"> | ||
<id>com.github.siropkin.kursor</id> | ||
<name>Kursor</name> | ||
<version>1.1.1</version> | ||
<version>1.2.0</version> | ||
<vendor email="[email protected]">Ivan Seredkin</vendor> | ||
|
||
<description><![CDATA[ | ||
Avoid typos and coding errors caused by language switching.<br /> | ||
Kursor simplifies language tracking directly on your IntelliJ IDE.<br /> | ||
It dynamically displays the current keyboard language on your cursor, offering the added functionality of changing the cursor's color to match the language in use.<br /> | ||
This feature is particularly beneficial for developers juggling multiple languages, significantly reducing the likelihood of typing errors. | ||
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
1.2.0 (2024-07-29)<br /> | ||
++++++++++++++++++<br /> | ||
Changed:<br /> | ||
- Plugin settings moved to Tools: `File` > `Settings` > `Tools` > `Kursor`.<br /> | ||
- Fix German keyboard layout abbreviation for Windows.<br /> | ||
<br /> | ||
<br /> | ||
1.1.1 (2024-07-25)<br /> | ||
++++++++++++++++++<br /> | ||
Changed:<br /> | ||
|
@@ -64,9 +72,12 @@ | |
<depends>com.intellij.modules.platform</depends> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<applicationConfigurable parentId="appearance" | ||
instance="com.github.siropkin.kursor.settings.KursorSettingsConfigurable" | ||
id="org.intellij.sdk.settings.AppSettingsConfigurable" dynamic="true" displayName="Kursor"/> | ||
<applicationConfigurable | ||
parentId="tools" | ||
instance="com.github.siropkin.kursor.settings.KursorSettingsConfigurable" | ||
id="com.github.siropkin.kursor.settings.KursorSettingsConfigurable" | ||
displayName="Kursor" | ||
/> | ||
<applicationService serviceImplementation="com.github.siropkin.kursor.settings.KursorSettings"/> | ||
<postStartupActivity implementation="com.github.siropkin.kursor.KursorStartupActivity" /> | ||
</extensions> | ||
|