diff --git a/src/app/componets/Setting.tsx b/src/app/componets/Setting.tsx index 17d8cce..ed1c18d 100644 --- a/src/app/componets/Setting.tsx +++ b/src/app/componets/Setting.tsx @@ -3,9 +3,15 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faCheck } from '@fortawesome/free-solid-svg-icons' import { SettingProps } from '../types/SettingProps' -export function Setting ({ label, value, onChange, className }: SettingProps) { +export function Setting ({ + label, + value, + onChange, + className, + title +}: SettingProps) { return ( -
Installed{' '}
@@ -133,6 +134,7 @@ export default function Installs () {
setShowPopup(true)
setFadeOut(false)
}}
+ title='Click to view version info'
>
View Info
@@ -147,6 +149,7 @@ export default function Installs () {
setShowPopup(true)
setFadeOut(false)
}}
+ title='Click to manage this version install'
>
Manage
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d2a03e7..d8a6f4d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -522,6 +522,11 @@ export default function RootLayout ({
: [...prev, v.id]
)
}}
+ title={
+ selectedVersionList.includes(v.id)
+ ? 'This version will be downloaded. Click to remove from the list of versions that will be downloaded.'
+ : 'This version will NOT be downloaded. Click to add from the list of versions that will be downloaded.'
+ }
>
{selectedVersionList.includes(v.id) ? (
<>
@@ -541,6 +546,7 @@ export default function RootLayout ({
setViewingInfoFromDownloads(true)
setPopupMode(3)
}}
+ title='Click to view version info'
>
{(() => { const data = getVersionsAmountData(v.id) @@ -574,6 +583,7 @@ export default function RootLayout ({
{(() => {
@@ -110,6 +111,7 @@ export default function Installs () {
hoveredIds.includes(i.id) ? 'btntheme3' : 'btntheme2'
}`}
hidden={!i.official}
+ title='This game is official.'
>
Official
@@ -119,6 +121,11 @@ export default function Installs () { hoveredIds.includes(i.id) ? 'btntheme3' : 'btntheme2' }`} hidden={i.official} + title={ + i.verified + ? 'This game is verified to be safe' + : 'This game is not verified to be save. Proceed with caution.' + } >