Skip to content

Commit

Permalink
chore: update support ide version and update build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gucovip committed Jan 31, 2024
1 parent b450bb0 commit ccd78ef
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ windows: `Alt + insert`, Mac: `control + Enter`
注意:可以在 keymap 中配置自己喜欢的快捷键,后续如果可以将默认自动设置好快捷键(InsertClass: command + \; PasteCss: control + option + v)。

#### 最近更新
* 2024.01.31 2.3.1 提高兼容版本号
* 2024.01.31 2.3.2 提高兼容版本号到 241.*
* 2023.09.01 2.3.0 由于 sdk 升级导致启动时的报错,最低兼容版本提升到 222(2022.2.5)
* 2023.08.31 2.2.0 InsertClass 如果检测到光标在 `"|"` 位置,则自动补充一个 `$style.`
* 2022.11.21 2.1.2 chore: Just update version.
Expand Down Expand Up @@ -66,7 +66,7 @@ windows: `Alt + insert`, Mac: `control + Enter`
QQ:11563928

#### 更新日志
* 2.3.1 提高兼容版本号
* 2.3.2 提高兼容版本号到 241.*
* 2.3.0 由于 sdk 升级导致启动时的报错,最低兼容版本提升到 222(2022.2.5)
* 2.2.0 InsertClass 如果检测到光标在 `"|"` 位置,则自动补充一个 `$style.`
* 2.1.1 InsertClass 默认绑定快捷键 [ctrl/cmd \]
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "vip.guco"
version = "2.3.1"
version = "2.3.2"

// Configure project's dependencies
repositories {
Expand Down Expand Up @@ -38,7 +38,7 @@ tasks {

patchPluginXml {
sinceBuild.set("222.*")
untilBuild.set("234.*")
untilBuild.set("241.*")
}

publishPlugin {
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
@@ -1,7 +1,7 @@
<idea-plugin>
<id>vip.guco.stylusassist</id>
<name>Stylus Assist</name>
<version>2.3.1</version>
<version>2.3.2</version>
<vendor email="[email protected]" url="https://github.com/gucovip/stylus-assist">MaiYa</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -41,7 +41,7 @@

<change-notes><![CDATA[
<ul>
<li>2.3.1 提高兼容版本号</li>
<li>2.3.2 提高兼容版本号到 241.*</li>
<li>2.3.0 feat: 2.3.0 由于 sdk 升级导致启动时的报错,最低兼容版本提升到 222(2022.2.5)</li>
<li>2.2.0 feat: InsertClass 如果检测到光标在 `"|"` 位置,则自动补充一个 `$style.`</li>
<li>2.1.2 chore: Just update version</li>
Expand Down

0 comments on commit ccd78ef

Please sign in to comment.