mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-08 22:33:26 +01:00
Revert "Release channel support (#239)"
This reverts commit 7d0eb8c61e.
This commit is contained in:
@@ -343,28 +343,16 @@ public extension StoreApp
|
||||
{
|
||||
let app = StoreApp(context: context)
|
||||
app.name = "SideStore"
|
||||
|
||||
let currentAppVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String
|
||||
|
||||
if currentAppVersion != nil {
|
||||
if currentAppVersion!.contains("beta") {
|
||||
app.name += " (Beta)"
|
||||
}
|
||||
if currentAppVersion!.contains("nightly") {
|
||||
app.name += " (Nightly)"
|
||||
}
|
||||
}
|
||||
|
||||
app.bundleIdentifier = StoreApp.altstoreAppID
|
||||
app.developerName = "SideStore Team"
|
||||
app.localizedDescription = "SideStore is an alternative app store for non-jailbroken devices.\n\nSideStore allows you to sideload other .ipa files and apps from the Files app or via the SideStore Library."
|
||||
app.iconURL = URL(string: "https://sidestore.io/assets/icon.png")!
|
||||
app.developerName = "Side Team"
|
||||
app.localizedDescription = "SideStore is an alternative App Store."
|
||||
app.iconURL = URL(string: "https://user-images.githubusercontent.com/705880/63392210-540c5980-c37b-11e9-968c-8742fc68ab2e.png")!
|
||||
app.screenshotURLs = []
|
||||
app.sourceIdentifier = Source.altStoreIdentifier
|
||||
|
||||
let appVersion = AppVersion.makeAppVersion(version: "0.0.0", // this is set to the current app version later
|
||||
let appVersion = AppVersion.makeAppVersion(version: "0.3.0",
|
||||
date: Date(),
|
||||
downloadURL: URL(string: "https://sidestore.io")!,
|
||||
downloadURL: URL(string: "http://rileytestut.com")!,
|
||||
size: 0,
|
||||
appBundleID: app.bundleIdentifier,
|
||||
sourceID: Source.altStoreIdentifier,
|
||||
@@ -373,6 +361,10 @@ public extension StoreApp
|
||||
|
||||
print("makeAltStoreApp StoreApp: \(String(describing: app))")
|
||||
|
||||
#if BETA
|
||||
app.isBeta = true
|
||||
#endif
|
||||
|
||||
return app
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user