Skip to content

Commit

Permalink
Merge pull request #12 from Frigyes06/0.5.2-release-prep
Browse files Browse the repository at this point in the history
0.5.2 release prep
  • Loading branch information
Frigyes06 authored Oct 27, 2023
2 parents f539c9b + 85eb22c commit e446adf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 49 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
45 changes: 4 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions src/core/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
4 changes: 2 additions & 2 deletions src/gui/views/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e446adf

Please sign in to comment.