From 1518214b1767f0c09137814906192f0a43d54b91 Mon Sep 17 00:00:00 2001 From: jxdv Date: Fri, 3 Nov 2023 10:47:47 +0100 Subject: [PATCH 1/5] edit toml file --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ed863c45..2efc5e10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,14 @@ name = "uad_gui" description = "A cross-platform GUI debloater for android devices" version = "0.6.0" -authors = ["w1nst0n"] +authors = ["Universal-Debloater-Alliance"] license = "GPL-3.0" 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"] -edition = "2021" +edition = "2023" [features] default = ["wgpu", "self-update"] From 5e05c04b61558220343a2d928e500c31a02c1243 Mon Sep 17 00:00:00 2001 From: jxdv Date: Fri, 3 Nov 2023 10:49:32 +0100 Subject: [PATCH 2/5] update links in README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38d500d7..24c1edb4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ That's the main point, right? - [x] Multi-device support: you can connect multiple phones at the same time - [x] All your actions are logged, so you never forget what you've done -NB : System apps cannot truly be uninstalled without root (see the [FAQ](https://github.com/0x192/universal-android-debloater/wiki/FAQ)) +NB : System apps cannot truly be uninstalled without root (see the [FAQ](https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki/FAQ)) ## Universal Debloat Lists @@ -79,7 +79,7 @@ NB : System apps cannot truly be uninstalled without root (see the [FAQ](https:/ ## How to use it -- **Read the [FAQ](https://github.com/0x192/universal-android-debloater/wiki/FAQ)!** +- **Read the [FAQ](https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki/FAQ)!** - **Do a proper backup of your data! You can never be too careful!** - Enable _Developer Options_ on your smartphone. - Turn on _USB Debugging_ from the developer panel. @@ -153,7 +153,7 @@ NB : System apps cannot truly be uninstalled without root (see the [FAQ](https:/

