Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default repos #559

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ object Database {
}
}

private class Helper(context: Context) : SQLiteOpenHelper(context, "droidify", null, 1) {
private class Helper(context: Context) : SQLiteOpenHelper(context, "droidify", null, 2) {
var created = false
private set
var updated = false
Expand Down
30 changes: 15 additions & 15 deletions core/model/src/main/java/com/looker/core/model/Repository.kt
Original file line number Diff line number Diff line change
Expand Up @@ -271,19 +271,6 @@ data class Repository(
description = "A companion repository to microG's installer.",
fingerprint = "862ED9F13A3981432BF86FE93D14596B381D75BE83A1D616E2D44A12654AD015"
),
defaultRepository(
address = "https://fluffychat.im/repo/stable/repo",
name = "FluffyChat",
description = "The official repository for FluffyChat. Fluffy" +
"chat is a Matrix client.",
fingerprint = "8E2637AEF6697CC6DD486AF044A6EE45B1A742AE3EF56566E748CDE8BC65C1FB"
),
defaultRepository(
address = "https://fluffychat.im/repo/nightly/repo",
name = "FluffyChat Nightly",
description = "The official nightly repository for FluffyChat.",
fingerprint = "21A469657300576478B623DF99D8EB889A80BCD939ACA60A4074741BEAEC397D"
),
defaultRepository(
address = "https://releases.threema.ch/fdroid/repo",
name = "Threema Libre",
Expand Down Expand Up @@ -363,7 +350,7 @@ data class Repository(
address = "https://julianfairfax.gitlab.io/fdroid-repo/fdroid/repo",
name = "Julian's F-Droid Repo (Proton, GrapheneOS)",
description = "Repository for installing apps more easily.",
fingerprint = "561AD800D900CA8EBF3A531C6A860B5AB8569D0D376FD121CBCCFCA9434D7DF7"
fingerprint = "83ABB548CAA6F311CE3591DDCA466B65213FD0541352502702B1908F0C84206D"
),
defaultRepository(
address = "https://zimbelstern.eu/fdroid/repo",
Expand All @@ -380,6 +367,19 @@ data class Repository(
)
)

val newlyAdded = listOf<Repository>()
val newlyAdded = listOf<Repository>(
defaultRepository(
address = "https://repo.samourai.io/fdroid/repo",
name = "Samourai Wallet",
description = "Samourai Bitcoin Wallet official F-Droid repository.",
fingerprint = "5318AFA280284855CF5D0027AA54517769F461D735980B1FB0854CEAE8E072A5"
),
defaultRepository(
address = "https://f-droid.monerujo.io/fdroid/repo",
name = "Monerujo Wallet",
description = "Monerujo Monero Wallet official F-Droid repository.",
fingerprint = "A82C68E14AF0AA6A2EC20E6B272EFF25E5A038F3F65884316E0F5E0D91E7B713"
),
)
}
}