Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG_EXTRA.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.25.2] - 2025.08.26

### Changed

- Github 仓库迁移

## [0.6.25.1] - 2025.08.22

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

## 部署方式

部署二开版本只需要替换镜像和版本,其他的部署与官方版本没有差别,版本号请在 [Release](https://github.com/U8F69/open-webui/releases/latest) 中查看
部署二开版本只需要替换镜像和版本,其他的部署与官方版本没有差别,版本号请在 [Release](https://github.com/ovinc-cn/openwebui/releases/latest) 中查看

```
ghcr.io/u8f69/open-webui:<版本号>
ghcr.io/ovinc-cn/openwebui:<版本号>
```

## 拓展特性
Expand Down
2 changes: 1 addition & 1 deletion backend/open_webui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ async def get_app_latest_release_version(user=Depends(get_verified_user)):
timeout = aiohttp.ClientTimeout(total=1)
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
async with session.get(
"https://api.github.com/repos/U8F69/open-webui/releases/latest",
"https://api.github.com/repos/ovinc-cn/openwebui/releases/latest",
ssl=AIOHTTP_CLIENT_SESSION_SSL,
) as response:
response.raise_for_status()
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "open-webui",
"version": "0.6.25.1",
"version": "0.6.25.2",
"private": true,
"scripts": {
"dev": "npm run pyodide:fetch && vite dev --host",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/components/admin/Settings/General.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@

{#if $config?.features?.enable_version_update_check}
<a
href="https://github.com/U8F69/open-webui/releases/tag/v{version.latest}"
href="https://github.com/ovinc-cn/openwebui/releases/tag/v{version.latest}"
target="_blank"
>
{updateAvailable === null
Expand Down Expand Up @@ -214,10 +214,10 @@
/>
</a>

<a href="https://github.com/U8F69/open-webui" target="_blank">
<a href="https://github.com/ovinc-cn/openwebui" target="_blank">
<img
alt="Github Repo"
src="https://img.shields.io/github/stars/U8F69/open-webui?style=social&label=Star us on Github"
src="https://img.shields.io/github/stars/ovinc-cn/openwebui?style=social&label=Star us on Github"
/>
</a>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/lib/components/chat/Settings/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<div>
{$WEBUI_NAME}
{$i18n.t('Version')}
(<a href="https://github.com/U8F69/open-webui" target="_blank" style="color: unset"
>{$i18n.t('Second revision by U8F69')}</a
(<a href="https://github.com/ovinc-cn/openwebui" target="_blank" style="color: unset"
>{$i18n.t('Second revision by OVINC CN')}</a
>)
</div>
</div>
Expand All @@ -65,7 +65,7 @@

{#if $config?.features?.enable_version_update_check}
<a
href="https://github.com/U8F69/open-webui/releases/tag/v{version.latest}"
href="https://github.com/ovinc-cn/openwebui/releases/tag/v{version.latest}"
target="_blank"
>
{updateAvailable === null
Expand Down Expand Up @@ -140,10 +140,10 @@
/>
</a>

<a href="https://github.com/U8F69/open-webui" target="_blank">
<a href="https://github.com/ovinc-cn/openwebui" target="_blank">
<img
alt="Github Repo"
src="https://img.shields.io/github/stars/U8F69/open-webui?style=social&label=Star us on Github"
src="https://img.shields.io/github/stars/ovinc-cn/openwebui?style=social&label=Star us on Github"
/>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/layout/Sidebar/UserMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
on:click={() => {
show = false;
}}
href="https://github.com/U8F69/releases"
href="https://github.com/ovinc-cn/openwebui/releases"
>
<Map className="size-5" />
<div class="flex items-center">{$i18n.t('Releases')}</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/layout/UpdateInfoToast.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
LATEST_VERSION: version.latest
})}

<a href="https://github.com/U8F69/open-webui/releases" target="_blank" class="underline">
<a href="https://github.com/ovinc-cn/openwebui/releases" target="_blank" class="underline">
{$i18n.t('Update for the latest features and improvements.')}</a
>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/i18n/locales/en-US/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1352,7 +1352,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web...": "",
"Searxng Query URL": "",
"Second revision by U8F69": "",
"Second revision by OVINC CN": "",
"See readme.md for instructions": "",
"See what's new": "",
"Seed": "",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/i18n/locales/zh-CN/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "检索有关 \"{{searchQuery}}\" 的知识中",
"Searching the web...": "正在搜索网络...",
"Searxng Query URL": "Searxng 查询 URL",
"Second revision by U8F69": "U8F69 二开版本",
"Second revision by OVINC CN": "OVINC CN 二开版本",
"See readme.md for instructions": "查看 readme.md 以获取说明",
"See what's new": "查阅最新更新内容",
"Seed": "种子 (Seed)",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/i18n/locales/zh-TW/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "正在搜尋知識庫中的「{{searchQuery}}」",
"Searching the web...": "正在搜尋網路...",
"Searxng Query URL": "Searxng 查詢 URL",
"Second revision by U8F69": "",
"Second revision by OVINC CN": "",
"See readme.md for instructions": "檢視 readme.md 以取得說明",
"See what's new": "檢視新功能",
"Seed": "種子值",
Expand Down
Loading