@lobehub/chat 1.39.3 → 1.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/.env.example +19 -8
  2. package/.eslintignore +1 -1
  3. package/CHANGELOG.md +33 -0
  4. package/changelog/v1.json +12 -0
  5. package/docs/.cdn.cache.json +25 -0
  6. package/docs/changelog/2023-09-09-plugin-system.mdx +1 -1
  7. package/docs/changelog/2023-09-09-plugin-system.zh-CN.mdx +1 -1
  8. package/docs/changelog/2024-09-20-artifacts.mdx +1 -1
  9. package/docs/changelog/2024-09-20-artifacts.zh-CN.mdx +1 -1
  10. package/docs/changelog/2024-10-27-pin-assistant.mdx +2 -2
  11. package/docs/changelog/2024-10-27-pin-assistant.zh-CN.mdx +2 -2
  12. package/docs/changelog/2024-11-06-share-text-json.mdx +2 -2
  13. package/docs/changelog/2024-11-06-share-text-json.zh-CN.mdx +2 -2
  14. package/docs/changelog/index.json +16 -16
  15. package/locales/ar/changelog.json +18 -0
  16. package/locales/ar/common.json +1 -0
  17. package/locales/ar/metadata.json +4 -0
  18. package/locales/bg-BG/changelog.json +18 -0
  19. package/locales/bg-BG/common.json +1 -0
  20. package/locales/bg-BG/metadata.json +4 -0
  21. package/locales/de-DE/changelog.json +18 -0
  22. package/locales/de-DE/common.json +1 -0
  23. package/locales/de-DE/metadata.json +4 -0
  24. package/locales/en-US/changelog.json +18 -0
  25. package/locales/en-US/common.json +1 -0
  26. package/locales/en-US/metadata.json +4 -0
  27. package/locales/es-ES/changelog.json +18 -0
  28. package/locales/es-ES/common.json +1 -0
  29. package/locales/es-ES/metadata.json +4 -0
  30. package/locales/fa-IR/changelog.json +18 -0
  31. package/locales/fa-IR/common.json +1 -0
  32. package/locales/fa-IR/metadata.json +4 -0
  33. package/locales/fr-FR/changelog.json +18 -0
  34. package/locales/fr-FR/common.json +1 -0
  35. package/locales/fr-FR/metadata.json +4 -0
  36. package/locales/it-IT/changelog.json +18 -0
  37. package/locales/it-IT/common.json +1 -0
  38. package/locales/it-IT/metadata.json +4 -0
  39. package/locales/ja-JP/changelog.json +18 -0
  40. package/locales/ja-JP/common.json +1 -0
  41. package/locales/ja-JP/metadata.json +4 -0
  42. package/locales/ko-KR/changelog.json +18 -0
  43. package/locales/ko-KR/common.json +1 -0
  44. package/locales/ko-KR/metadata.json +4 -0
  45. package/locales/nl-NL/changelog.json +18 -0
  46. package/locales/nl-NL/common.json +1 -0
  47. package/locales/nl-NL/metadata.json +4 -0
  48. package/locales/pl-PL/changelog.json +18 -0
  49. package/locales/pl-PL/common.json +1 -0
  50. package/locales/pl-PL/metadata.json +4 -0
  51. package/locales/pt-BR/changelog.json +18 -0
  52. package/locales/pt-BR/common.json +1 -0
  53. package/locales/pt-BR/metadata.json +4 -0
  54. package/locales/ru-RU/changelog.json +18 -0
  55. package/locales/ru-RU/common.json +1 -0
  56. package/locales/ru-RU/metadata.json +4 -0
  57. package/locales/tr-TR/changelog.json +18 -0
  58. package/locales/tr-TR/common.json +1 -0
  59. package/locales/tr-TR/metadata.json +4 -0
  60. package/locales/vi-VN/changelog.json +18 -0
  61. package/locales/vi-VN/common.json +1 -0
  62. package/locales/vi-VN/metadata.json +4 -0
  63. package/locales/zh-CN/changelog.json +18 -0
  64. package/locales/zh-CN/common.json +1 -0
  65. package/locales/zh-CN/metadata.json +4 -0
  66. package/locales/zh-TW/changelog.json +18 -0
  67. package/locales/zh-TW/common.json +1 -0
  68. package/locales/zh-TW/metadata.json +4 -0
  69. package/package.json +6 -1
  70. package/scripts/cdnWorkflow/index.ts +217 -0
  71. package/scripts/cdnWorkflow/optimized.ts +21 -0
  72. package/scripts/cdnWorkflow/s3/index.ts +120 -0
  73. package/scripts/cdnWorkflow/s3/types.ts +25 -0
  74. package/scripts/cdnWorkflow/s3/utils.ts +106 -0
  75. package/scripts/cdnWorkflow/uploader.ts +73 -0
  76. package/scripts/cdnWorkflow/utils.ts +93 -0
  77. package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +25 -12
  78. package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +19 -9
  79. package/src/app/(main)/_layout/Desktop.tsx +4 -1
  80. package/src/app/(main)/_layout/Mobile.tsx +2 -1
  81. package/src/app/(main)/changelog/_layout/Desktop.tsx +25 -0
  82. package/src/app/(main)/changelog/_layout/Mobile/Header.tsx +33 -0
  83. package/src/app/(main)/changelog/_layout/Mobile/index.tsx +21 -0
  84. package/src/app/(main)/changelog/error.tsx +5 -0
  85. package/src/app/(main)/changelog/features/GridLayout.tsx +22 -0
  86. package/src/app/(main)/changelog/features/Hero.tsx +40 -0
  87. package/src/app/(main)/changelog/features/Post.tsx +56 -0
  88. package/src/app/(main)/changelog/features/PublishedTime.tsx +50 -0
  89. package/src/app/(main)/changelog/features/VersionTag.tsx +27 -0
  90. package/src/app/(main)/changelog/layout.tsx +10 -0
  91. package/src/app/(main)/changelog/loading.tsx +3 -0
  92. package/src/app/(main)/changelog/modal/page.tsx +23 -0
  93. package/src/app/(main)/changelog/not-found.tsx +3 -0
  94. package/src/app/(main)/changelog/page.tsx +73 -0
  95. package/src/app/(main)/chat/(workspace)/page.tsx +9 -2
  96. package/src/app/(main)/settings/about/features/Version.tsx +2 -2
  97. package/src/app/@modal/(.)changelog/modal/features/Cover.tsx +48 -0
  98. package/src/app/@modal/(.)changelog/modal/features/Hero.tsx +29 -0
  99. package/src/app/@modal/(.)changelog/modal/features/Pagination.tsx +54 -0
  100. package/src/app/@modal/(.)changelog/modal/features/Post.tsx +57 -0
  101. package/src/app/@modal/(.)changelog/modal/features/PublishedTime.tsx +50 -0
  102. package/src/app/@modal/(.)changelog/modal/features/ReadDetail.tsx +94 -0
  103. package/src/app/@modal/(.)changelog/modal/features/UpdateChangelogStatus.tsx +21 -0
  104. package/src/app/@modal/(.)changelog/modal/features/VersionTag.tsx +27 -0
  105. package/src/app/@modal/(.)changelog/modal/layout.tsx +39 -0
  106. package/src/app/@modal/(.)changelog/modal/loading.tsx +10 -0
  107. package/src/app/@modal/(.)changelog/modal/page.tsx +37 -0
  108. package/src/app/@modal/(.)settings/modal/layout.tsx +19 -16
  109. package/src/app/@modal/_layout/ModalLayout.tsx +63 -0
  110. package/src/app/@modal/chat/(.)settings/modal/layout.tsx +20 -17
  111. package/src/app/@modal/layout.tsx +5 -69
  112. package/src/components/mdx/Image.tsx +50 -0
  113. package/src/components/mdx/index.tsx +2 -0
  114. package/src/const/url.ts +1 -0
  115. package/src/features/ChangelogModal/index.tsx +22 -0
  116. package/src/features/User/UserPanel/useMenu.tsx +50 -46
  117. package/src/features/User/__tests__/useMenu.test.tsx +7 -6
  118. package/src/hooks/useInterceptingRoutes.ts +1 -6
  119. package/src/hooks/useShare.tsx +1 -0
  120. package/src/locales/default/changelog.ts +18 -0
  121. package/src/locales/default/common.ts +1 -0
  122. package/src/locales/default/index.ts +2 -0
  123. package/src/locales/default/metadata.ts +4 -0
  124. package/src/server/metadata.ts +5 -3
  125. package/src/server/routers/edge/appStatus.ts +3 -0
  126. package/src/server/routers/edge/index.ts +2 -0
  127. package/src/server/routers/lambda/agent.ts +1 -1
  128. package/src/server/services/changelog/index.test.ts +310 -0
  129. package/src/server/services/changelog/index.ts +196 -0
  130. package/src/server/services/discover/index.test.ts +0 -1
  131. package/src/server/sitemap.ts +4 -1
  132. package/src/services/__tests__/chat.test.ts +1 -1
  133. package/src/services/__tests__/global.test.ts +5 -2
  134. package/src/services/_auth.ts +1 -1
  135. package/src/services/agent.ts +25 -21
  136. package/src/services/chat.ts +2 -2
  137. package/src/services/file/ClientS3/index.ts +6 -6
  138. package/src/services/file/client.ts +14 -15
  139. package/src/services/file/server.ts +20 -25
  140. package/src/services/global.ts +2 -2
  141. package/src/services/import/client.ts +6 -5
  142. package/src/services/import/server.ts +6 -5
  143. package/src/services/import/type.ts +7 -0
  144. package/src/services/knowledgeBase.ts +19 -19
  145. package/src/services/message/_deprecated.ts +5 -0
  146. package/src/services/message/client.ts +52 -48
  147. package/src/services/message/server.ts +50 -53
  148. package/src/services/message/type.ts +2 -2
  149. package/src/services/plugin/client.ts +16 -22
  150. package/src/services/plugin/server.ts +15 -19
  151. package/src/services/rag.ts +18 -18
  152. package/src/services/ragEval.ts +29 -26
  153. package/src/services/session/_deprecated.ts +2 -2
  154. package/src/services/session/client.ts +55 -81
  155. package/src/services/session/server.ts +50 -74
  156. package/src/services/session/type.ts +4 -6
  157. package/src/services/share.ts +4 -4
  158. package/src/services/textToImage.ts +5 -2
  159. package/src/services/thread/client.ts +9 -15
  160. package/src/services/thread/server.ts +10 -15
  161. package/src/services/topic/client.ts +25 -25
  162. package/src/services/topic/server.ts +25 -42
  163. package/src/services/trace.ts +4 -4
  164. package/src/services/user/client.ts +13 -17
  165. package/src/services/user/server.ts +9 -13
  166. package/src/services/user/type.ts +1 -1
  167. package/src/store/chat/slices/message/reducer.ts +3 -2
  168. package/src/store/global/action.ts +27 -22
  169. package/src/store/global/initialState.ts +1 -0
  170. package/src/types/changelog.ts +6 -0
  171. package/src/types/message/index.ts +10 -8
  172. package/src/app/@modal/features/InterceptingContext.tsx +0 -9
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Désactiver l'épinglage",
219
219
  "privacy": "Politique de confidentialité",
