Skip to content

Commit

Permalink
settings
Browse files Browse the repository at this point in the history
  • Loading branch information
TTangNingzhi committed Dec 26, 2023
1 parent 5d96a70 commit 2f974bf
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 51 deletions.
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

69 changes: 28 additions & 41 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 10 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
dependencies {
// https://mvnrepository.com/artifact/com.opencsv/opencsv
implementation("com.opencsv:opencsv:5.7.1")
// implementation("org.bytedeco:javacv-platform:1.5.9")
// implementation("org.bytedeco:javacv-platform:1.5.9") // NOTE: This is too large
implementation("org.bytedeco:javacv:1.5.9")
implementation("org.bytedeco:ffmpeg:6.0-1.5.9")
implementation("org.bytedeco:ffmpeg-platform:6.0-1.5.9")
Expand All @@ -25,17 +25,19 @@ dependencies {
intellij {
version.set("2023.1.4")

type.set("IC")
type.set("IC") // IntelliJ Community Edition
// type.set("IU") // IntelliJ Ultimate Edition
plugins.set(listOf("com.intellij.java"))

// type.set("PC")
// type.set("PC") // PyCharm Community Edition
// type.set("PY") // PyCharm Professional Edition
// plugins.set(listOf("PythonCore"))

// type.set("CL")
// type.set("CL") // CLion

// type.set("PS")
// type.set("PS") // PhpStorm

// version.set("2023.1.4")
// Fixme: Android Studio
// type.set("IC")
// plugins.set(listOf("android"))
}
Expand All @@ -51,8 +53,8 @@ tasks {
// }

patchPluginXml {
sinceBuild.set("222")
untilBuild.set("232.*")
sinceBuild.set("222") // 2022.2 NOTE Java 17 is now required
untilBuild.set("233.*")
}

signPlugin {
Expand Down
2 changes: 1 addition & 1 deletion retype.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url:
branding:
title: CodeGRITS
# label: Docs
logo: /logo.png
logo: /src/resources/pluginIcon.svg

footer:
copyright: "© Copyright {{ year }}. All rights reserved."
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<!-- Product and plugin compatibility requirements.
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
<depends>com.intellij.modules.platform</depends>
<!-- CodeGRITS does not require the following dependencies, because it does not use language-specific PSI.-->
<!-- <depends>com.intellij.modules.python</depends>-->
<!-- <depends>com.intellij.java</depends>-->
<!-- <depends>com.intellij.clion</depends>-->
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/META-INF/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2f974bf

Please sign in to comment.