[PR #5238] [MERGED] 0.3.20 #37278

Closed
opened 2026-04-25 10:49:42 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5238
Author: @tjbck
Created: 9/7/2024
Status: Merged
Merged: 9/7/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • bfb12a7 refac
  • 9fe62fc refac
  • d038e83 i18n: Update Catalan translation.json
  • 2d4cdc5 Merge pull request #5209 from aleixdorca/dev
  • 14eda1b fix: pdf download FONTS_DIR issue
  • 02d5bca fix: tools & function not installing requirements
  • 2f841f9 fix: enable inline link image rendering
  • f533c97 fix: close chat controls after call ends
  • 8dfbdbd fix: mic kept alive after call issue
  • 8d6a424 fix: markdown proper spacing

📊 Changes

66 files changed (+441 additions, -324 deletions)

View changed files

📝 CHANGELOG.md (+21 -0)
📝 backend/.gitignore (+1 -5)
📝 backend/open_webui/__init__.py (+2 -0)
📝 backend/open_webui/apps/ollama/main.py (+5 -1)
📝 backend/open_webui/apps/openai/main.py (+4 -1)
📝 backend/open_webui/apps/webui/main.py (+6 -2)
📝 backend/open_webui/apps/webui/routers/utils.py (+3 -5)
📝 backend/open_webui/apps/webui/utils.py (+11 -18)
📝 backend/open_webui/config.py (+9 -35)
📝 backend/open_webui/env.py (+6 -16)
📝 backend/open_webui/main.py (+40 -17)
backend/open_webui/migrations/scripts/revision.py (+19 -0)
📝 backend/open_webui/migrations/versions/7e5b5dc7342b_init.py (+11 -31)
📝 backend/open_webui/utils/misc.py (+8 -84)
backend/open_webui/utils/payload.py (+88 -0)
📝 backend/open_webui/utils/task.py (+38 -17)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 src/lib/components/admin/Settings/Interface.svelte (+41 -25)
📝 src/lib/components/chat/Chat.svelte (+14 -10)

...and 46 more files

📄 Description

No description provided


🔄 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/5238 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/7/2024 **Status:** ✅ Merged **Merged:** 9/7/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`bfb12a7`](https://github.com/open-webui/open-webui/commit/bfb12a7851d4cd3c1828661db68bbed53c15dcc8) refac - [`9fe62fc`](https://github.com/open-webui/open-webui/commit/9fe62fc80d2a9025ffd91fd7410e6497144a1bb3) refac - [`d038e83`](https://github.com/open-webui/open-webui/commit/d038e831dcf9127f934a849b34c58265804c7fd5) i18n: Update Catalan translation.json - [`2d4cdc5`](https://github.com/open-webui/open-webui/commit/2d4cdc5be9d1e205133344489d2e58cb18811a5e) Merge pull request #5209 from aleixdorca/dev - [`14eda1b`](https://github.com/open-webui/open-webui/commit/14eda1bf5bd7c4aaa42eef8b7493cf9301472b05) fix: pdf download FONTS_DIR issue - [`02d5bca`](https://github.com/open-webui/open-webui/commit/02d5bca44d49e195374e28b9299d7444ec347268) fix: tools & function not installing requirements - [`2f841f9`](https://github.com/open-webui/open-webui/commit/2f841f9f5ade466433a085da08d19cc13cf6a0c3) fix: enable inline link image rendering - [`f533c97`](https://github.com/open-webui/open-webui/commit/f533c9750be2f2a4bb2795b16e41e12d8b95348e) fix: close chat controls after call ends - [`8dfbdbd`](https://github.com/open-webui/open-webui/commit/8dfbdbd8835c7760a5e4a6138c511cb550c1aba4) fix: mic kept alive after call issue - [`8d6a424`](https://github.com/open-webui/open-webui/commit/8d6a424604588e69056bef83ef401dda5a76179d) fix: markdown proper spacing ### 📊 Changes **66 files changed** (+441 additions, -324 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+21 -0) 📝 `backend/.gitignore` (+1 -5) 📝 `backend/open_webui/__init__.py` (+2 -0) 📝 `backend/open_webui/apps/ollama/main.py` (+5 -1) 📝 `backend/open_webui/apps/openai/main.py` (+4 -1) 📝 `backend/open_webui/apps/webui/main.py` (+6 -2) 📝 `backend/open_webui/apps/webui/routers/utils.py` (+3 -5) 📝 `backend/open_webui/apps/webui/utils.py` (+11 -18) 📝 `backend/open_webui/config.py` (+9 -35) 📝 `backend/open_webui/env.py` (+6 -16) 📝 `backend/open_webui/main.py` (+40 -17) ➕ `backend/open_webui/migrations/scripts/revision.py` (+19 -0) 📝 `backend/open_webui/migrations/versions/7e5b5dc7342b_init.py` (+11 -31) 📝 `backend/open_webui/utils/misc.py` (+8 -84) ➕ `backend/open_webui/utils/payload.py` (+88 -0) 📝 `backend/open_webui/utils/task.py` (+38 -17) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `src/lib/components/admin/Settings/Interface.svelte` (+41 -25) 📝 `src/lib/components/chat/Chat.svelte` (+14 -10) _...and 46 more files_ </details> ### 📄 Description _No description provided_ --- <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 2026-04-25 10:49:42 -05: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#37278