220
220
  "regenerate": "Régénérer",
221
+ "releaseNotes": "Détails de la version",
221
222
  "rename": "Renommer",
222
223
  "reset": "Réinitialiser",
223
224
  "retry": "Réessayer",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Suivez les nouvelles fonctionnalités et améliorations de {{appName}}",
4
+ "title": "Journal des mises à jour"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} vous offre la meilleure expérience d'utilisation de ChatGPT, Claude, Gemini et OLLaMA WebUI",
4
8
  "title": "{{appName}} : un outil d'efficacité personnelle en IA pour vous donner un cerveau plus intelligent"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Seguici su X",
4
+ "subscribeToUpdates": "Iscriviti agli aggiornamenti",
5
+ "versions": "Dettagli versione"
6
+ },
7
+ "addedWhileAway": "Abbiamo introdotto nuove funzionalità mentre eri via.",
8
+ "allChangelog": "Visualizza tutti i registri delle modifiche",
9
+ "description": "Tieni traccia delle nuove funzionalità e miglioramenti di {{appName}}",
10
+ "pagination": {
11
+ "older": "Visualizza le modifiche precedenti",
12
+ "prev": "Pagina precedente"
13
+ },
14
+ "readDetails": "Leggi i dettagli",
15
+ "title": "Registro delle modifiche",
16
+ "versionDetails": "Dettagli versione",
17
+ "welcomeBack": "Bentornato!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Annulla fissaggio",
219
219
  "privacy": "Informativa sulla privacy",
