diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3448212..0f07914 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ## For who is this guide? -This guide is meant for users who want to contribute to the codebase of Universal Android Debloater New Generation, whether that is the application code or the JSON-file for adding packages. To keep all processes streamlined and consistent, we're asking you to stick to this guide whenever contributing. +This guide is meant for users who want to contribute to the codebase of Universal Android Debloater Next Generation, whether that is the application code or the JSON-file for adding packages. To keep all processes streamlined and consistent, we're asking you to stick to this guide whenever contributing. ## What are the guidelines? diff --git a/Cargo.lock b/Cargo.lock index fd94c2b..d272ee6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2796,7 +2796,7 @@ dependencies = [ ] [[package]] -name = "uad_ng" +name = "uad-ng" version = "0.6.2" dependencies = [ "chrono", diff --git a/LICENSE b/LICENSE index bb96ede..09820ab 100644 --- a/LICENSE +++ b/LICENSE @@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - Universal Android Debloater New Generation GUI + Universal Android Debloater Next Generation GUI Copyright (C) 2023 Universal Debloater Alliance This program is free software: you can redistribute it and/or modify @@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - Universal Android Debloater New Generation GUI Copyright (C) 2021 W1nst0n + Universal Android Debloater Next Generation GUI Copyright (C) 2021 W1nst0n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. diff --git a/README.md b/README.md index aa3e372..2d077f2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Universal Android Debloater New Generation GUI +# Universal Android Debloater Next Generation GUI **DISCLAIMER**: Use at your own risk. I am not responsible for anything that could happen to your phone. diff --git a/resources/assets/uad_lists.json b/resources/assets/uad_lists.json index abfd6ec..13a09f8 100644 --- a/resources/assets/uad_lists.json +++ b/resources/assets/uad_lists.json @@ -30774,7 +30774,7 @@ { "id": "com.google.android.apps.work.oobconfig", "list": "Google", - "description": "Device Setup\nSets up device to be managed by EMM (Enterprise Mobility Management), which \"allows organizations to securely enable employee use of mobile devices\".\nMight also be what does the actual management on your device, if you set it up as a work device.\nOnly seems to run on boot(not in the background after boot) if you haven't set up your device as a work device.\nI tried to disable it through UAD-ND, but nothing happens? Seems immune to disabling?\nhttps://bayton.org/2020/11/google-announce-big-changes-to-zero-touch/\nhttps://bayton.org/docs/enterprise-mobility/android/what-is-android-zero-touch-enrolment/\nContains 4 services: GcmJobService, GservicesChangedObserverService, AppMeasurementService and FirebaseInstanceIdService.\nGCM(Google Cloud Messaging) was the backend for Android's push messaging system 2012-2019, after which it was replaced by FCM(Firebase Cloud Messaging). I assume the GCM/Firebase connection is for Push notification functionality.\nThe MANAGE_CARRIER_OEM_UNLOCK_STATE permission hints at doing something with carrier locks?\nNeeds Google Play Services to function?", + "description": "Device Setup\nSets up device to be managed by EMM (Enterprise Mobility Management), which \"allows organizations to securely enable employee use of mobile devices\".\nMight also be what does the actual management on your device, if you set it up as a work device.\nOnly seems to run on boot(not in the background after boot) if you haven't set up your device as a work device.\nI tried to disable it through UAD-ng, but nothing happens? Seems immune to disabling?\nhttps://bayton.org/2020/11/google-announce-big-changes-to-zero-touch/\nhttps://bayton.org/docs/enterprise-mobility/android/what-is-android-zero-touch-enrolment/\nContains 4 services: GcmJobService, GservicesChangedObserverService, AppMeasurementService and FirebaseInstanceIdService.\nGCM(Google Cloud Messaging) was the backend for Android's push messaging system 2012-2019, after which it was replaced by FCM(Firebase Cloud Messaging). I assume the GCM/Firebase connection is for Push notification functionality.\nThe MANAGE_CARRIER_OEM_UNLOCK_STATE permission hints at doing something with carrier locks?\nNeeds Google Play Services to function?", "dependencies": [], "neededBy": [], "labels": [], diff --git a/src/gui/mod.rs b/src/gui/mod.rs index 72af5b9..79bc358 100644 --- a/src/gui/mod.rs +++ b/src/gui/mod.rs @@ -96,7 +96,7 @@ impl Application for UadGui { } fn title(&self) -> String { - String::from("Universal Android Debloater New Generation") + String::from("Universal Android Debloater Next Generation") } fn update(&mut self, msg: Message) -> Command { match msg { diff --git a/src/gui/views/about.rs b/src/gui/views/about.rs index 80dc5da..2c2eda7 100644 --- a/src/gui/views/about.rs +++ b/src/gui/views/about.rs @@ -28,7 +28,7 @@ impl About { } pub fn view(&self, update_state: &UpdateState) -> Element> { let about_text = text( - "Universal Android Debloater New Generation (UAD-ng) is a Free and Open-Source community project aiming at simplifying \ + "Universal Android Debloater Next Generation (UAD-ng) is a Free and Open-Source community project aiming at simplifying \ the removal of pre-installed apps on any Android device.", ); diff --git a/src/gui/widgets/navigation_menu.rs b/src/gui/widgets/navigation_menu.rs index b268963..6c2af09 100644 --- a/src/gui/widgets/navigation_menu.rs +++ b/src/gui/widgets/navigation_menu.rs @@ -40,7 +40,7 @@ pub fn nav_menu<'a>( Text::new("Updating please wait...") } else { Text::new(format!( - "New UAD-ND version available {} -> {}", + "New UAD-ng version available {} -> {}", env!("CARGO_PKG_VERSION"), r.tag_name ))