1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01: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. 2. Download the `.exe` file.
3. Double click exe file, wait for installation, profit. 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) - [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!) - [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 ( return (
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<p className="text-sm font-medium">GPU ID</p> <p className="text-sm font-medium">GPU ID</p>
<p className="text-xs text-base-content/80">Please <p className="text-xs text-base-content/80">
read the Upscayl Wiki for more information.</p> Please read the Upscayl Documentation for more information.
</p>
{window.electron.platform === "win" && ( {window.electron.platform === "win" && (
<p className="text-xs text-base-content/80"> <p className="text-xs text-base-content/80">
Enable performance mode on Windows for better results. Enable performance mode on Windows for better results.
@ -19,7 +20,7 @@ export function GpuIdInput({ gpuId, handleGpuIdChange }) {
<input <input
type="text" type="text"
placeholder="Type here" placeholder="Type here"
className="input-bordered input w-full max-w-xs" className="input input-bordered w-full max-w-xs"
value={gpuId} value={gpuId}
onChange={handleGpuIdChange} onChange={handleGpuIdChange}
/> />

View File

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

View File

@ -138,7 +138,7 @@ const Home = () => {
if (data.includes("Invalid GPU")) { if (data.includes("Invalid GPU")) {
toast({ toast({
title: "GPU Error", 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: ( action: (
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<ToastAction <ToastAction
@ -149,11 +149,8 @@ const Home = () => {
> >
Copy Error Copy Error
</ToastAction> </ToastAction>
<a <a href="https://docs.upscayl.org/" target="_blank">
href="https://github.com/upscayl/upscayl/wiki/" <ToastAction altText="Open Docs">Troubleshoot</ToastAction>
target="_blank"
>
<ToastAction altText="Open Wiki">Troubleshoot</ToastAction>
</a> </a>
</div> </div>
), ),
@ -174,11 +171,8 @@ const Home = () => {
> >
Copy Error Copy Error
</ToastAction> </ToastAction>
<a <a href="https://docs.upscayl.org/" target="_blank">
href="https://github.com/upscayl/upscayl/wiki/" <ToastAction altText="Open Docs">Troubleshoot</ToastAction>
target="_blank"
>
<ToastAction altText="Open Wiki">Troubleshoot</ToastAction>
</a> </a>
</div> </div>
), ),