Finish launcher except for notifies and something else

This commit is contained in:
2025-10-31 21:54:28 -07:00
parent 228c639f40
commit b51dcbf770
7 changed files with 4 additions and 31 deletions

View File

@@ -12,7 +12,7 @@ crate-type = ["staticlib", "cdylib", "rlib"]
tauri-build = { version = "2.5.1", features = [] } tauri-build = { version = "2.5.1", features = [] }
[dependencies] [dependencies]
tauri = { version = "2.9.2", features = [] } tauri = { version = "2.9.2", features = ["macos-private-api"] }
tauri-plugin-opener = "2.5.2" tauri-plugin-opener = "2.5.2"
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145" serde_json = "1.0.145"

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIconFile</key>
<string>Berry Dash Launcher</string>
<key>CFBundleIconName</key>
<string>Berry Dash Launcher</string>
</dict>
</plist>

View File

@@ -24,16 +24,6 @@
} }
}, },
"bundle": { "bundle": {
"active": true, "active": false
"targets": [
"appimage",
"deb",
"rpm"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png"
]
} }
} }

View File

@@ -28,7 +28,7 @@
}, },
"bundle": { "bundle": {
"active": true, "active": true,
"targets": "dmg", "targets": ["app"],
"macOS": { "macOS": {
"minimumSystemVersion": "13.7.8" "minimumSystemVersion": "13.7.8"
}, },

View File

@@ -29,8 +29,7 @@
} }
}, },
"bundle": { "bundle": {
"active": true, "active": false,
"targets": "msi",
"icon": [ "icon": [
"icons/icon.ico" "icons/icon.ico"
] ]

View File

@@ -201,7 +201,6 @@ export default function RootLayout ({
} }
if (p === 'windows') { if (p === 'windows') {
if (a === 'x86') return v.platforms.includes('windows-x86')
if (a === 'x86_64') if (a === 'x86_64')
return ( return (
v.platforms.includes('windows-x86') || v.platforms.includes('windows-x86') ||
@@ -228,7 +227,6 @@ export default function RootLayout ({
} }
if (p === 'windows') { if (p === 'windows') {
if (a === 'x86') return findUrl('windows-x86')
if (a === 'x86_64') if (a === 'x86_64')
return findUrl('windows-x64') || findUrl('windows-x86') return findUrl('windows-x64') || findUrl('windows-x86')
if (a === 'aarch64') return findUrl('windows-arm64') if (a === 'aarch64') return findUrl('windows-arm64')
@@ -254,7 +252,6 @@ export default function RootLayout ({
} }
if (p === 'windows') { if (p === 'windows') {
if (a === 'x86') return findUrl('windows-x86')
if (a === 'x86_64') if (a === 'x86_64')
return findUrl('windows-x64') || findUrl('windows-x86') return findUrl('windows-x64') || findUrl('windows-x86')
if (a === 'aarch64') return findUrl('windows-arm64') if (a === 'aarch64') return findUrl('windows-arm64')

View File

@@ -59,9 +59,6 @@ export default function Installs () {
<div key={i.id} className='downloads-entry'> <div key={i.id} className='downloads-entry'>
<div className='flex flex-col'> <div className='flex flex-col'>
<p className='text-2xl'>{i.name}</p> <p className='text-2xl'>{i.name}</p>
<p className='text-gray-400 text-md'>
Installed {format(new Date(), 'MM/dd/yyyy')}
</p>
</div> </div>
<div className='flex flex-row items-center gap-2'> <div className='flex flex-row items-center gap-2'>
<Link className='button' href={'/game?id=' + i.id}> <Link className='button' href={'/game?id=' + i.id}>