From e3bd439e74d92732107bbce671cbf092ba134ef4 Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Fri, 16 Jan 2026 14:42:34 +0800 Subject: chore: update version to 0.1.24 in Cargo.toml and tauri.conf.json Bumped the version number in both Cargo.toml and tauri.conf.json to reflect the new release version 0.1.24. --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-tauri/tauri.conf.json') diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 060a871..450990a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "dropout", - "version": "0.1.23", + "version": "0.1.24", "identifier": "com.dropout.launcher", "build": { "beforeDevCommand": "pnpm -C ../ui dev", -- cgit v1.2.3-70-g09d2 From df7d5c6af4cb26f23b32865da77bf2d76d0b56f1 Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Fri, 16 Jan 2026 16:44:03 +0800 Subject: chore: update CSP in tauri configuration for enhanced security Modified the content security policy (CSP) in tauri.conf.json to define specific sources for scripts, styles, images, fonts, and connections, improving the application's security posture. --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-tauri/tauri.conf.json') diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 450990a..133d82b 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -20,7 +20,7 @@ } ], "security": { - "csp": null, + "csp": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https: ws: wss:;", "capabilities": ["default"] } }, -- cgit v1.2.3-70-g09d2 From 80e9733a5e4785c44c86b4a09d926868bd5f037e Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Fri, 16 Jan 2026 16:46:49 +0800 Subject: chore: bump version in tauri configuration to 0.1.25 --- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src-tauri/tauri.conf.json') diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 62858cf..9fe91b7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dropout" -version = "0.1.24" +version = "0.1.25" edition = "2021" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 133d82b..e10c258 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "dropout", - "version": "0.1.24", + "version": "0.1.25", "identifier": "com.dropout.launcher", "build": { "beforeDevCommand": "pnpm -C ../ui dev", -- cgit v1.2.3-70-g09d2 From ef59aae63b171353d22aa0c7a684cbf335694b58 Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Fri, 16 Jan 2026 21:03:36 +0800 Subject: chore: bump version to 0.1.26 in Cargo.toml and tauri.conf.json Updated the version number in both Cargo.toml and tauri.conf.json to reflect the new release version 0.1.26. This change ensures consistency across project configuration files. --- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src-tauri/tauri.conf.json') diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 663a5b1..e6a8967 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dropout" -version = "0.1.25" +version = "0.1.26" edition = "2021" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e10c258..dd84fd4 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "dropout", - "version": "0.1.25", + "version": "0.1.26", "identifier": "com.dropout.launcher", "build": { "beforeDevCommand": "pnpm -C ../ui dev", -- cgit v1.2.3-70-g09d2