Commit e59ea59a3b6c27a255100d0eae6ddfd4dcd5235b

Authored by “张旭”
1 parent 4bbfb543

重新写存储路径

metaCode.xcodeproj/project.pbxproj
... ... @@ -2348,7 +2348,7 @@
2348 2348 CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements;
2349 2349 CODE_SIGN_IDENTITY = "Apple Development";
2350 2350 CODE_SIGN_STYLE = Automatic;
2351   - CURRENT_PROJECT_VERSION = 1.1.0.24.04.15.12;
  2351 + CURRENT_PROJECT_VERSION = 1.1.1.24.06.26.11;
2352 2352 DEBUG_INFORMATION_FORMAT = dwarf;
2353 2353 DEVELOPMENT_TEAM = 94X49GG3ZW;
2354 2354 ENABLE_BITCODE = NO;
... ... @@ -2421,7 +2421,7 @@
2421 2421 "$(inherited)",
2422 2422 "@executable_path/Frameworks",
2423 2423 );
2424   - MARKETING_VERSION = 1.1.0;
  2424 + MARKETING_VERSION = 1.1.1;
2425 2425 OTHER_LDFLAGS = (
2426 2426 "$(inherited)",
2427 2427 "-all_load",
... ... @@ -2604,7 +2604,7 @@
2604 2604 CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements;
2605 2605 CODE_SIGN_IDENTITY = "Apple Development";
2606 2606 CODE_SIGN_STYLE = Automatic;
2607   - CURRENT_PROJECT_VERSION = 1.1.0.24.04.15.12;
  2607 + CURRENT_PROJECT_VERSION = 1.1.1.24.06.26.11;
2608 2608 DEVELOPMENT_TEAM = 94X49GG3ZW;
2609 2609 ENABLE_BITCODE = NO;
2610 2610 ENABLE_MODULE_VERIFIER = NO;
... ... @@ -2676,7 +2676,7 @@
2676 2676 "$(inherited)",
2677 2677 "@executable_path/Frameworks",
2678 2678 );
2679   - MARKETING_VERSION = 1.1.0;
  2679 + MARKETING_VERSION = 1.1.1;
2680 2680 OTHER_LDFLAGS = (
2681 2681 "$(inherited)",
2682 2682 "-all_load",
... ...
metaCode/Classes/Config/Database/CNLiveSaveAuthDB.swift
... ... @@ -214,7 +214,7 @@ class CNLiveSaveAuthDB : NSObject{
214 214 }()
215 215  
216 216 private lazy var fileDir: String = {
217   - let path = "\(NSHomeDirectory())/Documents/metaCode/saveAuth"
  217 + let path = "\(NSHomeDirectory())/Documents/metaCode/saveAuthDB"
218 218 let fileManager = FileManager.default
219 219 var isDir: ObjCBool = false
220 220 let exist: Bool = fileManager.fileExists(atPath: path, isDirectory: &isDir)
... ...