From e22de97b977482dbe6628fae5df5c0c7ba34c268 Mon Sep 17 00:00:00 2001 From: "Mr. Beedell, Roke Julian Lockhart (RJLB)" Date: Mon, 23 Jun 2025 15:56:41 +0100 Subject: [PATCH] Update `Repository.kt` to remove Umbrella and LibRetro. Remediates: 1. https://github.com/Droid-ify/client/issues/1005#issuecomment-2996790623 2. https://github.com/Droid-ify/client/issues/1006#issuecomment-2996791174 --- .../com/looker/droidify/model/Repository.kt | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/app/src/main/kotlin/com/looker/droidify/model/Repository.kt b/app/src/main/kotlin/com/looker/droidify/model/Repository.kt index 0a22c690..949d1a9b 100644 --- a/app/src/main/kotlin/com/looker/droidify/model/Repository.kt +++ b/app/src/main/kotlin/com/looker/droidify/model/Repository.kt @@ -171,13 +171,6 @@ data class Repository( description = "Collabora Office is an office suite based on LibreOffice.", fingerprint = "573258C84E149B5F4D9299E7434B2B69A8410372921D4AE586BA91EC767892CC" ), - defaultRepository( - address = "https://fdroid.libretro.com/repo", - name = "LibRetro", - description = "The official canary repository for this great" + - " retro emulators hub.", - fingerprint = "3F05B24D497515F31FEAB421297C79B19552C5C81186B3750B7C131EF41D733D" - ), defaultRepository( address = "https://cdn.kde.org/android/fdroid/repo", name = "KDE Android", @@ -211,13 +204,6 @@ data class Repository( "inaries.", fingerprint = "FE7A23DFC003A1CF2D2ADD2469B9C0C49B206BA5DC9EDD6563B3B7EB6A8F5FAB" ), - defaultRepository( - address = "https://secfirst.org/fdroid/repo", - name = "Umbrella", - description = "The official repository for Umbrella. Umbrella is" + - " a collection of security advices, tutorials, tools etc.", - fingerprint = "39EB57052F8D684514176819D1645F6A0A7BD943DBC31AB101949006AC0BC228" - ), defaultRepository( address = "https://thecapslock.gitlab.io/fdroid-patched-apps/fdroid/repo", name = "Patched Apps", @@ -417,6 +403,8 @@ data class Repository( val toRemove: List = listOf( // Add repository addresses that should be removed during database upgrades and remove them from the lists above // Example: "https://example.com/fdroid/repo" + "https://secfirst.org/fdroid/repo", + "https://fdroid.libretro.com/repo" ) } }