Skip to content
Open
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
4 changes: 1 addition & 3 deletions backend/open_webui/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@

log.setLevel(SRC_LOG_LEVELS["CONFIG"])

WEBUI_NAME = os.environ.get("WEBUI_NAME", "Open WebUI")
if WEBUI_NAME != "Open WebUI":
WEBUI_NAME += " (Open WebUI)"
WEBUI_NAME = os.environ.get("WEBUI_NAME", "Pixelsize")

WEBUI_FAVICON_URL = "https://openwebui.com/favicon.png"

Expand Down
8 changes: 4 additions & 4 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Open WebUI" />
<meta name="apple-mobile-web-app-title" content="Pixelsize" />

<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
<meta
Expand All @@ -16,11 +16,11 @@
/>
<meta name="theme-color" content="#171717" />
<meta name="robots" content="noindex,nofollow" />
<meta name="description" content="Open WebUI" />
<meta name="description" content="Pixelsize" />
<link
rel="search"
type="application/opensearchdescription+xml"
title="Open WebUI"
title="Pixelsize"
href="/opensearch.xml"
/>
<script src="/static/loader.js" defer></script>
Expand Down Expand Up @@ -101,7 +101,7 @@
})();
</script>

<title>Open WebUI</title>
<title>Pixelsize</title>

%sveltekit.head%
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { browser, dev } from '$app/environment';
// import { version } from '../../package.json';

export const APP_NAME = 'Open WebUI';
export const APP_NAME = 'Pixelsize';

export const WEBUI_HOSTNAME = browser ? (dev ? `${location.hostname}:8080` : ``) : '';
export const WEBUI_BASE_URL = browser ? (dev ? `http://${WEBUI_HOSTNAME}` : ``) : ``;
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>Pixelsize</ShortName>
<Description>Search Pixelsize</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
4 changes: 2 additions & 2 deletions static/static/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Open WebUI",
"short_name": "WebUI",
"name": "Pixelsize",
"short_name": "Pixelsize",
"icons": [
{
"src": "/static/web-app-manifest-192x192.png",
Expand Down