[PR #1631] [MERGED] 0.1.120 #7526

Closed
opened 2025-11-11 17:29:12 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/1631
Author: @tjbck
Created: 4/20/2024
Status: Merged
Merged: 4/21/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 0caf046 Fixed translated variable name
  • b352732 Fixed translated variable names
  • e720afa Fixed translated variable names
  • c235a3d Fixed translated variable names
  • 44f9e93 Fixed malformed date string
  • 941dc41 Fixed translated variable names and malformed date string
  • 5f16ec0 Fixed malformed time format
  • b788514 Fixed translated author name
  • a53c1cf Fixed translated author name
  • b67f80f Merge pull request #1600 from Fusseldieb/patch-1

📊 Changes

50 files changed (+1463 additions, -243 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.md (+3 -0)
📝 CHANGELOG.md (+16 -0)
📝 README.md (+1 -1)
📝 backend/apps/audio/main.py (+106 -1)
📝 backend/apps/images/main.py (+6 -2)
📝 backend/apps/openai/main.py (+1 -1)
📝 backend/apps/rag/main.py (+16 -14)
📝 backend/apps/rag/utils.py (+2 -2)
backend/apps/web/internal/migrations/004_add_archived.py (+46 -0)
backend/apps/web/internal/migrations/005_add_updated_at.py (+77 -0)
📝 backend/apps/web/models/chats.py (+53 -10)
📝 backend/apps/web/routers/chats.py (+29 -0)
📝 backend/config.py (+18 -0)
📝 backend/static/favicon.png (+0 -0)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 src/lib/apis/audio/index.ts (+100 -1)
📝 src/lib/apis/chats/index.ts (+63 -0)
📝 src/lib/components/chat/MessageInput.svelte (+42 -38)
📝 src/lib/components/chat/Messages.svelte (+7 -35)

...and 30 more files

📄 Description

Resolves #1106 #1608


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/1631 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/20/2024 **Status:** ✅ Merged **Merged:** 4/21/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`0caf046`](https://github.com/open-webui/open-webui/commit/0caf04617ea2e476e942a867ea4611e694da7dc1) Fixed translated variable name - [`b352732`](https://github.com/open-webui/open-webui/commit/b352732b435e51aa5e5c1e693d09650ea6c5f76b) Fixed translated variable names - [`e720afa`](https://github.com/open-webui/open-webui/commit/e720afacfab442410dc581039c010b7de1ea06e3) Fixed translated variable names - [`c235a3d`](https://github.com/open-webui/open-webui/commit/c235a3d539b3e62b562f14e69ede62a4f735ed0b) Fixed translated variable names - [`44f9e93`](https://github.com/open-webui/open-webui/commit/44f9e930d272715211c42373fd23680d1463e3f7) Fixed malformed date string - [`941dc41`](https://github.com/open-webui/open-webui/commit/941dc41c3d8151fe4f677870772e19c6a62d37c1) Fixed translated variable names and malformed date string - [`5f16ec0`](https://github.com/open-webui/open-webui/commit/5f16ec077a41517142bd38dabe33c38a1449fcc2) Fixed malformed time format - [`b788514`](https://github.com/open-webui/open-webui/commit/b788514a10ee49fee4b53b7f4dacc87c5e9200c6) Fixed translated author name - [`a53c1cf`](https://github.com/open-webui/open-webui/commit/a53c1cfc7775acf8f3eca0e5b0e7549294e111fd) Fixed translated author name - [`b67f80f`](https://github.com/open-webui/open-webui/commit/b67f80f7a49e9cb6603bb63c8c46f00fe5ffc205) Merge pull request #1600 from Fusseldieb/patch-1 ### 📊 Changes **50 files changed** (+1463 additions, -243 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.md` (+3 -0) 📝 `CHANGELOG.md` (+16 -0) 📝 `README.md` (+1 -1) 📝 `backend/apps/audio/main.py` (+106 -1) 📝 `backend/apps/images/main.py` (+6 -2) 📝 `backend/apps/openai/main.py` (+1 -1) 📝 `backend/apps/rag/main.py` (+16 -14) 📝 `backend/apps/rag/utils.py` (+2 -2) ➕ `backend/apps/web/internal/migrations/004_add_archived.py` (+46 -0) ➕ `backend/apps/web/internal/migrations/005_add_updated_at.py` (+77 -0) 📝 `backend/apps/web/models/chats.py` (+53 -10) 📝 `backend/apps/web/routers/chats.py` (+29 -0) 📝 `backend/config.py` (+18 -0) 📝 `backend/static/favicon.png` (+0 -0) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `src/lib/apis/audio/index.ts` (+100 -1) 📝 `src/lib/apis/chats/index.ts` (+63 -0) 📝 `src/lib/components/chat/MessageInput.svelte` (+42 -38) 📝 `src/lib/components/chat/Messages.svelte` (+7 -35) _...and 30 more files_ </details> ### 📄 Description Resolves #1106 #1608 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-11 17:29:12 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#7526