Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Nov 24, 2024
1 parent e983677 commit c0a0f34
Show file tree
Hide file tree
Showing 87 changed files with 457 additions and 398 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

All notable changes to this project will be documented in this file.

## [0.40.78]

### Bug Fixes

- 修复退出群组不完全的问题
- 修复退出还能收到推送的情况
- 修复账号被禁用之后还能收到推送和邮件
- 任务首次聊天发表情失败的情况
- AI聊天缺少最后一句话的情况
- 文件打包下载

### Performance

- 优化会话成员列表查询
- 重复添加任务的情况
- 重复添加任务列表的情况
- 优化消息样式
- 优化websocket消息
- 优化快捷选择
- 延期任务支持快选时间
- 优化消息阅读机制
- 新增文件打包下载权限设置
- 升级electron框架
- 优化深色主题
- 优化表情包资源
- 优化客户端子窗口
- 优化项目列表
- 优化录制语音消息
- 优化任务内容
- 优化任务提交添加继续
- 移动端审批窗口点击人员头像直接进入会话
- 新增系统别名设置

## [0.40.40]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion app/Models/WebSocketDialogMsg.php
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ private static function previewTextMsg($msgData, $preserveHtml = false)
if (!$preserveHtml) {
$text = str_replace("</p><p>", "</p> <p>", $text);
$text = strip_tags($text);
$text = str_replace(["&nbsp;", "&amp;", "&lt;", "&gt;"], [" ", "&", "<", ">"], $text);
$text = str_replace(["&nbsp;", "&quot;", "&amp;", "&lt;", "&gt;"], [" ", '"', "&", "<", ">"], $text);
$text = preg_replace("/\s+/", " ", $text);
$text = Base::cutStr($text, 50);
}
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ services:
- ./docker/mysql/conf.d:/etc/mysql/conf.d
- ./docker/mysql/data:/var/lib/mysql
environment:
TZ: "${TIMEZONE:-PRC}"
MYSQL_PREFIX: "${DB_PREFIX}"
MYSQL_ROOT_PASSWORD: "${DB_ROOT_PASSWORD}"
MYSQL_DATABASE: "${DB_DATABASE}"
Expand Down
1 change: 1 addition & 0 deletions language/original-web.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1826,3 +1826,4 @@ WiFi签到延迟时长为±1分钟。
明天下班前

自动归档
是否保存编辑内容?
26 changes: 25 additions & 1 deletion language/translate.json
Original file line number Diff line number Diff line change
Expand Up @@ -26950,5 +26950,29 @@
"fr": "Demain COB",
"id": "Besok COB",
"ru": "Завтра КРД"
},
{
"key": "自动归档",
"zh": "",
"zh-CHT": "自動歸檔",
"en": "Auto Archive",
"ko": "자동 보관",
"ja": "自動アーカイブ",
"de": "Automatisches Archivieren",
"fr": "Archivage automatique",
"id": "Arsip Otomatis",
"ru": "Автоархивирование"
},
{
"key": "是否保存编辑内容?",
"zh": "",
"zh-CHT": "是否保存編輯內容?",
"en": "Do you want to save the edited content?",
"ko": "편집 내용을 저장하시겠습니까?",
"ja": "編集内容を保存しますか?",
"de": "Möchten Sie die bearbeiteten Inhalte speichern?",
"fr": "Voulez-vous enregistrer le contenu modifié ?",
"id": "Apakah Anda ingin menyimpan konten yang diedit?",
"ru": "Вы хотите сохранить отредактированный контент?"
}
]
]
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "DooTask",
"version": "0.40.40",
"codeVerson": 155,
"version": "0.40.78",
"codeVerson": 156,
"description": "DooTask is task management system.",
"scripts": {
"start": "./cmd dev",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit c0a0f34

Please sign in to comment.