Skip to content

Commit 97c8fcc

Browse files
committed
fix: docker workflow & style: MessageItem
1 parent 1961be2 commit 97c8fcc

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/docker-image.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Docker Image CI
22

33
on:
4-
workflow_dispatch:
54
release:
65
types: [released]
76

@@ -32,5 +31,5 @@ jobs:
3231
platforms: linux/amd64,linux/arm64/v8
3332
push: true
3433
tags: |
35-
${{ secrets.DOCKERHUB_USERNAME }}/aiaw:${{ github.ref_name }}
34+
${{ secrets.DOCKERHUB_USERNAME }}/aiaw:${{ github.event.release.tag_name }}
3635
${{ secrets.DOCKERHUB_USERNAME }}/aiaw:latest

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "app.aiaw"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 10418
11-
versionName "Alice-v1.4.18"
10+
versionCode 10419
11+
versionName "Alice-v1.4.19"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aiaw",
3-
"version": "1.4.18",
3+
"version": "1.4.19",
44
"description": "精心设计的 AI (LLM) 客户端。全功能,轻量级;支持多工作区、插件系统、跨平台、本地优先+实时云同步",
55
"productName": "AI as Workspace",
66
"author": "NitroRCr <[email protected]>",

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "AI as Workspace",
4-
"version": "1.4.18",
4+
"version": "1.4.19",
55
"identifier": "app.aiaw",
66
"build": {
77
"frontendDist": "../dist/spa",

src/components/MessageItem.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@
142142
text-err
143143
break-word
144144
px-5
145-
py-2
145+
mt-2
146+
pb-2
146147
v-if="message.error"
147148
>
148149
{{ message.error }}
@@ -152,7 +153,7 @@
152153
text-warn
153154
break-word
154155
px-5
155-
py-2
156+
my-2
156157
v-for="(warning, index) in message.warnings"
157158
:key="index"
158159
>

src/version.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "v1.4.18",
3-
"versionCode": 10418,
4-
"forceUpdateFrom": 10411,
2+
"version": "v1.4.19",
3+
"versionCode": 10419,
4+
"forceUpdateFrom": 10417,
55
"capChannel": "Alice"
6-
}
6+
}

0 commit comments

Comments
 (0)