Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Dec 10, 2024
1 parent 002776f commit c51116a
Show file tree
Hide file tree
Showing 100 changed files with 502 additions and 482 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [0.41.55]

### Performance

- 优化媒体播放
- 优化临时会话的消息推送
- 优化任务时间显示

## [0.41.45]

### 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 @@ -30,7 +30,7 @@
* @property int|null $todo 设为待办会员ID
* @property int|null $link 是否存在链接
* @property int|null $modify 是否编辑
* @property int $bot
* @property int|null $bot 是否机器人的消息
* @property int|null $reply_num 有多少条回复
* @property int|null $reply_id 回复ID
* @property int|null $forward_id 转发ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private function fullTextIndexExists($tableName, $column)

// 检查返回的索引是否包含指定的列
foreach ($indexExists as $index) {
$indexColumns = explode(',', $index->column_name);
$indexColumns = explode(',', $index->COLUMN_NAME ?? $index->column_name ?? '');
// 如果索引包含指定的列,则返回 true
if (in_array($column, $indexColumns)) {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up()
{
Schema::table('web_socket_dialog_msgs', function (Blueprint $table) {
if (!Schema::hasColumn('web_socket_dialog_msgs', 'bot')) {
$table->tinyInteger('bot')->default(0)->after('modify');
$table->tinyInteger('bot')->nullable()->default(0)->after('modify')->comment('是否机器人的消息');
$table->index('bot');
}
});
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ services:

ai:
container_name: "dootask-ai-${APP_ID}"
image: "kuaifan/dootask-ai:0.1.5"
image: "kuaifan/dootask-ai:0.1.6"
environment:
REDIS_HOST: "${REDIS_HOST}"
REDIS_PORT: "${REDIS_PORT}"
Expand Down
12 changes: 12 additions & 0 deletions language/translate.json
Original file line number Diff line number Diff line change
Expand Up @@ -27898,5 +27898,17 @@
"fr": "Mettre à jour le tag de la sous-tâche",
"id": "Perbarui tag sub-tugas",
"ru": "Обновить тег подзадачи"
},
{
"key": "AI机器人不存在",
"zh": "",
"zh-CHT": "AI機器人不存在",
"en": "AI robot does not exist",
"ko": "AI 로봇이 존재하지 않습니다",
"ja": "AIロボットは存在しません",
"de": "KI-Roboter existiert nicht",
"fr": "Le robot IA n'existe pas",
"id": "Robot AI tidak ada",
"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.41.45",
"codeVerson": 157,
"version": "0.41.55",
"codeVerson": 158,
"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 c51116a

Please sign in to comment.