-- Download the latest release of UAD GUI for your Operating System [here](https://github.com/0x192/universal-android-debloater/releases). Take the `opengl` version only if the default version (with a Vulkan backend) doesn't launch. +- Download the latest release of UAD GUI for your Operating System [here](https://github.com/Universal-Debloater-Alliance/universal-android-debloater/releases). Take the `opengl` version only if the default version (with a Vulkan backend) doesn't launch. **NOTE:** Chinese phones users may need to use the AOSP list for removing some stock apps because those Chinese manufacturers (especially Xiaomi and Huawei) have been @@ -167,7 +167,7 @@ an update to your phone as some _uninstalled_ system apps could be reinstalled. Hey-hey-hey! Don't go away so fast! This is a community project. That means I need you! I'm sure you want to make this project better anyway. -==> [How to contribute](https://github.com/0x192/universal-android-debloater/wiki) +==> [How to contribute](https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki) ## Special thanks From ac1dedee0a63cf52d51133fdff667071f8ce9bca Mon Sep 17 00:00:00 2001 From: jxdv Date: Fri, 3 Nov 2023 10:51:00 +0100 Subject: [PATCH 3/5] update links in core --- src/core/sync.rs | 2 +- src/core/uad_lists.rs | 2 +- src/core/update.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/sync.rs b/src/core/sync.rs index b9601179..94d47f7c 100644 --- a/src/core/sync.rs +++ b/src/core/sync.rs @@ -204,7 +204,7 @@ pub fn apply_pkg_state_commands( selected_user: &User, phone: &Phone, ) -> Vec { - // https://github.com/0x192/universal-android-debloater/wiki/ADB-reference + // https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki/ADB-reference // ALWAYS PUT THE COMMAND THAT CHANGES THE PACKAGE STATE FIRST! let commands = match wanted_state { PackageState::Enabled => { diff --git a/src/core/uad_lists.rs b/src/core/uad_lists.rs index b596b139..cf09d06f 100644 --- a/src/core/uad_lists.rs +++ b/src/core/uad_lists.rs @@ -179,7 +179,7 @@ pub fn load_debloat_lists(remote: bool) -> (Result = if remote { retry(Fixed::from_millis(1000).take(60), || { match ureq::get( - "https://raw.githubusercontent.com/Frigyes06/universal-android-debloater/\ + "https://raw.githubusercontent.com/Universal-Debloater-Alliance/universal-android-debloater/\ main/resources/assets/uad_lists.json", ) .call() diff --git a/src/core/update.rs b/src/core/update.rs index 6fb7f866..8a948bd5 100644 --- a/src/core/update.rs +++ b/src/core/update.rs @@ -167,13 +167,13 @@ pub fn get_latest_release() -> Result, ()> { } // UAD only has pre-releases so we can't use -// https://api.github.com/repos/Frigyes06/universal-android-debloater/releases/latest +// https://api.github.com/repos/Universal-Debloater-Alliance/universal-android-debloater/releases/latest // to only get the latest release #[cfg(feature = "self-update")] pub fn get_latest_release() -> Result, ()> { debug!("Checking for UAD update"); - match ureq::get("https://api.github.com/repos/Frigyes06/universal-android-debloater/releases") + match ureq::get("https://api.github.com/repos/Universal-Debloater-Alliance/universal-android-debloater/releases") .call() { Ok(res) => { From 1a6315bd0838132acdabde480a0526f29b562486 Mon Sep 17 00:00:00 2001 From: jxdv Date: Fri, 3 Nov 2023 10:52:17 +0100 Subject: [PATCH 4/5] update links in gui --- src/gui/views/about.rs | 6 +++--- src/gui/views/settings.rs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gui/views/about.rs b/src/gui/views/about.rs index a12824d9..7aeae119 100644 --- a/src/gui/views/about.rs +++ b/src/gui/views/about.rs @@ -100,14 +100,14 @@ impl About { let website_btn = button("Github page") .on_press(Message::UrlPressed(PathBuf::from( - "https://github.com/Frigyes06/universal-android-debloater", + "https://github.com/Universal-Debloater-Alliance/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/Frigyes06/universal-android-debloater/issues", + "https://github.com/Universal-Debloater-Alliance/universal-android-debloater/issues", ))) .padding(5) .style(style::Button::Primary); @@ -119,7 +119,7 @@ impl About { let wiki_btn = button("Wiki") .on_press(Message::UrlPressed(PathBuf::from( - "https://github.com/0x192/universal-android-debloater/wiki", + "https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki", ))) .padding(5) .style(style::Button::Primary); diff --git a/src/gui/views/settings.rs b/src/gui/views/settings.rs index 761ff00a..c853a641 100644 --- a/src/gui/views/settings.rs +++ b/src/gui/views/settings.rs @@ -271,14 +271,14 @@ impl Settings { let unavailable_btn = button(text("Unavailable").size(13)) .on_press(Message::UrlPressed(PathBuf::from( - "https://github.com/0x192/universal-android-debloater/wiki/FAQ#\ + "https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki/FAQ#\ why-is-the-disable-mode-setting-not-available-for-my-device", ))) .height(22) .style(style::Button::Unavailable); // Disabling package without root isn't really possible before Android Oreo (8.0) - // see https://github.com/0x192/universal-android-debloater/wiki/ADB-reference + // see https://github.com/Universal-Debloater-Alliance/universal-android-debloater/wiki/ADB-reference let disable_mode_checkbox = checkbox( "Clear and disable packages instead of uninstalling them", self.device.disable_mode, From 508b6e0f779e7211f0c434c8089ebd4b1d6aac6d Mon Sep 17 00:00:00 2001 From: Frigyes06 <72750891+Frigyes06@users.noreply.github.com> Date: Fri, 3 Nov 2023 10:40:29 -0700 Subject: [PATCH 5/5] Changed edition to valid one --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2efc5e10..730004d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/Frigyes06/universal-android-debloater" readme = "README.md" keywords = ["debloater", "android", "adb", "privacy", "bloatware"] categories = ["gui"] -edition = "2023" +edition = "2021" [features] default = ["wgpu", "self-update"]