Merge pull request #12 from Frigyes06/0.5.2-release-prep

0.5.2 release prep
This commit is contained in:
Frigyes06 2023-10-26 19:26:18 -07:00 committed by GitHub
commit e446adfa80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 49 deletions

View file

@ -8,11 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The sections should follow the order `Apps`, `Added`, `Changed`, `Fixed`, `Packaging`
and `Removed`.
## [0.6] - Unreleased
## [0.5.2] - Unreleased
**WARNING: Settings specification has changed. Previous user settings will be erased**.
**THIS IS AN UNOFFICIAL FORK**
### Added
- All of AnonymousWP's patches. This release notes will probably be restarted as issue counter is reset on fork.
- [[#374](https://github.com/0x192/universal-android-debloater/pull/374)] **Device-specific persistent configuration:** Some settings are now device-specific which means you can maintain different settings across several devices.
- [[#447](https://github.com/0x192/universal-android-debloater/pull/447)] **Backup/Restore the state of a device:** Quick and easy way to save the state of all the system apps on a device and restore it.

45
Cargo.lock generated
View file

@ -830,7 +830,7 @@ version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2"
dependencies = [
"toml 0.5.11",
"toml",
]
[[package]]
@ -2483,7 +2483,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
"toml_edit 0.19.15",
"toml_edit",
]
[[package]]
@ -2856,15 +2856,6 @@ dependencies = [
"serde",
]
[[package]]
name = "serde_spanned"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
dependencies = [
"serde",
]
[[package]]
name = "servo-fontconfig"
version = "0.5.1"
@ -3190,26 +3181,11 @@ dependencies = [
"serde",
]
[[package]]
name = "toml"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3efaf127c78d5339cc547cce4e4d973bd5e4f56e949a06d091c082ebeef2f800"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.5",
]
[[package]]
name = "toml_datetime"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
@ -3222,19 +3198,6 @@ dependencies = [
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.20.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "782bf6c2ddf761c1e7855405e8975472acf76f7f36d0d4328bd3b7a2fae12a85"
dependencies = [
"indexmap 2.0.2",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "ttf-parser"
version = "0.19.2"
@ -3254,7 +3217,7 @@ dependencies = [
[[package]]
name = "uad_gui"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"chrono",
"dirs",
@ -3276,7 +3239,7 @@ dependencies = [
"serde_json",
"static_init",
"tar",
"toml 0.8.5",
"toml",
"ureq",
]

View file

@ -1,11 +1,11 @@
[package]
name = "uad_gui"
description = "A cross-platform GUI debloater for android devices"
version = "0.5.1"
version = "0.5.2"
authors = ["w1nst0n"]
license = "GPL-3.0"
homepage = "https://github.com/0x192/universal-android-debloater"
repository = "https://github.com/0x192/universal-android-debloater"
homepage = "https://github.com/Frigyes06/universal-android-debloater"
repository = "https://github.com/Frigyes06/universal-android-debloater"
readme = "README.md"
keywords = ["debloater", "android", "adb", "privacy", "bloatware"]
categories = ["gui"]

View file

@ -167,13 +167,13 @@ pub fn get_latest_release() -> Result<Option<Release>, ()> {
}
// UAD only has pre-releases so we can't use
// https://api.github.com/repos/0x192/universal-android-debloater/releases/latest
// https://api.github.com/repos/Frigyes06/universal-android-debloater/releases/latest
// to only get the latest release
#[cfg(feature = "self-update")]
pub fn get_latest_release() -> Result<Option<Release>, ()> {
debug!("Checking for UAD update");
match ureq::get("https://api.github.com/repos/0x192/universal-android-debloater/releases")
match ureq::get("https://api.github.com/repos/Frigyes06/universal-android-debloater/releases")
.call()
{
Ok(res) => {

View file

@ -100,14 +100,14 @@ impl About {
let website_btn = button("Github page")
.on_press(Message::UrlPressed(PathBuf::from(
"https://github.com/0x192/universal-android-debloater",
"https://github.com/Frigyes06/universal-android-debloater",
)))
.padding(5)
.style(style::Button::Primary);
let issue_btn = button("Have an issue?")
.on_press(Message::UrlPressed(PathBuf::from(
"https://github.com/0x192/universal-android-debloater/issues",
"https://github.com/Frigyes06/universal-android-debloater/issues",
)))
.padding(5)
.style(style::Button::Primary);