220
220
  "regenerate": "Rigenera",
221
+ "releaseNotes": "Dettagli della versione",
221
222
  "rename": "Rinomina",
222
223
  "reset": "Ripristina",
223
224
  "retry": "Riprova",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Segui le nuove funzionalità e i miglioramenti di {{appName}}",
4
+ "title": "Registro delle modifiche"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} ti offre la migliore esperienza con ChatGPT, Claude, Gemini e OLLaMA WebUI",
4
8
  "title": "{{appName}}: strumento di efficienza personale AI, per darti un cervello più intelligente"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Xで私たちをフォロー",
4
+ "subscribeToUpdates": "更新を購読",
5
+ "versions": "バージョンの詳細"
6
+ },
7
+ "addedWhileAway": "あなたが離れている間に、新しい機能を追加しました。",
8
+ "allChangelog": "すべての更新ログを見る",
9
+ "description": "{{appName}}の新機能と改善を継続的に追跡",
10
+ "pagination": {
11
+ "older": "履歴の変更を表示",
12
+ "prev": "前のページ"
13
+ },
14
+ "readDetails": "詳細を読む",
15
+ "title": "更新ログ",
16
+ "versionDetails": "バージョンの詳細",
17
+ "welcomeBack": "お帰りなさい!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "ピン留め解除",
219
219
  "privacy": "プライバシーポリシー",
