From cb9575ac82a1617e96ec5a2eb074da39e9c6dfe6 Mon Sep 17 00:00:00 2001 From: Kjuly Date: Thu, 21 Dec 2023 10:31:36 +0800 Subject: [PATCH] Rename PythonForVideoMemos-Demo to AidemPythonDemo --- AidemPython/VMPython/Bridge/VMPython.m | 2 +- .../VMPython/Bridge/VMPythonAidemModule.h | 2 +- .../VMPython/Bridge/VMPythonAidemModule.m | 2 +- .../VMVideoNAudioMerger/VMTrackMergingAsset.h | 2 +- .../VMVideoNAudioMerger/VMTrackMergingAsset.m | 2 +- .../VMVideoNAudioMerger/VMVideoNAudioMerger.h | 2 +- .../VMVideoNAudioMerger/VMVideoNAudioMerger.m | 2 +- AidemPython/VMPython/VMPythonCommon.h | 2 +- .../VMDownloadOperationConstants.h | 2 +- .../VMDownloadOperationConstants.m | 2 +- .../VMPythonDownloadOperation.h | 2 +- .../VMPythonDownloadOperation.m | 2 +- .../VMResourceDownloader.h | 2 +- .../VMResourceDownloader.m | 2 +- .../VMPythonDownloadProcessButton.h | 2 +- .../VMPythonDownloadProcessButton.m | 2 +- .../project.pbxproj | 122 +++++++++--------- .../xcschemes/AidemPythonDemo.xcscheme | 99 ++++++++++++++ .../AidemPythonDemo}/AppDelegate.h | 2 +- .../AidemPythonDemo}/AppDelegate.m | 2 +- .../AidemPythonDemo}/Constants.h | 2 +- .../AidemPythonDemo}/Constants.m | 2 +- .../AidemPythonDemo}/SceneDelegate.h | 2 +- .../AidemPythonDemo}/SceneDelegate.m | 2 +- .../AppIcon.appiconset/Contents.json | 0 .../Assets.xcassets/Contents.json | 0 .../Base.lproj/LaunchScreen.storyboard | 0 .../Base.lproj/Main.storyboard | 0 .../SupportingFiles/Info.plist | 0 .../AidemPythonDemo}/SupportingFiles/main.m | 2 +- .../TableViewDownloadingCell.h | 2 +- .../TableViewDownloadingCell.m | 2 +- .../AidemPythonDemo}/ViewController.h | 2 +- .../AidemPythonDemo}/ViewController.m | 2 +- .../AidemPythonDemoTests.m | 37 ++++++ .../AidemPythonDemoTests}/Info.plist | 0 .../AidemPythonDemoUITests.m | 48 +++++++ .../AidemPythonDemoUITests}/Info.plist | 0 .../PythonForVideoMemos_DemoTests.m | 37 ------ .../PythonForVideoMemos_DemoUITests.m | 48 ------- 40 files changed, 272 insertions(+), 173 deletions(-) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo.xcodeproj => AidemPythonDemo/AidemPythonDemo.xcodeproj}/project.pbxproj (88%) create mode 100644 AidemPythonDemo/AidemPythonDemo.xcodeproj/xcshareddata/xcschemes/AidemPythonDemo.xcscheme rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/AppDelegate.h (87%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/AppDelegate.m (97%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/Constants.h (94%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/Constants.m (93%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SceneDelegate.h (89%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SceneDelegate.m (98%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/Assets.xcassets/Contents.json (100%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/Base.lproj/LaunchScreen.storyboard (100%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/Base.lproj/Main.storyboard (100%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/Info.plist (100%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/SupportingFiles/main.m (94%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/TableViewDownloadingCell.h (96%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/TableViewDownloadingCell.m (99%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/ViewController.h (86%) rename {PythonForVideoMemos-Demo/PythonForVideoMemos-Demo => AidemPythonDemo/AidemPythonDemo}/ViewController.m (99%) create mode 100644 AidemPythonDemo/AidemPythonDemoTests/AidemPythonDemoTests.m rename {PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests => AidemPythonDemo/AidemPythonDemoTests}/Info.plist (100%) create mode 100644 AidemPythonDemo/AidemPythonDemoUITests/AidemPythonDemoUITests.m rename {PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests => AidemPythonDemo/AidemPythonDemoUITests}/Info.plist (100%) delete mode 100644 PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/PythonForVideoMemos_DemoTests.m delete mode 100644 PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/PythonForVideoMemos_DemoUITests.m diff --git a/AidemPython/VMPython/Bridge/VMPython.m b/AidemPython/VMPython/Bridge/VMPython.m index 773e5c7..ec265d6 100644 --- a/AidemPython/VMPython/Bridge/VMPython.m +++ b/AidemPython/VMPython/Bridge/VMPython.m @@ -101,7 +101,7 @@ - (void)enterPythonEnv } // Change the executing path to YourApp - //chdir("PythonForVideoMemos-Demo"); + //chdir("AidemPythonDemo"); // Special environment to prefer .pyo, and don't write bytecode if .py are found // because the process will not have a write attribute on the device. diff --git a/AidemPython/VMPython/Bridge/VMPythonAidemModule.h b/AidemPython/VMPython/Bridge/VMPythonAidemModule.h index 363e735..6bb239d 100644 --- a/AidemPython/VMPython/Bridge/VMPythonAidemModule.h +++ b/AidemPython/VMPython/Bridge/VMPythonAidemModule.h @@ -1,6 +1,6 @@ // // VMPythonAidemModule.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 30/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/Bridge/VMPythonAidemModule.m b/AidemPython/VMPython/Bridge/VMPythonAidemModule.m index 632644c..32c8cb5 100644 --- a/AidemPython/VMPython/Bridge/VMPythonAidemModule.m +++ b/AidemPython/VMPython/Bridge/VMPythonAidemModule.m @@ -1,6 +1,6 @@ // // VMPythonAidemModule.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 30/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.h b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.h index 46dcced..cf55e49 100644 --- a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.h +++ b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.h @@ -1,6 +1,6 @@ // // VMTrackMergingAsset.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 18/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.m b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.m index 558409c..f3fcde9 100644 --- a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.m +++ b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMTrackMergingAsset.m @@ -1,6 +1,6 @@ // // VMTrackMergingAsset.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 18/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.h b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.h index 1735045..8482f0c 100644 --- a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.h +++ b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.h @@ -1,6 +1,6 @@ // // VMVideoNAudioMerger.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 17/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.m b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.m index 602b210..fa5b6e0 100644 --- a/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.m +++ b/AidemPython/VMPython/Others/VMVideoNAudioMerger/VMVideoNAudioMerger.m @@ -1,6 +1,6 @@ // // VMVideoNAudioMerger.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 17/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMPythonCommon.h b/AidemPython/VMPython/VMPythonCommon.h index 2039594..617fd03 100644 --- a/AidemPython/VMPython/VMPythonCommon.h +++ b/AidemPython/VMPython/VMPythonCommon.h @@ -1,6 +1,6 @@ // // VMPythonCommon.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.h b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.h index ce897d4..36731c1 100644 --- a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.h +++ b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.h @@ -1,6 +1,6 @@ // // VMDownloadOperationConstants.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 16/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.m b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.m index 6c02c0d..ae110ba 100644 --- a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.m +++ b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMDownloadOperationConstants.m @@ -1,6 +1,6 @@ // // VMDownloadOperationConstants.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 16/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.h b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.h index c53ca7f..c05f8c5 100644 --- a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.h +++ b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.h @@ -1,6 +1,6 @@ // // VMPythonDownloadOperation.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 29/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.m b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.m index 1f5fd5a..001ed12 100644 --- a/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.m +++ b/AidemPython/VMPython/VMPythonResourceDownloader/VMPythonDownloadOperation/VMPythonDownloadOperation.m @@ -1,6 +1,6 @@ // // VMPythonDownloadOperation.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 29/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.h b/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.h index 76a745e..b0a74b7 100644 --- a/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.h +++ b/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.h @@ -1,6 +1,6 @@ // // VMResourceDownloader.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 28/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.m b/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.m index 179d078..056380c 100644 --- a/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.m +++ b/AidemPython/VMPython/VMResourceDownloader/VMResourceDownloader.m @@ -1,6 +1,6 @@ // // VMResourceDownloader.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 28/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.h b/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.h index 6e9f012..d6a2907 100644 --- a/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.h +++ b/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.h @@ -1,6 +1,6 @@ // // VMPythonDownloadProcessButton.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.m b/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.m index cdf9129..5d26264 100644 --- a/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.m +++ b/AidemPython/VMPythonDownloadProcessButton/VMPythonDownloadProcessButton.m @@ -1,6 +1,6 @@ // // VMPythonDownloadProcessButton.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo.xcodeproj/project.pbxproj b/AidemPythonDemo/AidemPythonDemo.xcodeproj/project.pbxproj similarity index 88% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo.xcodeproj/project.pbxproj rename to AidemPythonDemo/AidemPythonDemo.xcodeproj/project.pbxproj index 4eec836..3b95eee 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo.xcodeproj/project.pbxproj +++ b/AidemPythonDemo/AidemPythonDemo.xcodeproj/project.pbxproj @@ -16,8 +16,8 @@ 7F4CB58424A42AAD00CC0889 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7F4CB58324A42AAD00CC0889 /* Assets.xcassets */; }; 7F4CB58724A42AAD00CC0889 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7F4CB58524A42AAD00CC0889 /* LaunchScreen.storyboard */; }; 7F4CB58A24A42AAD00CC0889 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CB58924A42AAD00CC0889 /* main.m */; }; - 7F4CB59424A42AAD00CC0889 /* PythonForVideoMemos_DemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CB59324A42AAD00CC0889 /* PythonForVideoMemos_DemoTests.m */; }; - 7F4CB59F24A42AAD00CC0889 /* PythonForVideoMemos_DemoUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CB59E24A42AAD00CC0889 /* PythonForVideoMemos_DemoUITests.m */; }; + 7F4CB59424A42AAD00CC0889 /* AidemPythonDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CB59324A42AAD00CC0889 /* AidemPythonDemoTests.m */; }; + 7F4CB59F24A42AAD00CC0889 /* AidemPythonDemoUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F4CB59E24A42AAD00CC0889 /* AidemPythonDemoUITests.m */; }; 7F4CBD5C24A42D6200CC0889 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F4CBD5B24A42D6200CC0889 /* libsqlite3.tbd */; }; 7F4CBD5E24A42D6800CC0889 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F4CBD5D24A42D6800CC0889 /* libz.tbd */; }; 7FD0631F29E59EA300787EB2 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FD061C529E59EA100787EB2 /* libcrypto.a */; }; @@ -64,7 +64,7 @@ 7F08BBD524AF1D4B00B3F5EB /* TableViewDownloadingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TableViewDownloadingCell.m; sourceTree = ""; }; 7F08BBD724AF1E1700B3F5EB /* Constants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Constants.h; sourceTree = ""; }; 7F08BBD824AF1E1700B3F5EB /* Constants.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Constants.m; sourceTree = ""; }; - 7F4CB57424A42AAB00CC0889 /* PythonForVideoMemos-Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "PythonForVideoMemos-Demo.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 7F4CB57424A42AAB00CC0889 /* AidemPythonDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AidemPythonDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 7F4CB57724A42AAB00CC0889 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 7F4CB57824A42AAB00CC0889 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 7F4CB57A24A42AAB00CC0889 /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = ""; }; @@ -76,11 +76,11 @@ 7F4CB58624A42AAD00CC0889 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 7F4CB58824A42AAD00CC0889 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 7F4CB58924A42AAD00CC0889 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - 7F4CB58F24A42AAD00CC0889 /* PythonForVideoMemos-DemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "PythonForVideoMemos-DemoTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7F4CB59324A42AAD00CC0889 /* PythonForVideoMemos_DemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PythonForVideoMemos_DemoTests.m; sourceTree = ""; }; + 7F4CB58F24A42AAD00CC0889 /* AidemPythonDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AidemPythonDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 7F4CB59324A42AAD00CC0889 /* AidemPythonDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AidemPythonDemoTests.m; sourceTree = ""; }; 7F4CB59524A42AAD00CC0889 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 7F4CB59A24A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "PythonForVideoMemos-DemoUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7F4CB59E24A42AAD00CC0889 /* PythonForVideoMemos_DemoUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PythonForVideoMemos_DemoUITests.m; sourceTree = ""; }; + 7F4CB59A24A42AAD00CC0889 /* AidemPythonDemoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AidemPythonDemoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 7F4CB59E24A42AAD00CC0889 /* AidemPythonDemoUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AidemPythonDemoUITests.m; sourceTree = ""; }; 7F4CB5A024A42AAD00CC0889 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 7F4CBD5B24A42D6200CC0889 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; }; 7F4CBD5D24A42D6800CC0889 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; @@ -155,9 +155,9 @@ 7F4CB56B24A42AAB00CC0889 = { isa = PBXGroup; children = ( - 7F4CB57624A42AAB00CC0889 /* PythonForVideoMemos-Demo */, - 7F4CB59224A42AAD00CC0889 /* PythonForVideoMemos-DemoTests */, - 7F4CB59D24A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests */, + 7F4CB57624A42AAB00CC0889 /* AidemPythonDemo */, + 7F4CB59224A42AAD00CC0889 /* AidemPythonDemoTests */, + 7F4CB59D24A42AAD00CC0889 /* AidemPythonDemoUITests */, 7F4CB57524A42AAB00CC0889 /* Products */, 7FFEE25824AADB9C0071144F /* Frameworks */, ); @@ -166,14 +166,14 @@ 7F4CB57524A42AAB00CC0889 /* Products */ = { isa = PBXGroup; children = ( - 7F4CB57424A42AAB00CC0889 /* PythonForVideoMemos-Demo.app */, - 7F4CB58F24A42AAD00CC0889 /* PythonForVideoMemos-DemoTests.xctest */, - 7F4CB59A24A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests.xctest */, + 7F4CB57424A42AAB00CC0889 /* AidemPythonDemo.app */, + 7F4CB58F24A42AAD00CC0889 /* AidemPythonDemoTests.xctest */, + 7F4CB59A24A42AAD00CC0889 /* AidemPythonDemoUITests.xctest */, ); name = Products; sourceTree = ""; }; - 7F4CB57624A42AAB00CC0889 /* PythonForVideoMemos-Demo */ = { + 7F4CB57624A42AAB00CC0889 /* AidemPythonDemo */ = { isa = PBXGroup; children = ( 7F4CB57724A42AAB00CC0889 /* AppDelegate.h */, @@ -190,25 +190,25 @@ 7F4CB5AC24A42BFB00CC0889 /* SupportingFiles */, 7F4CBD5A24A42D6200CC0889 /* Frameworks */, ); - path = "PythonForVideoMemos-Demo"; + path = AidemPythonDemo; sourceTree = ""; }; - 7F4CB59224A42AAD00CC0889 /* PythonForVideoMemos-DemoTests */ = { + 7F4CB59224A42AAD00CC0889 /* AidemPythonDemoTests */ = { isa = PBXGroup; children = ( - 7F4CB59324A42AAD00CC0889 /* PythonForVideoMemos_DemoTests.m */, + 7F4CB59324A42AAD00CC0889 /* AidemPythonDemoTests.m */, 7F4CB59524A42AAD00CC0889 /* Info.plist */, ); - path = "PythonForVideoMemos-DemoTests"; + path = AidemPythonDemoTests; sourceTree = ""; }; - 7F4CB59D24A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests */ = { + 7F4CB59D24A42AAD00CC0889 /* AidemPythonDemoUITests */ = { isa = PBXGroup; children = ( - 7F4CB59E24A42AAD00CC0889 /* PythonForVideoMemos_DemoUITests.m */, + 7F4CB59E24A42AAD00CC0889 /* AidemPythonDemoUITests.m */, 7F4CB5A024A42AAD00CC0889 /* Info.plist */, ); - path = "PythonForVideoMemos-DemoUITests"; + path = AidemPythonDemoUITests; sourceTree = ""; }; 7F4CB5AC24A42BFB00CC0889 /* SupportingFiles */ = { @@ -363,9 +363,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 7F4CB57324A42AAB00CC0889 /* PythonForVideoMemos-Demo */ = { + 7F4CB57324A42AAB00CC0889 /* AidemPythonDemo */ = { isa = PBXNativeTarget; - buildConfigurationList = 7F4CB5A324A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-Demo" */; + buildConfigurationList = 7F4CB5A324A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemo" */; buildPhases = ( 7F4CB57024A42AAB00CC0889 /* Sources */, 7F4CB57124A42AAB00CC0889 /* Frameworks */, @@ -376,18 +376,18 @@ ); dependencies = ( ); - name = "PythonForVideoMemos-Demo"; + name = AidemPythonDemo; packageProductDependencies = ( 7FD063CF29E5A07C00787EB2 /* MBProgressHUD */, 7FD063D229E5A12F00787EB2 /* AFNetworking */, ); productName = "PythonForVideoMemos-Demo"; - productReference = 7F4CB57424A42AAB00CC0889 /* PythonForVideoMemos-Demo.app */; + productReference = 7F4CB57424A42AAB00CC0889 /* AidemPythonDemo.app */; productType = "com.apple.product-type.application"; }; - 7F4CB58E24A42AAD00CC0889 /* PythonForVideoMemos-DemoTests */ = { + 7F4CB58E24A42AAD00CC0889 /* AidemPythonDemoTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 7F4CB5A624A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-DemoTests" */; + buildConfigurationList = 7F4CB5A624A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemoTests" */; buildPhases = ( 7F4CB58B24A42AAD00CC0889 /* Sources */, 7F4CB58C24A42AAD00CC0889 /* Frameworks */, @@ -398,14 +398,14 @@ dependencies = ( 7F4CB59124A42AAD00CC0889 /* PBXTargetDependency */, ); - name = "PythonForVideoMemos-DemoTests"; + name = AidemPythonDemoTests; productName = "PythonForVideoMemos-DemoTests"; - productReference = 7F4CB58F24A42AAD00CC0889 /* PythonForVideoMemos-DemoTests.xctest */; + productReference = 7F4CB58F24A42AAD00CC0889 /* AidemPythonDemoTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; - 7F4CB59924A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests */ = { + 7F4CB59924A42AAD00CC0889 /* AidemPythonDemoUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = 7F4CB5A924A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-DemoUITests" */; + buildConfigurationList = 7F4CB5A924A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemoUITests" */; buildPhases = ( 7F4CB59624A42AAD00CC0889 /* Sources */, 7F4CB59724A42AAD00CC0889 /* Frameworks */, @@ -416,9 +416,9 @@ dependencies = ( 7F4CB59C24A42AAD00CC0889 /* PBXTargetDependency */, ); - name = "PythonForVideoMemos-DemoUITests"; + name = AidemPythonDemoUITests; productName = "PythonForVideoMemos-DemoUITests"; - productReference = 7F4CB59A24A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests.xctest */; + productReference = 7F4CB59A24A42AAD00CC0889 /* AidemPythonDemoUITests.xctest */; productType = "com.apple.product-type.bundle.ui-testing"; }; /* End PBXNativeTarget section */ @@ -443,7 +443,7 @@ }; }; }; - buildConfigurationList = 7F4CB56F24A42AAB00CC0889 /* Build configuration list for PBXProject "PythonForVideoMemos-Demo" */; + buildConfigurationList = 7F4CB56F24A42AAB00CC0889 /* Build configuration list for PBXProject "AidemPythonDemo" */; compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; @@ -460,9 +460,9 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 7F4CB57324A42AAB00CC0889 /* PythonForVideoMemos-Demo */, - 7F4CB58E24A42AAD00CC0889 /* PythonForVideoMemos-DemoTests */, - 7F4CB59924A42AAD00CC0889 /* PythonForVideoMemos-DemoUITests */, + 7F4CB57324A42AAB00CC0889 /* AidemPythonDemo */, + 7F4CB58E24A42AAD00CC0889 /* AidemPythonDemoTests */, + 7F4CB59924A42AAD00CC0889 /* AidemPythonDemoUITests */, ); }; /* End PBXProject section */ @@ -550,7 +550,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7F4CB59424A42AAD00CC0889 /* PythonForVideoMemos_DemoTests.m in Sources */, + 7F4CB59424A42AAD00CC0889 /* AidemPythonDemoTests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -558,7 +558,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7F4CB59F24A42AAD00CC0889 /* PythonForVideoMemos_DemoUITests.m in Sources */, + 7F4CB59F24A42AAD00CC0889 /* AidemPythonDemoUITests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -567,12 +567,12 @@ /* Begin PBXTargetDependency section */ 7F4CB59124A42AAD00CC0889 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 7F4CB57324A42AAB00CC0889 /* PythonForVideoMemos-Demo */; + target = 7F4CB57324A42AAB00CC0889 /* AidemPythonDemo */; targetProxy = 7F4CB59024A42AAD00CC0889 /* PBXContainerItemProxy */; }; 7F4CB59C24A42AAD00CC0889 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 7F4CB57324A42AAB00CC0889 /* PythonForVideoMemos-Demo */; + target = 7F4CB57324A42AAB00CC0889 /* AidemPythonDemo */; targetProxy = 7F4CB59B24A42AAD00CC0889 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -738,12 +738,12 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; ENABLE_BITCODE = NO; - INFOPLIST_FILE = "PythonForVideoMemos-Demo/SupportingFiles/Info.plist"; + INFOPLIST_FILE = AidemPythonDemo/SupportingFiles/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-Demo"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemo; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; }; @@ -756,12 +756,12 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; ENABLE_BITCODE = NO; - INFOPLIST_FILE = "PythonForVideoMemos-Demo/SupportingFiles/Info.plist"; + INFOPLIST_FILE = AidemPythonDemo/SupportingFiles/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-Demo"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemo; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; }; @@ -773,17 +773,17 @@ BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; - INFOPLIST_FILE = "PythonForVideoMemos-DemoTests/Info.plist"; + INFOPLIST_FILE = AidemPythonDemoTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.5; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-DemoTests"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemoTests; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PythonForVideoMemos-Demo.app/PythonForVideoMemos-Demo"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AidemPythonDemo.app/AidemPythonDemo"; }; name = Debug; }; @@ -793,17 +793,17 @@ BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; - INFOPLIST_FILE = "PythonForVideoMemos-DemoTests/Info.plist"; + INFOPLIST_FILE = AidemPythonDemoTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.5; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-DemoTests"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemoTests; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PythonForVideoMemos-Demo.app/PythonForVideoMemos-Demo"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AidemPythonDemo.app/AidemPythonDemo"; }; name = Release; }; @@ -812,16 +812,16 @@ buildSettings = { CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; - INFOPLIST_FILE = "PythonForVideoMemos-DemoUITests/Info.plist"; + INFOPLIST_FILE = AidemPythonDemoUITests/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-DemoUITests"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemoUITests; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; - TEST_TARGET_NAME = "PythonForVideoMemos-Demo"; + TEST_TARGET_NAME = AidemPythonDemo; }; name = Debug; }; @@ -830,23 +830,23 @@ buildSettings = { CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = QDYF4HH8B8; - INFOPLIST_FILE = "PythonForVideoMemos-DemoUITests/Info.plist"; + INFOPLIST_FILE = AidemPythonDemoUITests/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.kjuly.PythonForVideoMemos-DemoUITests"; + PRODUCT_BUNDLE_IDENTIFIER = com.kjuly.AidemPythonDemoUITests; PRODUCT_NAME = "$(TARGET_NAME)"; TARGETED_DEVICE_FAMILY = "1,2"; - TEST_TARGET_NAME = "PythonForVideoMemos-Demo"; + TEST_TARGET_NAME = AidemPythonDemo; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 7F4CB56F24A42AAB00CC0889 /* Build configuration list for PBXProject "PythonForVideoMemos-Demo" */ = { + 7F4CB56F24A42AAB00CC0889 /* Build configuration list for PBXProject "AidemPythonDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( 7F4CB5A124A42AAD00CC0889 /* Debug */, @@ -855,7 +855,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7F4CB5A324A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-Demo" */ = { + 7F4CB5A324A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( 7F4CB5A424A42AAD00CC0889 /* Debug */, @@ -864,7 +864,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7F4CB5A624A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-DemoTests" */ = { + 7F4CB5A624A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemoTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 7F4CB5A724A42AAD00CC0889 /* Debug */, @@ -873,7 +873,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7F4CB5A924A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "PythonForVideoMemos-DemoUITests" */ = { + 7F4CB5A924A42AAD00CC0889 /* Build configuration list for PBXNativeTarget "AidemPythonDemoUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( 7F4CB5AA24A42AAD00CC0889 /* Debug */, diff --git a/AidemPythonDemo/AidemPythonDemo.xcodeproj/xcshareddata/xcschemes/AidemPythonDemo.xcscheme b/AidemPythonDemo/AidemPythonDemo.xcodeproj/xcshareddata/xcschemes/AidemPythonDemo.xcscheme new file mode 100644 index 0000000..a4204c1 --- /dev/null +++ b/AidemPythonDemo/AidemPythonDemo.xcodeproj/xcshareddata/xcschemes/AidemPythonDemo.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.h b/AidemPythonDemo/AidemPythonDemo/AppDelegate.h similarity index 87% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.h rename to AidemPythonDemo/AidemPythonDemo/AppDelegate.h index ca97428..4c16a88 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.h +++ b/AidemPythonDemo/AidemPythonDemo/AppDelegate.h @@ -1,6 +1,6 @@ // // AppDelegate.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.m b/AidemPythonDemo/AidemPythonDemo/AppDelegate.m similarity index 97% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.m rename to AidemPythonDemo/AidemPythonDemo/AppDelegate.m index c31b0f6..b344bf6 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/AppDelegate.m +++ b/AidemPythonDemo/AidemPythonDemo/AppDelegate.m @@ -1,6 +1,6 @@ // // AppDelegate.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.h b/AidemPythonDemo/AidemPythonDemo/Constants.h similarity index 94% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.h rename to AidemPythonDemo/AidemPythonDemo/Constants.h index 2465122..bf2a967 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.h +++ b/AidemPythonDemo/AidemPythonDemo/Constants.h @@ -1,6 +1,6 @@ // // Constants.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.m b/AidemPythonDemo/AidemPythonDemo/Constants.m similarity index 93% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.m rename to AidemPythonDemo/AidemPythonDemo/Constants.m index de4ee4d..1e5e0d9 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/Constants.m +++ b/AidemPythonDemo/AidemPythonDemo/Constants.m @@ -1,6 +1,6 @@ // // Constants.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.h b/AidemPythonDemo/AidemPythonDemo/SceneDelegate.h similarity index 89% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.h rename to AidemPythonDemo/AidemPythonDemo/SceneDelegate.h index e2df390..b8e8991 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.h +++ b/AidemPythonDemo/AidemPythonDemo/SceneDelegate.h @@ -1,6 +1,6 @@ // // SceneDelegate.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.m b/AidemPythonDemo/AidemPythonDemo/SceneDelegate.m similarity index 98% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.m rename to AidemPythonDemo/AidemPythonDemo/SceneDelegate.m index fdf0a85..4bec905 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SceneDelegate.m +++ b/AidemPythonDemo/AidemPythonDemo/SceneDelegate.m @@ -1,6 +1,6 @@ // // SceneDelegate.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Assets.xcassets/Contents.json b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/Assets.xcassets/Contents.json similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Assets.xcassets/Contents.json rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/Assets.xcassets/Contents.json diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Base.lproj/LaunchScreen.storyboard b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Base.lproj/LaunchScreen.storyboard rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/Base.lproj/LaunchScreen.storyboard diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Base.lproj/Main.storyboard b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/Base.lproj/Main.storyboard similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Base.lproj/Main.storyboard rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/Base.lproj/Main.storyboard diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Info.plist b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/Info.plist similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/Info.plist rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/Info.plist diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/main.m b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/main.m similarity index 94% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/main.m rename to AidemPythonDemo/AidemPythonDemo/SupportingFiles/main.m index c111004..b50817b 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/SupportingFiles/main.m +++ b/AidemPythonDemo/AidemPythonDemo/SupportingFiles/main.m @@ -1,6 +1,6 @@ // // main.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.h b/AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.h similarity index 96% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.h rename to AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.h index 2d61336..f363c54 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.h +++ b/AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.h @@ -1,6 +1,6 @@ // // TableViewDownloadingCell.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.m b/AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.m similarity index 99% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.m rename to AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.m index 86637df..7d9f48f 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/TableViewDownloadingCell.m +++ b/AidemPythonDemo/AidemPythonDemo/TableViewDownloadingCell.m @@ -1,6 +1,6 @@ // // TableViewDownloadingCell.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 3/7/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.h b/AidemPythonDemo/AidemPythonDemo/ViewController.h similarity index 86% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.h rename to AidemPythonDemo/AidemPythonDemo/ViewController.h index 4ecd3a6..268d697 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.h +++ b/AidemPythonDemo/AidemPythonDemo/ViewController.h @@ -1,6 +1,6 @@ // // ViewController.h -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.m b/AidemPythonDemo/AidemPythonDemo/ViewController.m similarity index 99% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.m rename to AidemPythonDemo/AidemPythonDemo/ViewController.m index 3c2416e..d36af24 100644 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-Demo/ViewController.m +++ b/AidemPythonDemo/AidemPythonDemo/ViewController.m @@ -1,6 +1,6 @@ // // ViewController.m -// PythonForVideoMemos-Demo +// AidemPythonDemo // // Created by Kjuly on 25/6/2020. // Copyright © 2020 Kjuly. All rights reserved. diff --git a/AidemPythonDemo/AidemPythonDemoTests/AidemPythonDemoTests.m b/AidemPythonDemo/AidemPythonDemoTests/AidemPythonDemoTests.m new file mode 100644 index 0000000..04dab3e --- /dev/null +++ b/AidemPythonDemo/AidemPythonDemoTests/AidemPythonDemoTests.m @@ -0,0 +1,37 @@ +// +// AidemPythonDemoTests.m +// AidemPythonDemoTests +// +// Created by Kjuly on 25/6/2020. +// Copyright © 2020 Kjuly. All rights reserved. +// + +#import + +@interface AidemPythonDemoTests : XCTestCase + +@end + +@implementation AidemPythonDemoTests + +- (void)setUp { + // Put setup code here. This method is called before the invocation of each test method in the class. +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. +} + +- (void)testExample { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. +} + +- (void)testPerformanceExample { + // This is an example of a performance test case. + [self measureBlock:^{ + // Put the code you want to measure the time of here. + }]; +} + +@end diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/Info.plist b/AidemPythonDemo/AidemPythonDemoTests/Info.plist similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/Info.plist rename to AidemPythonDemo/AidemPythonDemoTests/Info.plist diff --git a/AidemPythonDemo/AidemPythonDemoUITests/AidemPythonDemoUITests.m b/AidemPythonDemo/AidemPythonDemoUITests/AidemPythonDemoUITests.m new file mode 100644 index 0000000..ffdda3d --- /dev/null +++ b/AidemPythonDemo/AidemPythonDemoUITests/AidemPythonDemoUITests.m @@ -0,0 +1,48 @@ +// +// AidemPythonDemoUITests.m +// AidemPythonDemoUITests +// +// Created by Kjuly on 25/6/2020. +// Copyright © 2020 Kjuly. All rights reserved. +// + +#import + +@interface AidemPythonDemoUITests : XCTestCase + +@end + +@implementation AidemPythonDemoUITests + +- (void)setUp { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + self.continueAfterFailure = NO; + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. +} + +- (void)testExample { + // UI tests must launch the application that they test. + XCUIApplication *app = [[XCUIApplication alloc] init]; + [app launch]; + + // Use recording to get started writing UI tests. + // Use XCTAssert and related functions to verify your tests produce the correct results. +} + +- (void)testLaunchPerformance { + if (@available(macOS 10.15, iOS 13.0, tvOS 13.0, *)) { + // This measures how long it takes to launch your application. + [self measureWithMetrics:@[XCTOSSignpostMetric.applicationLaunchMetric] block:^{ + [[[XCUIApplication alloc] init] launch]; + }]; + } +} + +@end diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/Info.plist b/AidemPythonDemo/AidemPythonDemoUITests/Info.plist similarity index 100% rename from PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/Info.plist rename to AidemPythonDemo/AidemPythonDemoUITests/Info.plist diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/PythonForVideoMemos_DemoTests.m b/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/PythonForVideoMemos_DemoTests.m deleted file mode 100644 index 91523d9..0000000 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoTests/PythonForVideoMemos_DemoTests.m +++ /dev/null @@ -1,37 +0,0 @@ -// -// PythonForVideoMemos_DemoTests.m -// PythonForVideoMemos-DemoTests -// -// Created by Kjuly on 25/6/2020. -// Copyright © 2020 Kjuly. All rights reserved. -// - -#import - -@interface PythonForVideoMemos_DemoTests : XCTestCase - -@end - -@implementation PythonForVideoMemos_DemoTests - -- (void)setUp { - // Put setup code here. This method is called before the invocation of each test method in the class. -} - -- (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. -} - -- (void)testExample { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct results. -} - -- (void)testPerformanceExample { - // This is an example of a performance test case. - [self measureBlock:^{ - // Put the code you want to measure the time of here. - }]; -} - -@end diff --git a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/PythonForVideoMemos_DemoUITests.m b/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/PythonForVideoMemos_DemoUITests.m deleted file mode 100644 index fb2cfb2..0000000 --- a/PythonForVideoMemos-Demo/PythonForVideoMemos-DemoUITests/PythonForVideoMemos_DemoUITests.m +++ /dev/null @@ -1,48 +0,0 @@ -// -// PythonForVideoMemos_DemoUITests.m -// PythonForVideoMemos-DemoUITests -// -// Created by Kjuly on 25/6/2020. -// Copyright © 2020 Kjuly. All rights reserved. -// - -#import - -@interface PythonForVideoMemos_DemoUITests : XCTestCase - -@end - -@implementation PythonForVideoMemos_DemoUITests - -- (void)setUp { - // Put setup code here. This method is called before the invocation of each test method in the class. - - // In UI tests it is usually best to stop immediately when a failure occurs. - self.continueAfterFailure = NO; - - // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. -} - -- (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. -} - -- (void)testExample { - // UI tests must launch the application that they test. - XCUIApplication *app = [[XCUIApplication alloc] init]; - [app launch]; - - // Use recording to get started writing UI tests. - // Use XCTAssert and related functions to verify your tests produce the correct results. -} - -- (void)testLaunchPerformance { - if (@available(macOS 10.15, iOS 13.0, tvOS 13.0, *)) { - // This measures how long it takes to launch your application. - [self measureWithMetrics:@[XCTOSSignpostMetric.applicationLaunchMetric] block:^{ - [[[XCUIApplication alloc] init] launch]; - }]; - } -} - -@end