Compare commits

...

1 Commits

4 changed files with 3 additions and 6 deletions

2
src-tauri/Cargo.lock generated
View File

@ -1094,7 +1094,7 @@ dependencies = [
[[package]]
name = "ezpplauncher"
version = "3.0.0-beta.5"
version = "3.0.0"
dependencies = [
"discord-rich-presence",
"hardware-id",

View File

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

View File

@ -27,9 +27,6 @@ pub fn run() {
{
builder = builder.plugin(tauri_plugin_single_instance::init(|app, _args, _cwd| {
let app_window = app.get_webview_window("main").expect("no main window");
app_window
.set_always_on_top(true)
.expect("failed to set always on top");
app_window.set_focus().expect("failed to focus");
}));
}

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ezpplauncher",
"version": "3.0.0-beta.5",
"version": "3.0.0",
"identifier": "farm.ezpp.launcher",
"build": {
"beforeDevCommand": "bun run vite:dev",