[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