Finish launcher except for notifies and something else
This commit is contained in:
@@ -12,7 +12,7 @@ crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
tauri-build = { version = "2.5.1", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri = { version = "2.9.2", features = [] }
|
||||
tauri = { version = "2.9.2", features = ["macos-private-api"] }
|
||||
tauri-plugin-opener = "2.5.2"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.145"
|
||||
|
||||
@@ -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>
|
||||
@@ -24,16 +24,6 @@
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": [
|
||||
"appimage",
|
||||
"deb",
|
||||
"rpm"
|
||||
],
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
"icons/128x128@2x.png"
|
||||
]
|
||||
"active": false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "dmg",
|
||||
"targets": ["app"],
|
||||
"macOS": {
|
||||
"minimumSystemVersion": "13.7.8"
|
||||
},
|
||||
|
||||
@@ -29,8 +29,7 @@
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "msi",
|
||||
"active": false,
|
||||
"icon": [
|
||||
"icons/icon.ico"
|
||||
]
|
||||
|
||||
@@ -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