-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up and add new keybindings from latest keymap
Long term cleanup tasks: - Upgrade from Gradle 5.2.1 to 6.6.1 - Start refactor of build script - Remove gradle.properties from gitignore and add props - Add real changelog - Add FAQs and more detailed keybinding information
- Loading branch information
Showing
11 changed files
with
232 additions
and
109 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
build | ||
.idea | ||
.gradle | ||
gradle.properties |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## [Unreleased] | ||
### Added | ||
|
||
### Changed | ||
|
||
### Deprecated | ||
|
||
### Removed | ||
|
||
### Fixed | ||
|
||
### Security | ||
## [2.0.0] | ||
### Added | ||
- Updated to match latest keymap as of [367cd5f](https://github.com/JetBrains/intellij-community/blob/fb0eb45e7d27dffbb490030c623bcf65eb402aeb/platform/platform-resources/src/keymaps/Mac%20OS%20X%2010.5%2B.xml). | ||
- Support new commit tool window (`Alt-0` when commit is active) | ||
### Removed | ||
- `ActivateTODOToolWindow` removed from keymap as of [b6eda](https://github.com/JetBrains/intellij-community/commit/24fe6c91cc91d51a2042737e9b7d01dd94305943#diff-8d8929a05e92b93072513b4727735c81) to make room for the Problems view. | ||
### Fixed | ||
- Keymap range set to 2020.2.* and beyond (no `untilBuild`) | ||
- `NextSplitter` and `PrevSplitter` updated to prevent conflicts with Alt-Tab |
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,36 +1,57 @@ | ||
|
||
import org.jetbrains.intellij.tasks.PublishTask | ||
|
||
plugins { | ||
id("org.jetbrains.intellij") version "0.4.16" | ||
} | ||
|
||
group = "com.samvtran" | ||
version = "1.0.2" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
testCompile("junit", "junit", "4.12") | ||
} | ||
|
||
// See https://github.com/JetBrains/gradle-intellij-plugin/ | ||
intellij { | ||
version = "2019.3.3" | ||
} | ||
configure<JavaPluginConvention> { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") { | ||
changeNotes(""" | ||
<ul> | ||
<li>Increasing supported IDE range from 2019.* to 2017 to 2020+</li> | ||
</ul>""") | ||
sinceBuild("173.*") | ||
untilBuild("202.*") | ||
} | ||
tasks.withType<PublishTask> { | ||
token(findProperty("intellijPublishToken")) | ||
} | ||
import org.jetbrains.changelog.closure | ||
import org.jetbrains.changelog.markdownToHTML | ||
|
||
plugins { | ||
id("org.jetbrains.intellij") version "0.4.26" | ||
id("org.jetbrains.changelog") version "0.5.0" | ||
} | ||
|
||
val pluginGroup: String by project | ||
val pluginName_: String by project | ||
val pluginVersion: String by project | ||
|
||
val platformVersion: String by project | ||
|
||
group = pluginGroup | ||
version = pluginVersion | ||
|
||
buildscript { | ||
repositories { | ||
// Workaround: https://github.com/JetBrains/gradle-intellij-plugin/issues/537 | ||
maven("https://jetbrains.bintray.com/intellij-plugin-service") | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
jcenter() | ||
} | ||
|
||
// See https://github.com/JetBrains/gradle-intellij-plugin/ | ||
intellij { | ||
pluginName = pluginName_ | ||
version = platformVersion | ||
updateSinceUntilBuild = false | ||
} | ||
|
||
tasks { | ||
// Set the compatibility versions to 1.8 | ||
withType<JavaCompile> { | ||
sourceCompatibility = "1.8" | ||
targetCompatibility = "1.8" | ||
} | ||
|
||
patchPluginXml { | ||
changeNotes( | ||
closure { | ||
changelog.getLatest().toHTML() | ||
} | ||
) | ||
} | ||
|
||
publishPlugin { | ||
dependsOn("patchChangelog") | ||
token(System.getenv("INTELLIJ_PUBLISH_TOKEN")) | ||
channels(pluginVersion.split('-').getOrElse(1) { "default" }.split('.').first()) | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pluginGroup = com.samvtran | ||
pluginName_ = macosforallkeymap | ||
pluginVersion = 2.0.0 | ||
platformVersion = LATEST-EAP-SNAPSHOT |
Binary file not shown.
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.