Skip to content

Commit 8ec40ab

Browse files
committed
fix .env
1 parent ab37f3c commit 8ec40ab

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

.env .env.app

File renamed without changes.

.env.docker

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
DOC_PARSE_BASE_URL=/doc-parse
22
CORS_FETCH_BASE_URL=/cors
3-
DEXIE_DB_URL=
4-
LITELLM_BASE_URL=
5-
BUDGET_BASE_URL=
6-
SYNC_SERVICE_PRICE=
7-
USD_TO_CNY_RATE=

.github/workflows/build-capacitor.yml

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
- name: Install dependencies
4141
run: pnpm install
4242

43+
- name: Setup .env
44+
run: cp .env.app .env.local
45+
4346
- name: Build frontend
4447
run: pnpm build
4548

.github/workflows/build-tauri.yml

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ jobs:
5353
- name: install frontend dependencies
5454
run: pnpm install
5555

56+
- name: setup .env
57+
run: cp .env.app .env.local
58+
5659
- uses: tauri-apps/tauri-action@v0
5760
env:
5861
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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 10407
11-
versionName "Alice-v1.4.7-beta"
10+
versionCode 10409
11+
versionName "Alice-v1.4.9-beta"
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.7-beta",
3+
"version": "1.4.9-beta",
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.7-beta",
4+
"version": "1.4.9-beta",
55
"identifier": "app.aiaw",
66
"build": {
77
"frontendDist": "../dist/spa",

src/version.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "v1.4.7-beta",
3-
"versionCode": 10407,
2+
"version": "v1.4.9-beta",
3+
"versionCode": 10409,
44
"forceUpdateFrom": 10400,
55
"capChannel": "Alice"
66
}

0 commit comments

Comments
 (0)