diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index ae22539..bc8d994 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -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"
diff --git a/src-tauri/Info.plist b/src-tauri/Info.plist
deleted file mode 100644
index bbcd9c9..0000000
--- a/src-tauri/Info.plist
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- CFBundleIconFile
- Berry Dash Launcher
- CFBundleIconName
- Berry Dash Launcher
-
-
\ No newline at end of file
diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json
index cfec108..b79d1d3 100644
--- a/src-tauri/tauri.linux.conf.json
+++ b/src-tauri/tauri.linux.conf.json
@@ -24,16 +24,6 @@
}
},
"bundle": {
- "active": true,
- "targets": [
- "appimage",
- "deb",
- "rpm"
- ],
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png"
- ]
+ "active": false
}
}
diff --git a/src-tauri/tauri.macos.conf.json b/src-tauri/tauri.macos.conf.json
index 70dd84e..1187c5d 100644
--- a/src-tauri/tauri.macos.conf.json
+++ b/src-tauri/tauri.macos.conf.json
@@ -28,7 +28,7 @@
},
"bundle": {
"active": true,
- "targets": "dmg",
+ "targets": ["app"],
"macOS": {
"minimumSystemVersion": "13.7.8"
},
diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json
index 85ca532..29e8ca2 100644
--- a/src-tauri/tauri.windows.conf.json
+++ b/src-tauri/tauri.windows.conf.json
@@ -29,8 +29,7 @@
}
},
"bundle": {
- "active": true,
- "targets": "msi",
+ "active": false,
"icon": [
"icons/icon.ico"
]
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 926d82f..0c41b60 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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')
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 69ff19a..7918332 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -59,9 +59,6 @@ export default function Installs () {
{i.name}
-
- Installed {format(new Date(), 'MM/dd/yyyy')}
-