Skip to content

Commit ab96f7b

Browse files
committed
release: 3.0.1
1 parent 36dabc2 commit ab96f7b

7 files changed

Lines changed: 180 additions & 185 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ gradlew.bat clean assemble -x test
104104
- 保持嵌入的 JS 文件相对较小,以保持 jar 大小可管理。
105105
- 优先选择精简或压缩的 UMD 构建版本进行嵌入。
106106
- 如果库暴露异步 API(promises),Java 实现应该使用 Javet Promise 助手或 V8ValuePromise 轮询来等待 promise 结果。
107-
- 添加单元测试,使用模拟或引擎池来验证解析/高亮行为。
107+
- 添加单元测试,使用模拟或引擎池来验证解析/高亮行为。

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# halo-plugin-extra-api
22

3+
![GitHub](https://img.shields.io/github/license/HowieHz/halo-plugin-extra-api)
4+
![GitHub all releases](https://img.shields.io/github/downloads/HowieHz/halo-plugin-extra-api/total)
5+
![GitHub release (latest by date)](https://img.shields.io/github/downloads/HowieHz/halo-plugin-extra-api/latest/total)
6+
![GitHub repo size](https://img.shields.io/github/repo-size/HowieHz/halo-plugin-extra-api)
7+
[![Halo Version](https://img.shields.io/badge/Halo-2.22.0+-brightgreen.svg)](https://halo.run)
8+
39
## 简介
410

511
一个为 Halo CMS 提供额外 API 的轻量级插件。

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,5 +305,5 @@ tasks.register('buildLite') {
305305
}
306306

307307
halo {
308-
version = '2.21' // 目标 Halo 版本
308+
version = '2.22' // 目标 Halo 版本
309309
}

src/main/resources/plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
store.halo.run/app-id: app-di1jh8gd
1010
spec:
1111
enabled: true
12-
requires: ">=2.21.0"
12+
requires: ">=2.22.0"
1313
author:
1414
name: HowieHz
1515
website: https://github.com/HowieHz

ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"dependencies": {
2626
"@halo-dev/api-client": "^2.22.0",
2727
"@halo-dev/components": "^2.22.0",
28-
"@halo-dev/console-shared": "^2.21.0",
28+
"@halo-dev/ui-shared": "^2.22.0",
2929
"axios": "^1.13.2",
3030
"canvas-confetti": "^1.9.4",
3131
"husky": "^9.1.7",
3232
"vue": "^3.5.26"
3333
},
3434
"devDependencies": {
3535
"@halo-dev/ui-plugin-bundler-kit": "^2.22.0",
36-
"@iconify/json": "^2.2.421",
36+
"@iconify/json": "^2.2.422",
3737
"@rsbuild/core": "^1.6.15",
3838
"@rsbuild/plugin-sass": "^1.4.0",
3939
"@tsconfig/node20": "^20.1.8",
@@ -46,12 +46,12 @@
4646
"@vue/test-utils": "^2.4.6",
4747
"@vue/tsconfig": "^0.8.1",
4848
"eslint": "^9.39.2",
49-
"eslint-plugin-oxlint": "^1.35.0",
49+
"eslint-plugin-oxlint": "^1.36.0",
5050
"eslint-plugin-vue": "~10.6.2",
5151
"husky": "^8.0.0",
5252
"jsdom": "^27.4.0",
5353
"npm-run-all2": "^8.0.4",
54-
"oxlint": "^1.35.0",
54+
"oxlint": "^1.36.0",
5555
"prettier": "^3.7.4",
5656
"sass": "^1.97.1",
5757
"typescript": "~5.9.3",

ui/pnpm-lock.yaml

Lines changed: 166 additions & 177 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { definePlugin } from '@halo-dev/console-shared'
1+
import { definePlugin } from '@halo-dev/ui-shared'
22

33
export default definePlugin({
44
components: {},

0 commit comments

Comments
 (0)