fix(mobile): 🐛 fix some known issues (#353)

* refactor(common): ♻️ login data init

* refactor(common): ♻️ login refactor

* fix(common): 🐛 mobile set auto login after login

* fix(common): 🐛 ios splash screen auto login

* fix(common): 🐛 ios splash screen close

* fix(mobile): 🐛 personal information display

* refactor(global import): ♻️ refactoring global import to distinguish pc from mobile

* fix(common): 🐛 fix mobile layout

* fix(common): 🐛 set mobile safe area in app.vue

* fix(common): 🐛 delete SafeAreaComponent

* build(build): 📦 improve mobile and pc component import files

* refactor(common): ♻️ remove mobile client

* build(build): 📦 remove components*.d.ts

* fix(common): 🐛 android safe area

* fix(common): 🐛 android safe area

* fix(mobile): 🐛 refine the message text for withdrawal, and add a mobile phone clipboard

* fix(system): 🐛 fix storage logic causing logins to fail

fix white screen issues on some ios pages due to top safe zone

* feat(mobile):  adapt mobile chat room input box

* fix(mobile): 🐛 modify Android ports and some mobile styles

---------

Co-authored-by: wanwanruwoxin <254693270@qq.com>
Co-authored-by: 乾乾 <1046762075@qq.com>
Co-authored-by: kazai <kazai_xiaohe@gmail.com>
This commit is contained in:
Dawn
2025-10-15 09:57:31 +08:00
committed by GitHub
parent 86f873633c
commit 542760be0e
61 changed files with 718 additions and 1505 deletions

View File

@@ -14,7 +14,43 @@ concurrency:
cancel-in-progress: true # 如果有新的发布任务,取消正在进行的任务
jobs:
prepare-frontend:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up environment variables
run: echo "${{ secrets.ENV_LOCAL_CONTENT }}" > .env.local
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Generate frontend build (typings & assets)
run: pnpm vite build --emptyOutDir
- name: Upload generated component typings
uses: actions/upload-artifact@v4
with:
name: components-typings
if-no-files-found: error
path: |
src/typings/components.pc.d.ts
src/typings/components.mobile.d.ts
publish-tauri:
needs: prepare-frontend
permissions:
contents: write # 授予写入仓库内容的权限
strategy:
@@ -34,6 +70,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download component typings
uses: actions/download-artifact@v4
with:
name: components-typings
path: .
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |