forked from Berry-Dash/launcher
Finish launcher except for notifies and something else
This commit is contained in:
@@ -201,7 +201,6 @@ export default function RootLayout ({
|
||||
}
|
||||
|
||||
if (p === 'windows') {
|
||||
if (a === 'x86') return v.platforms.includes('windows-x86')
|
||||
if (a === 'x86_64')
|
||||
return (
|
||||
v.platforms.includes('windows-x86') ||
|
||||
@@ -228,7 +227,6 @@ export default function RootLayout ({
|
||||
}
|
||||
|
||||
if (p === 'windows') {
|
||||
if (a === 'x86') return findUrl('windows-x86')
|
||||
if (a === 'x86_64')
|
||||
return findUrl('windows-x64') || findUrl('windows-x86')
|
||||
if (a === 'aarch64') return findUrl('windows-arm64')
|
||||
@@ -254,7 +252,6 @@ export default function RootLayout ({
|
||||
}
|
||||
|
||||
if (p === 'windows') {
|
||||
if (a === 'x86') return findUrl('windows-x86')
|
||||
if (a === 'x86_64')
|
||||
return findUrl('windows-x64') || findUrl('windows-x86')
|
||||
if (a === 'aarch64') return findUrl('windows-arm64')
|
||||
|
||||
@@ -59,9 +59,6 @@ export default function Installs () {
|
||||
<div key={i.id} className='downloads-entry'>
|
||||
<div className='flex flex-col'>
|
||||
<p className='text-2xl'>{i.name}</p>
|
||||
<p className='text-gray-400 text-md'>
|
||||
Installed {format(new Date(), 'MM/dd/yyyy')}
|
||||
</p>
|
||||
</div>
|
||||
<div className='flex flex-row items-center gap-2'>
|
||||
<Link className='button' href={'/game?id=' + i.id}>
|
||||
|
||||
Reference in New Issue
Block a user