220
220
  "regenerate": "再生成",
221
+ "releaseNotes": "リリースノート",
221
222
  "rename": "名前を変更",
222
223
  "reset": "リセット",
223
224
  "retry": "再試行",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "{{appName}} の新機能と改善を継続的に追跡する",
4
+ "title": "更新履歴"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}}が提供する最高のChatGPT、Claude、Gemini、OLLaMA WebUIの体験",
4
8
  "title": "{{appName}}:個人AI効率ツール、より賢い脳を手に入れよう"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "X에서 저희를 팔로우하세요",
4
+ "subscribeToUpdates": "업데이트 구독하기",
5
+ "versions": "버전 세부정보"
6
+ },
7
+ "addedWhileAway": "귀하가 떠나 있는 동안 새로운 기능이 추가되었습니다.",
8
+ "allChangelog": "모든 업데이트 로그 보기",
9
+ "description": "{{appName}}의 새로운 기능과 개선 사항을 지속적으로 추적하세요",
10
+ "pagination": {
11
+ "older": "이전 변경 사항 보기",
12
+ "prev": "이전 페이지"
13
+ },
14
+ "readDetails": "자세히 읽기",
15
+ "title": "업데이트 로그",
16
+ "versionDetails": "버전 세부정보",
17
+ "welcomeBack": "다시 오신 것을 환영합니다!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "고정 해제",
219
219
  "privacy": "개인정보 보호 정책",
220
220
  "regenerate": "재생성",
221
+ "releaseNotes": "버전 세부정보",
221
222
  "rename": "이름 바꾸기",
222
223
  "reset": "재설정",
223
224
  "retry": "재시도",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "{{appName}}의 새로운 기능과 개선 사항을 지속적으로 추적합니다.",
4
+ "title": "변경 로그"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}}가 제공하는 최고의 ChatGPT, Claude, Gemini, OLLaMA WebUI 사용 경험",
4
8
  "title": "{{appName}}: 개인 AI 효율 도구, 더 똑똑한 두뇌를 위한 선택"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Volg ons op X",
4
+ "subscribeToUpdates": "Abonneer op updates",
5
+ "versions": "Versie details"
6
+ },
7
+ "addedWhileAway": "We hebben nieuwe functies toegevoegd terwijl je weg was.",
8
+ "allChangelog": "Bekijk alle changelogs",
9
+ "description": "Blijf op de hoogte van nieuwe functies en verbeteringen van {{appName}}",
10
+ "pagination": {
11
+ "older": "Bekijk eerdere wijzigingen",
12
+ "prev": "Vorige pagina"
13
+ },
14
+ "readDetails": "Lees meer",
15
+ "title": "Changelog",
16
+ "versionDetails": "Versie details",
17
+ "welcomeBack": "Welkom terug!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Vastzetten uitschakelen",
219
219
  "privacy": "Privacybeleid",
220
220
  "regenerate": "Opnieuw genereren",
221
+ "releaseNotes": "Versie details",
221
222
  "rename": "Naam wijzigen",
222
223
  "reset": "Resetten",
