Skip to content

Commit

Permalink
Fixes #1 Make keymap casing match plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
samvtran committed Mar 30, 2020
1 parent 9f8b7bb commit 2d4d850
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.samvtran"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand All @@ -25,9 +25,8 @@ configure<JavaPluginConvention> {
}
tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") {
changeNotes("""
Initial Release!<br>
<ul>
<li>Most Command-key shortcuts remapped to similar shortcuts with some combination of Ctrl/Alt/Shift</li>
<li>Fixes an issue where IDEs wouldn't find the keymap on startup by aligning keymap filename case to the plugin name ("macOS For All" with an uppercase F)</li>
</ul>""")
}
tasks.withType<PublishTask> {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<depends>com.intellij.modules.lang</depends>

<extensions defaultExtensionNs="com.intellij">
<bundledKeymap file="macOS for All.xml" />
<bundledKeymap file="macOS For All.xml" />
</extensions>

<actions />
</idea-plugin>
</idea-plugin>

0 comments on commit 2d4d850

Please sign in to comment.