Skip to content

Commit

Permalink
Update: v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KiWi233333 committed Nov 27, 2024
1 parent 0773043 commit 01f1d41
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
47 changes: 47 additions & 0 deletions .github/releasemd/v1.4.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# 1.4.4 版本说明

这是一个常规更新,包括以下功能 🧪

## 🔮 新功能

- [x] feat: 暂无

## 🔨 更新和修复了以下问题

- [x] update: 采用原生Websocket
- [x] update: 项目环境变量抽离
- [x] update: 项目开发命令修改和修改项目README文档
- [x] fix: 样式错误问题修复
- [x] fix: 修复系统模式下主题只同步一次
- [x] fix: 移动端群成员列表事件菜单栏层级错误
- [x] fix: 修复其他若干问题 [#详情](https://github.com/KiWi233333/jiwu-mall-chat-tauri/compare/v1.4.3...v1.4.4)

## 🧿 其他更新

- [x] 更新项目依赖
- [x] Full Changelog: [v1.4.3...v1.4.4](https://github.com/KiWi233333/jiwu-mall-chat-tauri/compare/v1.4.3...v1.4.4)

## 📌 待办

- [ ] 语音视频聊天
- [ ] 七牛OSS迁移Minio
- [ ] 用户版本埋点

## 🧪 下载

| 平台 | 下载地址 |
| --- | --- |
| Windows x86_64 | [JiwuChat_1.4.4_x64_zh-CN.msi](https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_1.4.4_x64_zh-CN.msi) |
| MacOS x64系列 | [JiwuChat_x64.app](https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_x64.app) |
| MacOS M系列 | [JiwuChat_aarch64.app](https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_aarch64.app) |
| Linux x86_64 | [JiwuChat_1.4.4_amd64.AppImage](https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_1.4.4_amd64.AppImage) |
| Android arm64 | [JiwuChat_1.4.4.apk](https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_1.4.4.apk) |

<!-- JiwuChat_1.4.4.apk -->
`Android arm64 版本` 安卓下载:

![QR Code](https://api.jiwu.kiwi2333.top/res/qrcode/stream?content=https://github.com/KiWi233333/jiwu-mall-chat-tauri/releases/download/v1.4.4/JiwuChat_1.4.4.apk&w=200&h=200)

**Version Info**: [v1.4.4](https://github.com/KiWi233333/jiwu-mall-chat-tauri/blob/main/.github/releasemd/v1.4.4.md)

感谢您的支持!
7 changes: 3 additions & 4 deletions composables/api/res/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,9 @@ export async function downloadFile(url: string, fileName: string, options: {
} = {}, callback?: (progress: number) => void) {
const { targetPath = "", mimeType = "" } = options;
const setting = useSettingStore();
const platformType = setting.appPlatform;
if (["web"].includes(platformType) || !platformType) {
// 移动端使用 streamSaver 下载
ElMessage.warning("正在使用浏览器下载,请稍后...");
if (setting.isWeb || setting.isMobile) {
// 移动端 | Web 使用 streamSaver 正在使用浏览器下载,请稍后 下载
ElMessage.warning("正在下载,请稍后...");
return downloadFileByStreamSaver(url, fileName, callback);
}
if (!setting.checkDownloadPath())
Expand Down

0 comments on commit 01f1d41

Please sign in to comment.