223
224
  "retry": "Opnieuw proberen",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Blijf op de hoogte van nieuwe functies en verbeteringen van {{appName}}",
4
+ "title": "Wijzigingslog"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} biedt je de beste ervaring met ChatGPT, Claude, Gemini, en OLLaMA WebUI",
4
8
  "title": "{{appName}}: Persoonlijke AI-efficiëntietool, geef jezelf een slimmer brein"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Obserwuj nas na X",
4
+ "subscribeToUpdates": "Subskrybuj aktualizacje",
5
+ "versions": "Szczegóły wersji"
6
+ },
7
+ "addedWhileAway": "W czasie Twojej nieobecności wprowadziliśmy nowe funkcje.",
8
+ "allChangelog": "Zobacz wszystkie dzienniki zmian",
9
+ "description": "Na bieżąco śledź nowe funkcje i ulepszenia {{appName}}",
10
+ "pagination": {
11
+ "older": "Zobacz wcześniejsze zmiany",
12
+ "prev": "Poprzednia strona"
13
+ },
14
+ "readDetails": "Przeczytaj szczegóły",
15
+ "title": "Dziennik zmian",
16
+ "versionDetails": "Szczegóły wersji",
17
+ "welcomeBack": "Witaj z powrotem!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Odepnij",
219
219
  "privacy": "Polityka prywatności",
220
220
  "regenerate": "Regeneruj",
221
+ "releaseNotes": "Szczegóły wersji",
221
222
  "rename": "Zmień nazwę",
222
223
  "reset": "Resetuj",
223
224
  "retry": "Ponów",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Bieżące śledzenie nowych funkcji i ulepszeń {{appName}}",
4
+ "title": "Dziennik zmian"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} oferuje najlepsze doświadczenia z ChatGPT, Claude, Gemini, OLLaMA WebUI",
4
8
  "title": "{{appName}}: osobiste narzędzie AI, które daje ci mądrzejszy umysł"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Siga-nos no X",
4
+ "subscribeToUpdates": "Inscreva-se para atualizações",
5
+ "versions": "Detalhes da versão"
6
+ },
7
+ "addedWhileAway": "Trouxemos novos recursos enquanto você estava ausente.",
8
+ "allChangelog": "Veja todos os registros de alterações",
9
+ "description": "Acompanhe as novas funcionalidades e melhorias do {{appName}}",
10
+ "pagination": {
11
+ "older": "Ver alterações anteriores",
12
+ "prev": "Página anterior"
13
+ },
14
+ "readDetails": "Leia os detalhes",
15
+ "title": "Registro de Atualizações",
16
+ "versionDetails": "Detalhes da versão",
17
+ "welcomeBack": "Bem-vindo de volta!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Desafixar",
219
219
  "privacy": "Política de Privacidade",
220
220
  "regenerate": "Regenerar",
221
+ "releaseNotes": "Notas da versão",
221
222
  "rename": "Renomear",
222
223
  "reset": "Redefinir",
223
224
  "retry": "Tentar novamente",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Acompanhe as novas funcionalidades e melhorias do {{appName}}",
4
+ "title": "Registro de Atualizações"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} traz a você a melhor experiência de uso do ChatGPT, Claude, Gemini e OLLaMA WebUI",
4
8
  "title": "{{appName}}: Ferramenta de eficiência pessoal em IA, dê a si mesmo um cérebro mais inteligente"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Подписывайтесь на нас в X",
4
+ "subscribeToUpdates": "Подписаться на обновления",
5
+ "versions": "Детали версий"
6
+ },
7
+ "addedWhileAway": "Мы добавили новые функции, пока вы отсутствовали.",
8
+ "allChangelog": "Просмотреть все журналы изменений",
9
+ "description": "Постоянно следите за новыми функциями и улучшениями {{appName}}",
10
+ "pagination": {
11
+ "older": "Посмотреть историю изменений",
12
+ "prev": "Предыдущая страница"
13
+ },
14
+ "readDetails": "Читать детали",
15
+ "title": "Журнал изменений",
16
+ "versionDetails": "Детали версий",
17
+ "welcomeBack": "С возвращением!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Открепить",
219
219
  "privacy": "Политика конфиденциальности",
220
220
  "regenerate": "Перегенерировать",
221
+ "releaseNotes": "Подробности о версии",
221
222
  "rename": "Переименовать",
222
223
  "reset": "Сброс",
