Skip to content

Commit 3df16f2

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents b53380e + 315997e commit 3df16f2

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

.github/workflows/release-pypi.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Release to PyPI
33
on:
44
push:
55
branches:
6-
- main # or whatever branch you want to use
76
- pypi-release
87

98
jobs:

backend/open_webui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ async def get_manifest_json():
12731273
return {
12741274
"name": app.state.WEBUI_NAME,
12751275
"short_name": app.state.WEBUI_NAME,
1276-
"description": "Open WebUI is an open, extensible, user-friendly interface for AI that adapts to your workflow.",
1276+
"description": "IntelliChat is an open, extensible, user-friendly interface for AI that adapts to your workflow.",
12771277
"start_url": "/",
12781278
"display": "standalone",
12791279
"background_color": "#343541",

src/app.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
66
<link rel="shortcut icon" href="/favicon/favicon.ico" />
77
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
8-
<meta name="apple-mobile-web-app-title" content="Open WebUI" />
8+
<meta name="apple-mobile-web-app-title" content="IntelliChat" />
99
<link rel="manifest" href="/favicon/site.webmanifest" />
1010
<meta
1111
name="viewport"
1212
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"
1313
/>
1414
<meta name="theme-color" content="#171717" />
1515
<meta name="robots" content="noindex,nofollow" />
16-
<meta name="description" content="Open WebUI" />
16+
<meta name="description" content="IntelliChat" />
1717
<link
1818
rel="search"
1919
type="application/opensearchdescription+xml"
20-
title="Open WebUI"
20+
title="IntelliChat"
2121
href="/opensearch.xml"
2222
/>
2323
<script src="/static/loader.js" defer></script>
@@ -76,7 +76,7 @@
7676
})();
7777
</script>
7878

79-
<title>Open WebUI</title>
79+
<title>IntelliChat</title>
8080

8181
%sveltekit.head%
8282
</head>
@@ -99,7 +99,7 @@
9999
style="
100100
position: absolute;
101101
width: auto;
102-
height: 6rem;
102+
height: 10rem;
103103
top: 44%;
104104
left: 50%;
105105
transform: translateX(-50%);

src/routes/auth/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,13 +150,13 @@
150150
<div class="w-full absolute top-0 left-0 right-0 h-8 drag-region" />
151151
152152
{#if loaded}
153-
<div class="fixed m-10 z-50">
153+
<div class="fixed z-50">
154154
<div class="flex space-x-2">
155155
<div class=" self-center">
156156
<img
157157
crossorigin="anonymous"
158158
src="{WEBUI_BASE_URL}/static/splash.png"
159-
class=" w-6 rounded-full dark:invert"
159+
class="w-40 rounded-full dark:invert"
160160
alt="logo"
161161
/>
162162
</div>

static/favicon/site.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Open WebUI",
3-
"short_name": "WebUI",
2+
"name": "IntelliChat",
3+
"short_name": "IntelliChat",
44
"icons": [
55
{
66
"src": "/favicon/web-app-manifest-192x192.png",

static/opensearch.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
2-
<ShortName>Open WebUI</ShortName>
3-
<Description>Search Open WebUI</Description>
2+
<ShortName>IntelliChat</ShortName>
3+
<Description>Search IntelliChat</Description>
44
<InputEncoding>UTF-8</InputEncoding>
55
<Image width="16" height="16" type="image/x-icon">http://localhost:5137/favicon.png</Image>
66
<Url type="text/html" method="get" template="http://localhost:5137/?q={searchTerms}"/>

0 commit comments

Comments
 (0)