1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-23 19:08:25 +02:00

Add docs link

This commit is contained in:
Nayam Amarshe 2024-04-25 01:58:03 +05:30
parent 07915de1ca
commit 3d1ae5540c
4 changed files with 12 additions and 17 deletions

View File

@ -105,9 +105,9 @@ Upscayl should be available on the software listings of most Linux operating sys
2. Download the `.exe` file.
3. Double click exe file, wait for installation, profit.
# 👨‍🏫 Wiki - Tutorials and Guides
# 👨‍🏫 Documentation - Tutorials and Guides
Check out our Wiki [here](https://github.com/upscayl/upscayl/wiki/Guide).
Check out our Documentation [here](https://docs.upscayl.org/).
- [Try out even more new models!](https://github.com/upscayl/custom-models)
- [Convert your own models](https://github.com/upscayl/upscayl/wiki/%F0%9F%96%A5%EF%B8%8F-Model-Conversion---Create-more-AI-models!)

View File

@ -9,8 +9,9 @@ export function GpuIdInput({ gpuId, handleGpuIdChange }) {
return (
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">GPU ID</p>
<p className="text-xs text-base-content/80">Please
read the Upscayl Wiki for more information.</p>
<p className="text-xs text-base-content/80">
Please read the Upscayl Documentation for more information.
</p>
{window.electron.platform === "win" && (
<p className="text-xs text-base-content/80">
Enable performance mode on Windows for better results.
@ -19,7 +20,7 @@ export function GpuIdInput({ gpuId, handleGpuIdChange }) {
<input
type="text"
placeholder="Type here"
className="input-bordered input w-full max-w-xs"
className="input input-bordered w-full max-w-xs"
value={gpuId}
onChange={handleGpuIdChange}
/>

View File

@ -186,7 +186,7 @@ function SettingsTab({
<p>Having issues?</p>
<a
className="btn btn-primary"
href="https://github.com/upscayl/upscayl/wiki/"
href="https://docs.upscayl.org/"
target="_blank"
>
🙏 GET HELP

View File

@ -138,7 +138,7 @@ const Home = () => {
if (data.includes("Invalid GPU")) {
toast({
title: "GPU Error",
description: `Ran into an issue with the GPU. Please read the wiki for troubleshooting! (${data})`,
description: `Ran into an issue with the GPU. Please read the docs for troubleshooting! (${data})`,
action: (
<div className="flex flex-col gap-2">
<ToastAction
@ -149,11 +149,8 @@ const Home = () => {
>
Copy Error
</ToastAction>
<a
href="https://github.com/upscayl/upscayl/wiki/"
target="_blank"
>
<ToastAction altText="Open Wiki">Troubleshoot</ToastAction>
<a href="https://docs.upscayl.org/" target="_blank">
<ToastAction altText="Open Docs">Troubleshoot</ToastAction>
</a>
</div>
),
@ -174,11 +171,8 @@ const Home = () => {
>
Copy Error
</ToastAction>
<a
href="https://github.com/upscayl/upscayl/wiki/"
target="_blank"
>
<ToastAction altText="Open Wiki">Troubleshoot</ToastAction>
<a href="https://docs.upscayl.org/" target="_blank">
<ToastAction altText="Open Docs">Troubleshoot</ToastAction>
</a>
</div>
),