[cleanup]: renamed identifiers from io.altstore.xxxx to io.sidestore.xxxx

This commit is contained in:
Magesh K
2024-12-13 14:15:55 +05:30
parent 7ac485def0
commit 46ccbe5aad
11 changed files with 24 additions and 24 deletions

View File

@@ -44,8 +44,8 @@ final class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
{
// Override point for customization after application launch.
UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.MigrationDebug")
UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.SQLDebug")
// UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.MigrationDebug")
// UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.SQLDebug")
// Register default settings before doing anything else.
UserDefaults.registerDefaults()
@@ -164,7 +164,7 @@ private extension AppDelegate
let pipeline = ImagePipeline { configuration in
do
{
let dataCache = try DataCache(name: "io.altstore.Nuke")
let dataCache = try DataCache(name: "io.sidestore.Nuke")
dataCache.sizeLimit = 512 * 1024 * 1024 // 512MB
configuration.dataCache = dataCache

View File

@@ -15,8 +15,8 @@ import Nuke
extension UIAction.Identifier
{
fileprivate static let showAllApps = Self("io.altstore.ShowAllApps")
fileprivate static let showSourceDetails = Self("io.altstore.ShowSourceDetails")
fileprivate static let showAllApps = Self("io.sidestore.ShowAllApps")
fileprivate static let showSourceDetails = Self("io.sidestore.ShowSourceDetails")
}
extension FeaturedViewController

View File

@@ -14,7 +14,7 @@ import AltStoreCore
@available(iOS 14, *)
final class IntentHandler: NSObject, RefreshAllIntentHandling
{
private let queue = DispatchQueue(label: "io.altstore.IntentHandler")
private let queue = DispatchQueue(label: "io.sidestore.IntentHandler")
private var completionHandlers = [RefreshAllIntent: (RefreshAllIntentResponse) -> Void]()
private var queuedResponses = [RefreshAllIntent: RefreshAllIntentResponse]()

View File

@@ -22,11 +22,11 @@ import Roxas
extension AppManager
{
static let didFetchSourceNotification = Notification.Name("io.altstore.AppManager.didFetchSource")
static let didUpdatePatronsNotification = Notification.Name("io.altstore.AppManager.didUpdatePatrons")
static let didAddSourceNotification = Notification.Name("io.altstore.AppManager.didAddSource")
static let didRemoveSourceNotification = Notification.Name("io.altstore.AppManager.didRemoveSource")
static let willInstallAppFromNewSourceNotification = Notification.Name("io.altstore.AppManager.willInstallAppFromNewSource")
static let didFetchSourceNotification = Notification.Name("io.sidestore.AppManager.didFetchSource")
static let didUpdatePatronsNotification = Notification.Name("io.sidestore.AppManager.didUpdatePatrons")
static let didAddSourceNotification = Notification.Name("io.sidestore.AppManager.didAddSource")
static let didRemoveSourceNotification = Notification.Name("io.sidestore.AppManager.didRemoveSource")
static let willInstallAppFromNewSourceNotification = Notification.Name("io.sidestore.AppManager.willInstallAppFromNewSource")
static let expirationWarningNotificationID = "altstore-expiration-warning"
static let enableJITResultNotificationID = "altstore-enable-jit"

View File

@@ -15,7 +15,7 @@ import Roxas
extension UIApplication
{
static let didChangeAppIconNotification = Notification.Name("io.altstore.AppManager.didChangeAppIcon")
static let didChangeAppIconNotification = Notification.Name("io.sidestore.AppManager.didChangeAppIcon")
}
private final class AltIcon: Decodable

View File

@@ -16,7 +16,7 @@ import Nuke
private extension UIAction.Identifier
{
static let addSource = UIAction.Identifier("io.altstore.AddSource")
static let addSource = UIAction.Identifier("io.sidestore.AddSource")
}
private typealias SourcePreviewResult = (sourceURL: URL, result: Result<Managed<Source>, Error>)