diff --git a/UPDATELOG.md b/UPDATELOG.md index f6065289..344300c5 100644 --- a/UPDATELOG.md +++ b/UPDATELOG.md @@ -1,3 +1,10 @@ +## v0.2.1 + +- added headers "announce-url", "update-always" +- added a check for the presence of a profile, if it already exists, an update will be performed +- fixed processing of links for displaying telegram icon on the main page +- added profile update button on the main page + ## v0.2 - added handlers for "Announe", "Support-Url", "New-Sub-Domain", "Profile-Title" headers: diff --git a/package.json b/package.json index bc8a3ed3..58b773c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clash-verge", - "version": "0.2.0", + "version": "0.2.1", "license": "GPL-3.0-only", "scripts": { "dev": "cross-env RUST_BACKTRACE=1 tauri dev -f verge-dev", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5dc4650d..4f75aeae 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1061,7 +1061,7 @@ dependencies = [ [[package]] name = "clash-verge" -version = "0.2.0" +version = "0.2.1" dependencies = [ "ab_glyph", "aes-gcm", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index af34bb8c..e9a6c685 100755 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clash-verge" -version = "0.2.0" +version = "0.2.1" description = "clash verge" authors = ["zzzgydi", "wonfen", "MystiPanda", "coolcoala"] license = "GPL-3.0-only" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6ca65ed1..2f85736a 100755 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,5 +1,5 @@ { - "version": "0.2.0", + "version": "0.2.1", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "bundle": { "active": true,