Revert "Release channel support (#239)"

This reverts commit 7d0eb8c61e.
This commit is contained in:
naturecodevoid
2023-02-02 08:09:15 -08:00
parent 7d0eb8c61e
commit fcfeea35da
8 changed files with 34 additions and 75 deletions

View File

@@ -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
}
}