Commit Graph

5028 Commits

Author SHA1 Message Date
Timothy Jaeryang Baek
41a83f1dc5 refac: code update behaviour 2025-03-09 23:49:26 +00:00
Fabio Polito
de0f158b04 Merge remote-tracking branch 'upstream/dev' into docling_context_extraction_engine
merge upstream dev
2025-03-09 16:12:43 +00:00
Silentoplayz
ae1f0f0a3c feat: horizontal scroll for model dropdown tags 2025-03-09 11:41:14 -04:00
Timothy Jaeryang Baek
cdb5eae43a refac 2025-03-09 15:05:13 +00:00
Timothy Jaeryang Baek
26980fb859 refac 2025-03-09 15:01:36 +00:00
Timothy Jaeryang Baek
53a2acd541 enh: local, external, direct model list filter
Co-Authored-By: recrudesce <6450799+recrudesce@users.noreply.github.com>
2025-03-09 15:00:13 +00:00
Timothy Jaeryang Baek
c58f0844a3 refac 2025-03-09 14:48:11 +00:00
Timothy Jaeryang Baek
5cc43ae880 enh: image panzoom 2025-03-09 14:39:54 +00:00
Timothy Jaeryang Baek
1c211e32b3 refac 2025-03-09 11:18:28 +00:00
Timothy Jaeryang Baek
0dce81f646
Merge pull request #11423 from silentoplayz/confirmation-prompts
feat: add more confirmation prompts
2025-03-09 07:40:36 -03:00
Silentoplayz
1de142f435 sticky tags 2025-03-08 18:00:06 -05:00
Fabio Polito
0aa42615f9 Merge remote-tracking branch 'upstream/dev' into docling_context_extraction_engine
merge upstream
2025-03-08 18:52:51 +00:00
Silentoplayz
d669932137 add confirmation prompts 2025-03-08 13:42:24 -05:00
Timothy Jaeryang Baek
6b806ae12f
Merge pull request #11413 from hurxxxx/fix/global-filter-cannot-disable
fix: Prevent modification of global filter settings in "Admin panel" - "Settings" - "Models"
2025-03-08 14:15:47 -04:00
Timothy Jaeryang Baek
324cd94c53 refac: user message delete 2025-03-08 17:03:08 +00:00
Timothy Jaeryang Baek
58ff221d1f refac 2025-03-08 16:48:32 +00:00
Timothy Jaeryang Baek
1e36282708 refac 2025-03-08 16:23:20 +00:00
Timothy Jaeryang Baek
ac507720c8
Merge pull request #11401 from TiancongLx/dev
i18n: update zh-TW
2025-03-08 12:10:58 -04:00
Timothy Jaeryang Baek
d59433bf7e refac 2025-03-08 15:48:09 +00:00
hurxxxx
40257afeed fix: Using disabled attribute for elements is common 2025-03-09 00:12:37 +09:00
hurxxxx
851931fdf6 fix: Global filter cannot be modified in the model (changes have no effect) 2025-03-08 23:24:52 +09:00
Tiancong Li
e5b02f732b i18n: update zh-TW 2025-03-08 16:18:22 +08:00
Timothy Jaeryang Baek
dc3abc2bcb refac 2025-03-08 00:13:58 +00:00
Timothy Jaeryang Baek
e85d69fe60
Merge branch 'dev' into dev 2025-03-07 19:59:33 -04:00
Timothy Jaeryang Baek
027c5c4b72
Merge pull request #11383 from Kylapaallikko/dev
i18n: Update Finnish Translation
2025-03-07 19:59:03 -04:00
Kylapaallikko
17a4360566
Update translation.json 2025-03-07 19:44:56 +02:00
Timothy Jaeryang Baek
7a1cf1095a
Merge pull request #11358 from OrenZhang/i18n_translation
i18n(common): add i18n translation
2025-03-07 13:33:59 -04:00
Timothy Jaeryang Baek
ab92737a9a refac 2025-03-07 17:24:52 +00:00
Simon
27a6d1917d
Update translation.json 2025-03-07 13:48:56 +01:00
Simon
25544b38bd
Merge branch 'open-webui:dev' into dev 2025-03-07 13:42:46 +01:00
Simon
cf449d1c7e
Update translation.json 2025-03-07 13:42:05 +01:00
Simon
20826e15b3
Update translation.json 2025-03-07 13:31:56 +01:00
Timothy Jaeryang Baek
d7a0437438 refac: model sort list 2025-03-07 12:16:16 +00:00
orenzhang
b61ea393b4
refactor(lint): code lint 2025-03-07 20:03:53 +08:00
orenzhang
dc04123330
Merge branch 'dev' into i18n_translation 2025-03-07 20:03:33 +08:00
orenzhang
72ea6dd9f1
refactor(lint): code lint 2025-03-07 19:59:09 +08:00
Timothy Jaeryang Baek
f8f54237c6
Merge pull request #11290 from panda44312/patch-5
i18n: Update zh-cn
2025-03-07 06:06:40 -04:00
Fabio Polito
e3eef58310 feat: merge with dev 2025-03-07 00:22:47 +00:00
orenzhang
92fb1109b6
i18n(common): add i18n translation 2025-03-06 20:16:34 +08:00
Fabio Polito
98857184ff Merge remote-tracking branch 'upstream/dev' into docling_context_extraction_engine
merge with dev branch
2025-03-06 12:12:50 +00:00
Panda
98376fbbce
i18n: zh-cn 2025-03-06 13:08:35 +01:00
Panda
561f4d5d69
i18n: zh-cn 2025-03-06 11:26:04 +01:00
Perry Li
9cc9df3018 fix(chat): resolve duplicate collapsible IDs causing citation modal failures
Fix an issue where clicking inline citations in subsequent chat messages failed to open the citation modal when multiple collapsible sections are present.