223
224
  "retry": "Повторить",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Постоянно следите за новыми функциями и улучшениями {{appName}}",
4
+ "title": "Журнал изменений"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} предлагает вам лучший опыт использования ChatGPT, Claude, Gemini и OLLaMA WebUI",
4
8
  "title": "{{appName}}: личный инструмент AI для повышения эффективности, дайте себе более умный мозг"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Bizi X'te takip edin",
4
+ "subscribeToUpdates": "Güncellemeleri abone olun",
5
+ "versions": "Sürüm detayları"
6
+ },
7
+ "addedWhileAway": "Siz yokken yeni özellikler ekledik.",
8
+ "allChangelog": "Tüm güncelleme günlüklerini görüntüle",
9
+ "description": "{{appName}}'in yeni özelliklerini ve iyileştirmelerini sürekli takip edin",
10
+ "pagination": {
11
+ "older": "Geçmiş değişiklikleri görüntüle",
12
+ "prev": "Önceki sayfa"
13
+ },
14
+ "readDetails": "Detayları okuyun",
15
+ "title": "Güncelleme Günlüğü",
16
+ "versionDetails": "Sürüm detayları",
17
+ "welcomeBack": "Hoş geldiniz!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Unpin",
219
219
  "privacy": "Gizlilik Politikası",
220
220
  "regenerate": "Tekrarla",
221
+ "releaseNotes": "Sürüm Detayları",
221
222
  "rename": "Yeniden İsimlendir",
222
223
  "reset": "Reset",
223
224
  "retry": "Yeniden Dene",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "{{appName}}'in yeni özelliklerini ve iyileştirmelerini sürekli takip edin",
4
+ "title": "Güncelleme Geçmişi"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} size en iyi ChatGPT, Claude, Gemini, OLLaMA WebUI deneyimini sunar",
4
8
  "title": "{{appName}}: Kişisel AI verimlilik aracı, kendinize daha akıllı bir zihin verin"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "Theo dõi chúng tôi trên X",
4
+ "subscribeToUpdates": "Đăng ký nhận cập nhật",
5
+ "versions": "Chi tiết phiên bản"
6
+ },
7
+ "addedWhileAway": "Chúng tôi đã mang đến những tính năng mới trong thời gian bạn vắng mặt.",
8
+ "allChangelog": "Xem tất cả nhật ký cập nhật",
9
+ "description": "Theo dõi các tính năng và cải tiến mới của {{appName}}",
10
+ "pagination": {
11
+ "older": "Xem thay đổi lịch sử",
12
+ "prev": "Trang trước"
13
+ },
14
+ "readDetails": "Đọc chi tiết",
15
+ "title": "Nhật ký cập nhật",
16
+ "versionDetails": "Chi tiết phiên bản",
17
+ "welcomeBack": "Chào mừng bạn trở lại!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "Bỏ ghim",
219
219
  "privacy": "Chính sách bảo mật",
220
220
  "regenerate": "Tạo lại",
221
+ "releaseNotes": "Chi tiết phiên bản",
221
222
  "rename": "Đổi tên",
222
223
  "reset": "Đặt lại",
223
224
  "retry": "Thử lại",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "Theo dõi các tính năng và cải tiến mới của {{appName}}",
4
+ "title": "Nhật ký cập nhật"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} mang đến cho bạn trải nghiệm tốt nhất với ChatGPT, Claude, Gemini, OLLaMA WebUI",
4
8
  "title": "{{appName}}: Công cụ AI cá nhân, giúp bạn có một bộ não thông minh hơn"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "在 X 上关注我们",
4
+ "subscribeToUpdates": "订阅更新",
5
+ "versions": "版本详情"
6
+ },
7
+ "addedWhileAway": "在您离开期间,我们带来了新的特性。",
8
+ "allChangelog": "查看所有更新日志",
9
+ "description": "持续追踪 {{appName}} 的新功能和改进",
10
+ "pagination": {
11
+ "older": "查看历史变更",
12
+ "prev": "上一页"
13
+ },
14
+ "readDetails": "阅读详情",
15
+ "title": "更新日志",
16
+ "versionDetails": "版本详情",
17
+ "welcomeBack": "欢迎回来!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "取消置顶",
219
219
  "privacy": "隐私政策",
220
220
  "regenerate": "重新生成",
221
+ "releaseNotes": "版本详情",
221
222
  "rename": "重命名",
