2 Commits
3.0.7 ... 3.0.8

4 changed files with 6 additions and 6 deletions

2
src-tauri/Cargo.lock generated
View File

@@ -1012,7 +1012,7 @@ dependencies = [
[[package]]
name = "ezpplauncher"
version = "3.0.7"
version = "3.0.8"
dependencies = [
"base64 0.22.1",
"discord-rich-presence",

View File

@@ -1,6 +1,6 @@
[package]
name = "ezpplauncher"
version = "3.0.7"
version = "3.0.8"
description = "EZPPLauncher redefined."
authors = ["HorizonCode"]
edition = "2024"

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "EZPPLauncher",
"version": "3.0.7",
"version": "3.0.8",
"identifier": "farm.EZPPFarm.Launcher",
"mainBinaryName": "ezpplauncher",
"build": {

View File

@@ -181,7 +181,7 @@
};
const launch = async () => {
umami.track('app_launch_osu');
if ($trackingEnabled) umami.track('app_launch_osu');
const osuRunning = await isOsuRunning();
if (osuRunning) {
toast.error('Hold on a second!', {
@@ -485,7 +485,7 @@
}
await runOsu(osuPath, true);
umami.track('app_exit_osu');
if ($trackingEnabled) umami.track('app_exit_osu');
launchInfo = 'Cleaning up...';
await getCurrentWindow().show();
if (presenceUpdater) {
@@ -536,7 +536,7 @@
description: 'Failed to launch.',
});
launching.set(false);
umami.track('app_launch_fail', { error: err });
if ($trackingEnabled) umami.track('app_launch_fail', { error: err });
}
};