The root cause was duplicate "collapsible-sources" IDs assigned to all Collapsible components. This led document.getElementById() to always return the first instance, preventing subsequent messages from opening their CitationModal.

Changes:
- Modify Collapsible ID generation in Citations.svelte to use unique IDs with "collapsible-${message.id}" pattern
- Update ResponseMessage.svelte's onSourceClick handler to reference the dynamic collapsible IDs
- Ensure proper citation modal binding for each chat message's sources

Affected components:
- Collapsible (expandable content sections)
- CitationsModal (citation detail popup)

This ensures each chat message's sources are independently collapsible and maintains proper citation modal binding throughout message history.
2025-03-06 10:10:53 +00:00
Timothy Jaeryang Baek
c0ecff9d70 fix: pinyin keyboard 2025-03-05 19:36:30 -08:00
Timothy Jaeryang Baek
aaaebfabbe chore: format 2025-03-05 19:16:59 -08:00
Timothy Jaeryang Baek
5e78a5c510 enh: enable_code_execution toggle
Co-Authored-By: recrudesce <6450799+recrudesce@users.noreply.github.com>
2025-03-05 19:06:28 -08:00
Timothy Jaeryang Baek
dce24225e0
Merge pull request #11249 from TiancongLx/dev
i18n: update zh-TW
2025-03-05 18:52:34 -08:00
Timothy Jaeryang Baek
f9b44c6bf2 refac 2025-03-05 18:39:32 -08:00
Fabio Polito
2982893d0d fix: format fixes 2025-03-06 00:39:00 +00:00
Tiancong Li
6b0af942db i18n: update zh-TW 2025-03-06 07:23:55 +08:00
Timothy Jaeryang Baek
f95a482c24
Merge pull request #11209 from aleixdorca/dev
Update catalan translation.json
2025-03-05 14:56:37 -08:00
Timothy Jaeryang Baek
edf94d732b refac 2025-03-05 14:54:48 -08:00
Fabio Polito
9aa407dbd2 feat: merge with main 2025-03-05 22:04:34 +00:00
Aleix Dorca
2dc5f3c30c
Update catalan translation.json 2025-03-05 08:42:16 +01:00
Timothy Jaeryang Baek
e2d60bd92e chore: format 2025-03-04 22:10:47 -08:00
Timothy Jaeryang Baek
c2eada36f1
Merge pull request #10898 from hurxxxx/fix/update-msal-browser-version
fix: update msal browser version
2025-03-04 21:56:22 -08:00
Timothy Jaeryang Baek
b01c9184c2 chore: format 2025-03-04 21:24:17 -08:00
Timothy Jaeryang Baek
fbf4f5eb30 refac 2025-03-04 18:19:05 -08:00
Timothy Jaeryang Baek
6c77e6fdb3 refac 2025-03-04 18:08:43 -08:00
Timothy Jaeryang Baek
53fe7c460b
Merge pull request #11178 from silentoplayz/fix
chore: Update ToolkitEditor.svelte
2025-03-04 17:53:47 -08:00
Timothy Jaeryang Baek
cffd02defe
Merge pull request #11153 from panda44312/patch-4
i18n: update ZH-CN
2025-03-04 17:42:05 -08:00
Timothy Jaeryang Baek
bdc6088159
Merge pull request #11151 from TiancongLx/dev
i18n: update zh-TW
2025-03-04 17:41:57 -08:00
Timothy Jaeryang Baek
2a75a85556 refac 2025-03-04 17:40:32 -08:00
Silentoplayz
94c025c6d7 Update ToolkitEditor.svelte
fix
2025-03-04 17:46:24 -05:00
Panda
023c8bb5b4
i18n: zh-cn Update 2025-03-04 16:08:06 +01:00
Tiancong Li
500440ebec i18n: update zh-TW 2025-03-04 22:51:24 +08:00
Timothy Jaeryang Baek
b94de4f002 refac 2025-03-04 02:45:05 -08:00
Timothy Jaeryang Baek
14a6c1f496 refac: favicon 2025-03-04 01:30:22 -08:00
Timothy Jaeryang Baek
e3769c1073 refac 2025-03-04 01:16:08 -08:00
Timothy Jaeryang Baek
d78fe4decc
Merge pull request #11073 from vincent-thevenin/dev
fix: fix issue with call voice recording starting before voice detection
2025-03-04 00:55:03 -08:00
Panda
59c3203990
IUpdate translation.json 2025-03-04 09:48:03 +01:00
Timothy Jaeryang Baek
39ea59edc8 chore: format 2025-03-04 00:32:27 -08:00
Timothy Jaeryang Baek
8697f72068 refac: styling 2025-03-03 22:44:03 -08:00
Timothy Jaeryang Baek
3e7077bb73 refac 2025-03-03 22:24:19 -08:00
Timothy Jaeryang Baek
5f89c1b137 enh: model selector tag filter 2025-03-03 21:47:27 -08:00
Timothy Jaeryang Baek
15cbccc8f5 enh: code block collapse 2025-03-03 21:10:15 -08:00
Timothy Jaeryang Baek
9ff54288ef refac 2025-03-03 20:53:14 -08:00
Timothy Jaeryang Baek
baca6db680
Merge pull request #10987 from alpha-pet/feat-submit-on-ctrl-enter
feat: add alternative input configuration where Ctrl-Enter is required to send chat messages
2025-03-03 20:39:53 -08:00
Timothy Jaeryang Baek
6bd2bc5683 refac 2025-03-03 20:34:45 -08:00
Timothy Jaeryang Baek
7e65f7fa4d fix: chat event handler not being registered on sign in 2025-03-03 20:31:35 -08:00
Timothy Jaeryang Baek
1236157800 fix: timestamp missing in edited user message 2025-03-03 20:21:39 -08:00
Timothy Jaeryang Baek
d844fc7edb refac: inline citation handling 2025-03-03 19:48:00 -08:00
Panda
3ad4b10470
i18n: Update zh-cn 2025-03-04 00:17:02 +01:00
Timothy Jaeryang Baek
dc2b8fd327
Merge branch 'dev' into main 2025-03-03 14:56:48 -08:00
Aindriú Mac Giolla Eoin
3fa323d1a1 Updated Irish translations 2025-03-03 18:41:11 +00:00
vincent-thevenin
4d6132b9de fix: fix issue with call voice recording starting before voice detection 2025-03-03 13:59:28 +01:00
Tiancong Li
7a31ff6a2f i18n: update zh-TW (fix typo) 2025-03-03 16:55:37 +08:00
Tiancong Li
3dd492627e i18n: update zh-TW 2025-03-02 17:04:58 +08:00
satlus
6e58d99920 fixed manifest link rel, restoring PWA 2025-03-01 19:43:40 -05:00
Timothy Jaeryang Baek
efe8c4ca69 chore: format 2025-03-01 07:28:00 -08:00
Timothy Jaeryang Baek
05c5e73304
Merge pull request #10373 from dannyl1u/logit_bias
feat: logit bias
2025-03-01 06:13:19 -08:00
Timothy Jaeryang Baek
fe44e4d344 i18n(html): sync html language with i18n language 2025-02-28 16:06:28 -08:00
Timothy Jaeryang Baek
f1ce653830
Merge pull request #10992 from softue/i18n-floating-buttons
i18n floating buttons (en-US and pt-BR)
2025-02-28 15:59:49 -08:00
Rômulo Mendes Figueiredo
c06484297b i18n: ask and explain floating buttons 2025-02-28 12:39:57 -03:00
Timothy Jaeryang Baek
331caad5b8 fix 2025-02-28 07:36:56 -08:00
Thomas Rehn
8b3fcfea13 feat: add alternative input configuration where Ctrl-Enter is required to send chat messages 2025-02-28 15:23:03 +01:00
orenzhang
bcdbc4fb8a
i18n(zh-cn): add chinese translation 2025-02-28 17:47:27 +08:00
Danny Liu
f9292ab4d2
Merge branch 'dev' into logit_bias 2025-02-27 23:51:13 -08:00
dannyl1u
f4bd094128 Merge remote-tracking branch 'origin' into logit_bias 2025-02-27 23:48:22 -08:00
dannyl1u
34e3cb6881 logit bias: update tooltip message 2025-02-27 23:13:09 -08:00