diff --git a/README.md b/README.md index ec8bb4f3..8d6c2a9c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ could happen to your phone. uad_screenshot -**Check out the issues, and [feel free to contribute!](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/wiki/How-to-contribute)** +**Check out the issues, and [feel free to contribute!](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/wiki/How-to-contribute)**. We're in **HIGH NEED** of Rust developers for fixing critical issues, see [this announcement](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/discussions/731) for more information. **For real-time communication, consider joining our Discord server:** diff --git a/resources/assets/uad_lists.json b/resources/assets/uad_lists.json index 9961218e..e7f3c891 100644 --- a/resources/assets/uad_lists.json +++ b/resources/assets/uad_lists.json @@ -1207,6 +1207,14 @@ "labels": [], "removal": "Recommended" }, + "com.telus.checkup": { + "list": "Carrier", + "description": "Checkup app (from Mobile Klinik; a Canadian store for buying, selling, and repairing smartphones)\nMainly used to run device-health diagnostics, estimate device value post-diagnostics (for re-selling at a Mobile Klinik location), and finding nearby Mobile Klinik locations to book appointments for device repair. Also contains ads and promotions for new devices and accessories.\nGenerally regarded as bloatware because diagnostics are generic at best, and is eager to request many unnecessary and potentially invasive device permissions.\nSafe to remove if you don't use it, and can be re-downloaded from the Google Play Store at any time.", + "dependencies": [], + "neededBy": [], + "labels": [], + "removal": "Recommended" + }, "com.telus.myaccount": { "list": "Carrier", "description": "My TELUS app\nIt's used for managing your telus account\nSafe to remove if you don't use it", diff --git a/src/gui/style.rs b/src/gui/style.rs index 1f156998..deaa193b 100644 --- a/src/gui/style.rs +++ b/src/gui/style.rs @@ -599,7 +599,9 @@ mod tests { assert_ne!(palette.normal.primary, Color::BLACK); assert_ne!(palette.normal.surface, Color::BLACK); assert_ne!(palette.bright.primary, Color::BLACK); - assert_ne!(palette.bright.surface, Color::BLACK); + // if `LIGHT` then this can be `BLACK` + // https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/pull/730#issuecomment-2525405134 + //assert_ne!(palette.bright.surface, Color::BLACK); assert_ne!(palette.normal.error, Color::BLACK); assert_ne!(palette.bright.error, Color::BLACK); }