Skip to content

Commit

Permalink
准备上架
Browse files Browse the repository at this point in the history
  • Loading branch information
Soltus committed Jul 17, 2024
1 parent 635bce4 commit ae1d32c
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.idea
.qodana
build
*.salive
2 changes: 2 additions & 0 deletions .idea/gradle.xml

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

9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sillot-ASP
# IntelliJ 插件 - 汐洛 Sillot : 适用于 Android Studio

![Build](https://github.com/Soltus/Sillot-ASP/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
[![Version](https://img.shields.io/jetbrains/plugin/v/com.github.soltus.sillotasp.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/com.github.soltus.sillotasp.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)

## Template ToDo list
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
Expand Down Expand Up @@ -49,3 +49,6 @@ Plugin based on the [IntelliJ Platform Plugin Template][template].

[template]: https://github.com/JetBrains/intellij-platform-plugin-template
[docs:plugin-description]: https://plugins.jetbrains.com/docs/intellij/plugin-user-experience.html#plugin-description-and-presentation

## 参考与依赖
[插件中文开发文档](https://www.ideaplugin.com/idea-docs/startingAlsonEnding.html)
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ version = properties("pluginVersion").get()

// Configure project's dependencies
repositories {
maven(url = "https://maven.aliyun.com/repository/google")
// maven { url 'https://maven.aliyun.com/repository/public' } // 不许用,不然满江红
if (!System.getenv().containsKey("CI")) {
maven(url = "https://mirrors.tencent.com/nexus/repository/maven-public/")
maven(url = "https://download.jetbrains.8686c.com/idea/") // ideaIC download
}
maven(url = "https://developer.huawei.com/repo/")
google()
mavenCentral()
maven(url = "https://jitpack.io")
}

// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
Expand Down
8 changes: 8 additions & 0 deletions local.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Wed Jul 17 09:53:06 CST 2024
sdk.dir=C\:\\Users\\Administrator\\AppData\\Local\\Android\\Sdk
5 changes: 3 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.soltus.sillotasp</id>
<name>Sillot-ASP</name>
<vendor>soltus</vendor>
<name>汐洛 Sillot</name>
<vendor>Hi-Windom</vendor>

<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.android</depends>

<resource-bundle>messages.MyBundle</resource-bundle>

Expand Down
12 changes: 12 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 ae1d32c

Please sign in to comment.