222
223
  "reset": "重置",
223
224
  "retry": "重试",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "持续追踪 {{appName}} 的新功能和改进",
4
+ "title": "更新日志"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} 带给你最好的 ChatGPT, Claude , Gemini, OLLaMA WebUI 使用体验",
4
8
  "title": "{{appName}}:个人 AI 效能工具,给自己一个更聪明的大脑"
@@ -0,0 +1,18 @@
1
+ {
2
+ "actions": {
3
+ "followOnX": "在 X 上關注我們",
4
+ "subscribeToUpdates": "訂閱更新",
5
+ "versions": "版本詳情"
6
+ },
7
+ "addedWhileAway": "在您離開期間,我們帶來了新的特性。",
8
+ "allChangelog": "查看所有更新日誌",
9
+ "description": "持續追蹤 {{appName}} 的新功能和改進",
10
+ "pagination": {
11
+ "older": "查看歷史變更",
12
+ "prev": "上一頁"
13
+ },
14
+ "readDetails": "閱讀詳情",
15
+ "title": "更新日誌",
16
+ "versionDetails": "版本詳情",
17
+ "welcomeBack": "歡迎回來!"
18
+ }
@@ -218,6 +218,7 @@
218
218
  "pinOff": "取消置頂",
219
219
  "privacy": "隱私政策",
220
220
  "regenerate": "重新生成",
221
+ "releaseNotes": "版本詳細",
221
222
  "rename": "重新命名",
222
223
  "reset": "重置",
223
224
  "retry": "重試",
@@ -1,4 +1,8 @@
1
1
  {
2
+ "changelog": {
3
+ "description": "持續追蹤 {{appName}} 的新功能和改進",
4
+ "title": "更新日誌"
5
+ },
2
6
  "chat": {
3
7
  "description": "{{appName}} 帶給你最好的 ChatGPT, Claude, Gemini, OLLaMA WebUI 使用體驗",
4
8
  "title": "{{appName}}:個人 AI 效能工具,給自己一個更聰明的大腦"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.39.3",
3
+ "version": "1.40.0",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",
@@ -66,6 +66,7 @@
66
66
  "test:update": "vitest -u",
67
67
  "type-check": "tsc --noEmit",
68
68
  "webhook:ngrok": "ngrok http http://localhost:3011",
69
+ "workflow:cdn": "tsx ./scripts/cdnWorkflow/index.ts",
69
70
  "workflow:changelog": "tsx ./scripts/changelogWorkflow/index.ts",
70
71
  "workflow:countCharters": "tsx scripts/countEnWord.ts",
71
72
  "workflow:docs": "tsx ./scripts/docsWorkflow/index.ts",
@@ -190,6 +191,7 @@
190
191
  "pdfjs-dist": "4.8.69",
191
192
  "pg": "^8.13.0",
192
193
  "pino": "^9.5.0",
194
+ "plaiceholder": "^3.0.0",
193
195
  "polished": "^4.3.1",
194
196
  "posthog-js": "^1.174.2",
195
197
  "pwa-install-handler": "^2.6.1",
@@ -251,6 +253,7 @@
251
253
  "@testing-library/jest-dom": "^6.6.2",
252
254
  "@testing-library/react": "^16.0.1",
253
255
  "@types/chroma-js": "^2.4.4",
256
+ "@types/crypto-js": "^4.2.2",
254
257
  "@types/debug": "^4.1.12",
255
258
  "@types/diff": "^6.0.0",
256
259
  "@types/fs-extra": "^11.0.4",
@@ -274,6 +277,7 @@
274
277
  "ajv-keywords": "^5.1.0",
275
278
  "commitlint": "^19.5.0",
276
279
  "consola": "^3.2.3",
280
+ "crypto-js": "^4.2.0",
277
281
  "dotenv": "^16.4.5",
278
282
  "dpdm-fast": "^1.0.4",
279
283
  "drizzle-kit": "^0.30.0",
@@ -291,6 +295,7 @@
291
295
  "lodash": "^4.17.21",
292
296
  "markdown-table": "^3.0.3",
293
297
  "markdown-to-txt": "^2.0.1",
298
+ "mime": "^4.0.4",
294
299
  "node-fetch": "^3.3.2",
295
300
  "node-gyp": "^10.2.0",
296
301
  "openapi-typescript": "^6.7.6",