Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
gewlar committed Feb 21, 2025
2 parents b53380e + 315997e commit 3df16f2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Release to PyPI
on:
push:
branches:
- main # or whatever branch you want to use
- pypi-release

jobs:
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 @@ -1273,7 +1273,7 @@ async def get_manifest_json():
return {
"name": app.state.WEBUI_NAME,
"short_name": app.state.WEBUI_NAME,
"description": "Open WebUI is an open, extensible, user-friendly interface for AI that adapts to your workflow.",
"description": "IntelliChat is an open, extensible, user-friendly interface for AI that adapts to your workflow.",
"start_url": "/",
"display": "standalone",
"background_color": "#343541",
Expand Down
10 changes: 5 additions & 5 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="shortcut icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Open WebUI" />
<meta name="apple-mobile-web-app-title" content="IntelliChat" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"
/>
<meta name="theme-color" content="#171717" />
<meta name="robots" content="noindex,nofollow" />
<meta name="description" content="Open WebUI" />
<meta name="description" content="IntelliChat" />
<link
rel="search"
type="application/opensearchdescription+xml"
title="Open WebUI"
title="IntelliChat"
href="/opensearch.xml"
/>
<script src="/static/loader.js" defer></script>
Expand Down Expand Up @@ -76,7 +76,7 @@
})();
</script>

<title>Open WebUI</title>
<title>IntelliChat</title>

%sveltekit.head%
</head>
Expand All @@ -99,7 +99,7 @@
style="
position: absolute;
width: auto;
height: 6rem;
height: 10rem;
top: 44%;
left: 50%;
transform: translateX(-50%);
Expand Down
4 changes: 2 additions & 2 deletions src/routes/auth/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@
<div class="w-full absolute top-0 left-0 right-0 h-8 drag-region" />
{#if loaded}
<div class="fixed m-10 z-50">
<div class="fixed z-50">
<div class="flex space-x-2">
<div class=" self-center">
<img
crossorigin="anonymous"
src="{WEBUI_BASE_URL}/static/splash.png"
class=" w-6 rounded-full dark:invert"
class="w-40 rounded-full dark:invert"
alt="logo"
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions static/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Open WebUI",
"short_name": "WebUI",
"name": "IntelliChat",
"short_name": "IntelliChat",
"icons": [
{
"src": "/favicon/web-app-manifest-192x192.png",
Expand Down
4 changes: 2 additions & 2 deletions static/opensearch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>Open WebUI</ShortName>
<Description>Search Open WebUI</Description>
<ShortName>IntelliChat</ShortName>
<Description>Search IntelliChat</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">http://localhost:5137/favicon.png</Image>
<Url type="text/html" method="get" template="http://localhost:5137/?q={searchTerms}"/>
Expand Down

0 comments on commit 3df16f2

Please sign in to comment.