chore: bump version to 3.0.6 in package.json, Cargo.toml, Cargo.lock, and tauri.conf.json; remove unused styles in Launch.svelte

This commit is contained in:
2025-12-06 13:01:59 +01:00
parent a548dc875e
commit d6bf3ccb3c
5 changed files with 5 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "ezpplauncher",
"version": "3.0.5",
"version": "3.0.6",
"description": "",
"type": "module",
"scripts": {

2
src-tauri/Cargo.lock generated
View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "ezpplauncher"
version = "3.0.5"
version = "3.0.6"
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.5",
"version": "3.0.6",
"identifier": "farm.EZPPFarm.Launcher",
"mainBinaryName": "ezpplauncher",
"build": {

View File

@@ -1284,27 +1284,3 @@
{/if}
</div>
</div>
<style>
.launch {
margin-top: 24px;
padding: 16px 48px;
font-size: 1.1rem;
font-weight: 600;
background: linear-gradient(135deg, #c7a6ff, #9f7cff);
color: #120a1f;
border-radius: 14px;
box-shadow: 0 8px 30px rgba(160, 120, 255, 0.4);
transition:
transform 120ms ease,
box-shadow 120ms ease;
}
.launch:hover {
transform: translateY(-1px);
box-shadow: 0 12px 42px rgba(160, 120, 255, 0.6);
}
</style>