no message

This commit is contained in:
kuaifan 2025-04-14 09:25:21 +08:00
parent b9830bc64a
commit 6e6a50b46e
14 changed files with 89 additions and 25 deletions

View File

@ -2,6 +2,34 @@
All notable changes to this project will be documented in this file.
## [0.46.16]
### Bug Fixes
- 修复移动任务时负责人和协助人可以同时选择的情况
- 修复无法从任务页面打开聊天的情况
- 修复移动端焦点抖动的问题
### Features
- 新增会员详情窗口
- 添加从团队管理打开会话窗口
### Performance
- 优化日历
- 优化长按事件
- 优化移动端任务窗口布局
- 优化长按操作
- 优化转发确认选项保持上一次选择
- 优化移动端布局
- 优化禁止选择会员效果
- 优化长按菜单位置
- 优化移动端打开会话等待效果
- 优化会议弹窗
- 任务详情点任务聊天时不要发送消息
- 优化国际化
## [0.45.64]
### Bug Fixes

View File

@ -29422,5 +29422,41 @@
"fr": "Échec du démarrage d'une nouvelle session avec l'IA",
"id": "Gagal memulai sesi baru dengan AI",
"ru": "Не удалось начать новый сеанс с ИИ"
},
{
"key": "前一天",
"zh": "",
"zh-CHT": "前一天",
"en": "Previous Day",
"ko": "전날",
"ja": "前日",
"de": "Vorheriger Tag",
"fr": "Jour précédent",
"id": "Hari sebelumnya",
"ru": "Предыдущий день"
},
{
"key": "后一天",
"zh": "",
"zh-CHT": "後一天",
"en": "Next Day",
"ko": "다음 날",
"ja": "次の日",
"de": "Nächster Tag",
"fr": "Jour suivant",
"id": "Hari berikutnya",
"ru": "Следующий день"
},
{
"key": "打开会话窗口",
"zh": "",
"zh-CHT": "打開會話窗口",
"en": "Open Session Window",
"ko": "세션 창 열기",
"ja": "セッションウィンドウを開く",
"de": "Sitzungsfenster öffnen",
"fr": "Ouvrir la fenêtre de session",
"id": "Buka Jendela Sesi",
"ru": "Открыть окно сессии"
}
]
]

View File

@ -1,7 +1,7 @@
{
"name": "DooTask",
"version": "0.45.64",
"codeVerson": 185,
"version": "0.46.16",
"codeVerson": 186,
"description": "DooTask is task management system.",
"scripts": {
"start": "./cmd dev",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1194,11 +1194,13 @@ export default {
*/
userUrl({state}, url) {
return new Promise(resolve => {
// 基本参数
const params = {
language: languageName,
theme: state.themeConf,
userid: state.userId,
}
// 如果是访问:服务器域名 或 本地文件,则添加 token 参数
if ($A.getDomain(url) == $A.getDomain($A.mainUrl()) || $A.getProtocol(url) == "file:") {
params.token = state.userToken
}
@ -1206,18 +1208,6 @@ export default {
})
},
/**
* 打开子窗口App
* @param dispatch
* @param objects
*/
openAppChildPage({dispatch}, objects) {
dispatch("userUrl", objects.params.url).then(url => {
objects.params.url = url
$A.eeuiAppOpenPage(objects)
})
},
/**
* 打开地图选位置App
* @param dispatch
@ -1262,6 +1252,16 @@ export default {
})
},
/**
* 打开子窗口App
* @param dispatch
* @param objects
*/
async openAppChildPage({dispatch}, objects) {
objects.params.url = await dispatch("userUrl", objects.params.url)
$A.eeuiAppOpenPage(objects)
},
/**
* 打开子窗口客户端
* @param dispatch