Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
1. 更新依赖,修改部分bug
  • Loading branch information
liuyiwuqing committed Jun 11, 2024
1 parent 7e6a924 commit 2946f45
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation platform('run.halo.tools.platform:plugin:2.15.0-SNAPSHOT')
implementation platform('run.halo.tools.platform:plugin:2.16.0-SNAPSHOT')
compileOnly 'run.halo.app:api'

testImplementation 'run.halo.app:api'
Expand Down Expand Up @@ -53,6 +53,6 @@ build {
}

halo {
version = '2.16.0'
version = '2.16.2'
debug = true
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.2
version=1.0.3
6 changes: 3 additions & 3 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"pretty-bytes": "^6.0.0",
"path-browserify": "^1.0.1",
"@material-tailwind/html": "^2.2.2",
"@halo-dev/api-client": "^2.14.0",
"@halo-dev/components": "^2.14.0",
"@halo-dev/console-shared": "^2.14.0",
"@halo-dev/api-client": "^2.16.0",
"@halo-dev/components": "^2.16.0",
"@halo-dev/console-shared": "^2.16.0",
"@tanstack/vue-query": "^5.29.0",
"axios": "^1.5.0",
"vue": "^3.3.12"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/ImgtpSelectorProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ watchEffect(() => {
const images = Array.from(selectedImages.value).map((image) => {
return {
url: image.url,
type: image.name as string,
type: image.mediaType as string,
};
});
emit("update:selected", images);
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/LskySelectorProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import {
IconCheckboxCircle,
IconCheckboxFill,
IconRefreshLine,
IconDeleteBin,
IconEye,
IconRefreshLine,
IconUpload,
VButton,
VCard,
Expand Down Expand Up @@ -191,7 +191,7 @@ watchEffect(() => {
const images = Array.from(selectedImages.value).map((image) => {
return {
url: image.url,
type: image.name as string,
type: image.mediaType as string,
};
});
emit("update:selected", images);
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/SmmsSelectorProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import {
IconCheckboxCircle,
IconCheckboxFill,
IconRefreshLine,
IconDeleteBin,
IconEye,
IconRefreshLine,
IconUpload,
VButton,
VCard,
Expand Down Expand Up @@ -151,7 +151,7 @@ watchEffect(() => {
const images = Array.from(selectedImages.value).map((image) => {
return {
url: image.url,
type: image.name as string,
type: image.mediaType as string,
};
});
emit("update:selected", images);
Expand Down

0 comments on commit 2946f45

Please sign in to comment.