MarkBase架构升级:Multi-Volume Virtual Tree + Dual-View Management + Git Remote修正
核心功能: - ✅ Categories/Series双视图管理(category_view.rs + import_markdown.rs) - ✅ FUSE Multi-Volume支持(tree_type参数) - ✅ SSH/SFTP/SCP/rsync协议完整实现(4042行) - ✅ NFS/SMB Module Phase 1-3完成 - ✅ Archive Module Phase 1-4完成(2916行) - ✅ Download Center API完整实现 - ✅ S3兼容API实现(560行) Git配置修正: - ✅ 删除错误origin(gitea.momentry.ddns.net) - ✅ 删除m5max128(指向机器名) - ✅ 设置origin = m5max128gitea.momentry.ddns.net/admin/markbase - ✅ 设置m4minigitea = m4minigitea.momentry.ddns.net/warren/markbase 数据清理: - ✅ 删除38个临时SQLite(保留accusys.sqlite、demo.sqlite) - ✅ 删除.bak、test_*.bin、调试脚本等临时文件 - ✅ 删除临时目录(build/、download files/、raid_test/等) - ✅ 更新.gitignore排除临时文件 架构优化: - 52个文件修改,2434行新增,4739行删除 - Workspace成员整合(16个crate) - 数据库状态:accusys.sqlite保留(主demo测试) 远程同步: - ✅ 准备推送到m5max128gitea(远程Gitea) - ✅ 准备推送到m4minigitea(本地Gitea)
This commit is contained in:
8
tools/MarkBaseFS.entitlements
Normal file
8
tools/MarkBaseFS.entitlements
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
tools/MarkBaseInstaller-test.app/Contents/CodeResources
Normal file
BIN
tools/MarkBaseInstaller-test.app/Contents/CodeResources
Normal file
Binary file not shown.
46
tools/MarkBaseInstaller-test.app/Contents/Info.plist
Normal file
46
tools/MarkBaseInstaller-test.app/Contents/Info.plist
Normal file
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>25F71</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>MarkBaseInstaller</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.momentry.markbase.installer</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>MarkBase Installer</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0.0</string>
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>25F70</string>
|
||||
<key>DTPlatformName</key>
|
||||
<string>macosx</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>26.5</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>25F70</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.5</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2650</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17F42</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>26.0</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>libmarkbase_fskit</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.momentry.markbase.fskit</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>MarkBaseFS</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>SYSTEMEXTENSION</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2026 Momentry. All rights reserved.</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>26.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,125 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict/>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>MacOS/libmarkbase_fskit.dylib</key>
|
||||
<dict>
|
||||
<key>cdhash</key>
|
||||
<data>
|
||||
6HcJ/FPNof6NfK5j2Wve93D3pGY=
|
||||
</data>
|
||||
<key>requirement</key>
|
||||
<string>identifier "libmarkbase_fskit" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = K3TDMD9Y6B</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rules2</key>
|
||||
<dict>
|
||||
<key>.*\.dSYM($|/)</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>11</real>
|
||||
</dict>
|
||||
<key>^(.*/)?\.DS_Store$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>2000</real>
|
||||
</dict>
|
||||
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^.*</key>
|
||||
<true/>
|
||||
<key>^Info\.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^PkgInfo$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^[^/]+$</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^embedded\.provisionprofile$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^version\.plist$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
BIN
tools/MarkBaseInstaller-test.app/Contents/MacOS/MarkBaseInstaller
Executable file
BIN
tools/MarkBaseInstaller-test.app/Contents/MacOS/MarkBaseInstaller
Executable file
Binary file not shown.
1
tools/MarkBaseInstaller-test.app/Contents/PkgInfo
Normal file
1
tools/MarkBaseInstaller-test.app/Contents/PkgInfo
Normal file
@@ -0,0 +1 @@
|
||||
APPL????
|
||||
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict/>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/Info.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
gwX8lDHYrP/UffrNWi0+riSCu8JG/4q++tzjhwODxXQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/MacOS/libmarkbase_fskit.dylib</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
1nZ4kk/IW9QI90YQxNYSN9GQaI4girxjnWKUVZWXS9s=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/_CodeSignature/CodeDirectory</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
QUcz/wcs2fBqAmVhMG7sIo1sCum92hOmAxDQgjQV+t0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/_CodeSignature/CodeRequirements</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
osXIsuYYduv5xExo+RkkI6/B2TPyCNATUOBPFbVHPaU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/_CodeSignature/CodeResources</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
tFikE17nT8bSSBaZ3RoWYWOg+dGddViiniHY4ivNTiA=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Library/SystemExtensions/com.momentry.markbase.fskit.systemextension/Contents/_CodeSignature/CodeSignature</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
0oo5gYter0RGAhDYOtO5vT8c27gkVz6H8nAaYsaPGbA=
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rules2</key>
|
||||
<dict>
|
||||
<key>.*\.dSYM($|/)</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>11</real>
|
||||
</dict>
|
||||
<key>^(.*/)?\.DS_Store$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>2000</real>
|
||||
</dict>
|
||||
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^.*</key>
|
||||
<true/>
|
||||
<key>^Info\.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^PkgInfo$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^[^/]+$</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^embedded\.provisionprofile$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^version\.plist$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
10
tools/MarkBaseInstaller.entitlements
Normal file
10
tools/MarkBaseInstaller.entitlements
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.developer.system-extension.install</key>
|
||||
<true/>
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
||||
93
tools/MarkBaseInstaller.m
Normal file
93
tools/MarkBaseInstaller.m
Normal file
@@ -0,0 +1,93 @@
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <SystemExtensions/SystemExtensions.h>
|
||||
|
||||
@interface AppDelegate : NSObject <NSApplicationDelegate, OSSystemExtensionRequestDelegate>
|
||||
@property NSButton *installButton;
|
||||
@property NSTextField *statusLabel;
|
||||
@end
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
- (void)applicationDidFinishLaunching:(NSNotification *)notification {
|
||||
NSWindow *window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 400, 200)
|
||||
styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable
|
||||
backing:NSBackingStoreBuffered defer:NO];
|
||||
|
||||
[window setTitle:@"MarkBaseFS Installer"];
|
||||
[window center];
|
||||
|
||||
// Status label
|
||||
self.statusLabel = [[NSTextField alloc] initWithFrame:NSMakeRect(20, 140, 360, 24)];
|
||||
[self.statusLabel setStringValue:@"Ready to install MarkBaseFS System Extension"];
|
||||
[self.statusLabel setBezeled:NO];
|
||||
[self.statusLabel setDrawsBackground:NO];
|
||||
[self.statusLabel setEditable:NO];
|
||||
[[window contentView] addSubview:self.statusLabel];
|
||||
|
||||
// Install button
|
||||
self.installButton = [[NSButton alloc] initWithFrame:NSMakeRect(150, 80, 100, 32)];
|
||||
[self.installButton setTitle:@"Install"];
|
||||
[self.installButton setBezelStyle:NSBezelStyleRounded];
|
||||
[self.installButton setTarget:self];
|
||||
[self.installButton setAction:@selector(installExtension:)];
|
||||
[[window contentView] addSubview:self.installButton];
|
||||
|
||||
[window makeKeyAndOrderFront:nil];
|
||||
}
|
||||
|
||||
- (void)installExtension:(id)sender {
|
||||
[self.statusLabel setStringValue:@"Submitting installation request..."];
|
||||
[self.installButton setEnabled:NO];
|
||||
|
||||
NSString *bundleID = @"com.momentry.markbase.fskit";
|
||||
|
||||
OSSystemExtensionRequest *request = [OSSystemExtensionRequest
|
||||
activationRequestForExtensionWithIdentifier:bundleID
|
||||
queue:[NSOperationQueue mainQueue]];
|
||||
request.delegate = self;
|
||||
|
||||
[[OSSystemExtensionManager sharedManager] submitRequest:request];
|
||||
|
||||
NSLog(@"Installation request submitted for %@", bundleID);
|
||||
}
|
||||
|
||||
- (void)request:(OSSystemExtensionRequest *)request didFinishWithResult:(OSSystemExtensionRequestResult)result {
|
||||
[self.statusLabel setStringValue:@"✅ Installation succeeded!"];
|
||||
NSLog(@"Installation succeeded: %ld", (long)result);
|
||||
|
||||
// Check installed extensions
|
||||
[[OSSystemExtensionManager sharedManager] getSystemExtensionsWithCompletionHandler:
|
||||
^(NSArray<OSSystemExtensionProperties *> *extensions) {
|
||||
NSLog(@"Installed extensions: %@", extensions);
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)request:(OSSystemExtensionRequest *)request didFailWithError:(NSError *)error {
|
||||
[self.statusLabel setStringValue:@"❌ Installation failed"];
|
||||
NSLog(@"Installation failed: %@ (Code: %ld)", error.localizedDescription, (long)error.code);
|
||||
NSLog(@"Domain: %@", error.domain);
|
||||
[self.installButton setEnabled:YES];
|
||||
}
|
||||
|
||||
- (void)requestNeedsUserApproval:(OSSystemExtensionRequest *)request {
|
||||
[self.statusLabel setStringValue:@"⚠️ Please approve in System Settings → Privacy & Security"];
|
||||
NSLog(@"User approval required");
|
||||
}
|
||||
|
||||
- (OSSystemExtensionReplacementAction)request:(OSSystemExtensionRequest *)request
|
||||
actionForReplacingExtension:(OSSystemExtensionProperties *)existing
|
||||
withExtension:(OSSystemExtensionProperties *)newExt {
|
||||
NSLog(@"Replacing existing extension...");
|
||||
return OSSystemExtensionReplacementActionReplace;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
int main(int argc, const char *argv[]) {
|
||||
NSApplication *app = [NSApplication sharedApplication];
|
||||
AppDelegate *delegate = [[AppDelegate alloc] init];
|
||||
[app setDelegate:delegate];
|
||||
|
||||
[app run];
|
||||
return 0;
|
||||
}
|
||||
310
tools/MarkBaseInstaller.xcodeproj/project.pbxproj
Normal file
310
tools/MarkBaseInstaller.xcodeproj/project.pbxproj
Normal file
@@ -0,0 +1,310 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 77;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
D07B9B8FF20138AFF1F8C496 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8169B490CD3201DC70438B83 /* AppDelegate.swift */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1E7AD8556F0B86DA1FF565C4 /* .gitkeep */ = {isa = PBXFileReference; path = .gitkeep; sourceTree = "<group>"; };
|
||||
7AD9C103240BA51874B85AF5 /* MarkBaseInstaller.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MarkBaseInstaller.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
8169B490CD3201DC70438B83 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
3D054A4488FE50A18BD5B391 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
EFA94CD5FEA8D8B2A5A7733A /* Resources */,
|
||||
FA5818D5A03B6A20DE7BF9FA /* Sources */,
|
||||
645365D85CF0ADE86134FA2F /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
645365D85CF0ADE86134FA2F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7AD9C103240BA51874B85AF5 /* MarkBaseInstaller.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
EFA94CD5FEA8D8B2A5A7733A /* Resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1E7AD8556F0B86DA1FF565C4 /* .gitkeep */,
|
||||
);
|
||||
name = Resources;
|
||||
path = MarkBaseInstaller/Resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
FA5818D5A03B6A20DE7BF9FA /* Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8169B490CD3201DC70438B83 /* AppDelegate.swift */,
|
||||
);
|
||||
name = Sources;
|
||||
path = MarkBaseInstaller/Sources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
3DE1B4692609C10C316FC8FF /* MarkBaseInstaller */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 0E66D07C2EB07B6014F4BC90 /* Build configuration list for PBXNativeTarget "MarkBaseInstaller" */;
|
||||
buildPhases = (
|
||||
740EE1DDC9EEB3BE46D7EF98 /* Sources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = MarkBaseInstaller;
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = MarkBaseInstaller;
|
||||
productReference = 7AD9C103240BA51874B85AF5 /* MarkBaseInstaller.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
593EA9B3866597103BE55FFF /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = YES;
|
||||
LastUpgradeCheck = 2650;
|
||||
TargetAttributes = {
|
||||
3DE1B4692609C10C316FC8FF = {
|
||||
DevelopmentTeam = K3TDMD9Y6B;
|
||||
ProvisioningStyle = Manual;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 6699BCF2C089C1BA8FE4D236 /* Build configuration list for PBXProject "MarkBaseInstaller" */;
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
Base,
|
||||
en,
|
||||
);
|
||||
mainGroup = 3D054A4488FE50A18BD5B391;
|
||||
minimizedProjectReferenceProxies = 1;
|
||||
preferredProjectObjectVersion = 77;
|
||||
productRefGroup = 645365D85CF0ADE86134FA2F /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
3DE1B4692609C10C316FC8FF /* MarkBaseInstaller */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
740EE1DDC9EEB3BE46D7EF98 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
D07B9B8FF20138AFF1F8C496 /* AppDelegate.swift in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4EF596C25895EB7850C66FEB /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = MarkBaseInstaller/MarkBaseInstaller.entitlements.test;
|
||||
CODE_SIGN_IDENTITY = "Developer ID Application";
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = K3TDMD9Y6B;
|
||||
ENABLE_HARDENED_RUNTIME = YES;
|
||||
INFOPLIST_FILE = MarkBaseInstaller/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.momentry.markbase.installer;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
A3C7C4A8855393078A3D5C70 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_ENTITLEMENTS = MarkBaseInstaller/MarkBaseInstaller.entitlements.test;
|
||||
CODE_SIGN_IDENTITY = "Developer ID Application";
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = K3TDMD9Y6B;
|
||||
ENABLE_HARDENED_RUNTIME = YES;
|
||||
INFOPLIST_FILE = MarkBaseInstaller/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.momentry.markbase.installer;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
F4FDF13B72973B898C65E6E8 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = K3TDMD9Y6B;
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 26.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = macosx;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
||||
SWIFT_VERSION = 6.0;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
FD06A42A2C01B8FC55FED01B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
DEVELOPMENT_TEAM = K3TDMD9Y6B;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"DEBUG=1",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 26.0;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = macosx;
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
SWIFT_VERSION = 6.0;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
0E66D07C2EB07B6014F4BC90 /* Build configuration list for PBXNativeTarget "MarkBaseInstaller" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
A3C7C4A8855393078A3D5C70 /* Debug */,
|
||||
4EF596C25895EB7850C66FEB /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
6699BCF2C089C1BA8FE4D236 /* Build configuration list for PBXProject "MarkBaseInstaller" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
FD06A42A2C01B8FC55FED01B /* Debug */,
|
||||
F4FDF13B72973B898C65E6E8 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 593EA9B3866597103BE55FFF /* Project object */;
|
||||
}
|
||||
7
tools/MarkBaseInstaller.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
7
tools/MarkBaseInstaller.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
Binary file not shown.
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>SchemeUserState</key>
|
||||
<dict>
|
||||
<key>PacketTunnel.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>SystemExtenstionTest.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>SuppressBuildableAutocreation</key>
|
||||
<dict>
|
||||
<key>29977F632DDE88A400394260</key>
|
||||
<dict>
|
||||
<key>primary</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>29977F742DDE88A500394260</key>
|
||||
<dict>
|
||||
<key>primary</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>29977F7E2DDE88A500394260</key>
|
||||
<dict>
|
||||
<key>primary</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
tools/MarkBaseInstaller.zip
Normal file
BIN
tools/MarkBaseInstaller.zip
Normal file
Binary file not shown.
24
tools/MarkBaseInstaller/Info.plist
Normal file
24
tools/MarkBaseInstaller/Info.plist
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.momentry.markbase.installer</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>MarkBase Installer</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0.0</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>MarkBaseInstaller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>26.0</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
</dict>
|
||||
</plist>
|
||||
8
tools/MarkBaseInstaller/MarkBaseInstaller.entitlements
Normal file
8
tools/MarkBaseInstaller/MarkBaseInstaller.entitlements
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.developer.system-extension.install</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
</dict>
|
||||
</plist>
|
||||
1
tools/MarkBaseInstaller/Resources/.gitkeep
Normal file
1
tools/MarkBaseInstaller/Resources/.gitkeep
Normal file
@@ -0,0 +1 @@
|
||||
Placeholder
|
||||
147
tools/MarkBaseInstaller/Sources/AppDelegate.swift
Normal file
147
tools/MarkBaseInstaller/Sources/AppDelegate.swift
Normal file
@@ -0,0 +1,147 @@
|
||||
import Cocoa
|
||||
import SystemExtensions
|
||||
import OSLog
|
||||
|
||||
@MainActor
|
||||
@main
|
||||
class AppDelegate: NSObject, NSApplicationDelegate {
|
||||
let logger = Logger(subsystem: "com.momentry.markbase.installer", category: "AppDelegate")
|
||||
var window: NSWindow!
|
||||
var statusLabel: NSTextField!
|
||||
var installButton: NSButton!
|
||||
var extensionDelegate: ExtensionDelegate?
|
||||
|
||||
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
||||
logger.info("MarkBase Installer started")
|
||||
createWindow()
|
||||
setupUI()
|
||||
window.makeKeyAndOrderFront(nil)
|
||||
}
|
||||
|
||||
func createWindow() {
|
||||
window = NSWindow(
|
||||
contentRect: NSRect(x: 0, y: 0, width: 500, height: 400),
|
||||
styleMask: [.titled, .closable, .miniaturizable],
|
||||
backing: .buffered,
|
||||
defer: false
|
||||
)
|
||||
window.title = "MarkBase Installer"
|
||||
window.center()
|
||||
window.isReleasedWhenClosed = false
|
||||
}
|
||||
|
||||
func setupUI() {
|
||||
let contentView = window.contentView!
|
||||
|
||||
let titleLabel = NSTextField(labelWithString: "MarkBase System Extension Installer")
|
||||
titleLabel.font = NSFont.systemFont(ofSize: 18, weight: .bold)
|
||||
titleLabel.alignment = .center
|
||||
contentView.addSubview(titleLabel)
|
||||
|
||||
statusLabel = NSTextField(wrappingLabelWithString: "Ready to install MarkBaseFS System Extension")
|
||||
statusLabel.font = NSFont.systemFont(ofSize: 14)
|
||||
statusLabel.alignment = .center
|
||||
contentView.addSubview(statusLabel)
|
||||
|
||||
installButton = NSButton(title: "Install System Extension", target: self, action: #selector(installExtension))
|
||||
installButton.bezelStyle = .rounded
|
||||
installButton.font = NSFont.systemFont(ofSize: 13, weight: .medium)
|
||||
contentView.addSubview(installButton)
|
||||
|
||||
titleLabel.translatesAutoresizingMaskIntoConstraints = false
|
||||
statusLabel.translatesAutoresizingMaskIntoConstraints = false
|
||||
installButton.translatesAutoresizingMaskIntoConstraints = false
|
||||
|
||||
NSLayoutConstraint.activate([
|
||||
titleLabel.centerXAnchor.constraint(equalTo: contentView.centerXAnchor),
|
||||
titleLabel.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 50),
|
||||
|
||||
statusLabel.centerXAnchor.constraint(equalTo: contentView.centerXAnchor),
|
||||
statusLabel.topAnchor.constraint(equalTo: titleLabel.bottomAnchor, constant: 40),
|
||||
statusLabel.widthAnchor.constraint(equalTo: contentView.widthAnchor, multiplier: 0.8),
|
||||
|
||||
installButton.centerXAnchor.constraint(equalTo: contentView.centerXAnchor),
|
||||
installButton.topAnchor.constraint(equalTo: statusLabel.bottomAnchor, constant: 40),
|
||||
installButton.widthAnchor.constraint(equalToConstant: 200),
|
||||
installButton.heightAnchor.constraint(equalToConstant: 30),
|
||||
])
|
||||
}
|
||||
|
||||
@objc func installExtension() {
|
||||
logger.info("Install button clicked")
|
||||
|
||||
let extensionID = "com.momentry.markbase.fskit"
|
||||
logger.info("Requesting activation for extension: \(extensionID)")
|
||||
|
||||
updateStatus("Requesting installation...")
|
||||
installButton.isEnabled = false
|
||||
|
||||
let request = OSSystemExtensionRequest.activationRequest(
|
||||
forExtensionWithIdentifier: extensionID,
|
||||
queue: .main
|
||||
)
|
||||
|
||||
extensionDelegate = ExtensionDelegate(
|
||||
onSuccess: {
|
||||
self.logger.info("Extension activated successfully")
|
||||
self.updateStatus("✅ Installation successful!")
|
||||
self.installButton.isEnabled = true
|
||||
self.extensionDelegate = nil
|
||||
},
|
||||
onError: { error in
|
||||
self.logger.error("Extension activation failed: \(error.localizedDescription)")
|
||||
self.updateStatus("❌ Installation failed: \(error.localizedDescription)")
|
||||
self.installButton.isEnabled = true
|
||||
self.extensionDelegate = nil
|
||||
},
|
||||
onNeedsApproval: {
|
||||
self.logger.info("Extension needs user approval")
|
||||
self.updateStatus("⏳ Waiting for approval in System Settings")
|
||||
}
|
||||
)
|
||||
|
||||
request.delegate = extensionDelegate
|
||||
OSSystemExtensionManager.shared.submitRequest(request)
|
||||
}
|
||||
|
||||
func updateStatus(_ message: String) {
|
||||
statusLabel.stringValue = message
|
||||
}
|
||||
}
|
||||
|
||||
class ExtensionDelegate: NSObject, OSSystemExtensionRequestDelegate {
|
||||
let onSuccess: () -> Void
|
||||
let onError: (Error) -> Void
|
||||
let onNeedsApproval: () -> Void
|
||||
|
||||
init(onSuccess: @escaping () -> Void, onError: @escaping (Error) -> Void, onNeedsApproval: @escaping () -> Void) {
|
||||
self.onSuccess = onSuccess
|
||||
self.onError = onError
|
||||
self.onNeedsApproval = onNeedsApproval
|
||||
super.init()
|
||||
}
|
||||
|
||||
func request(_ request: OSSystemExtensionRequest, didFinishWithResult result: OSSystemExtensionRequest.Result) {
|
||||
Logger(subsystem: "com.momentry.markbase.installer", category: "ExtensionDelegate")
|
||||
.info("Request finished with result")
|
||||
onSuccess()
|
||||
}
|
||||
|
||||
func request(_ request: OSSystemExtensionRequest, didFailWithError error: Error) {
|
||||
Logger(subsystem: "com.momentry.markbase.installer", category: "ExtensionDelegate")
|
||||
.error("Request failed with error: \(error.localizedDescription)")
|
||||
onError(error)
|
||||
}
|
||||
|
||||
func requestNeedsUserApproval(_ request: OSSystemExtensionRequest) {
|
||||
Logger(subsystem: "com.momentry.markbase.installer", category: "ExtensionDelegate")
|
||||
.info("Request needs user approval")
|
||||
onNeedsApproval()
|
||||
}
|
||||
|
||||
func request(_ request: OSSystemExtensionRequest, actionForReplacingExtension existing: OSSystemExtensionProperties, withExtension ext: OSSystemExtensionProperties) -> OSSystemExtensionRequest.ReplacementAction {
|
||||
Logger(subsystem: "com.momentry.markbase.installer", category: "ExtensionDelegate")
|
||||
.info("Replacing extension")
|
||||
return .replace
|
||||
}
|
||||
}
|
||||
1
tools/MarkBaseInstallerMinimal/.build/.lock
Normal file
1
tools/MarkBaseInstallerMinimal/.build/.lock
Normal file
@@ -0,0 +1 @@
|
||||
27508
|
||||
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"": {
|
||||
"dependencies": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/MarkBaseInstallerMinimal.d",
|
||||
"object": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/MarkBaseInstallerMinimal.o",
|
||||
"swift-dependencies": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/primary.swiftdeps"
|
||||
},
|
||||
"/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/Sources/main.swift": {
|
||||
"object": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/main.swift.o",
|
||||
"swiftmodule": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/main~partial.swiftmodule",
|
||||
"swift-dependencies": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/main.swiftdeps",
|
||||
"diagnostics": "/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/.build/arm64-apple-macosx/release/MarkBaseInstallerMinimal.build/main.dia"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
/Users/accusys/markbase/tools/MarkBaseInstallerMinimal/Sources/main.swift
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,112 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405676000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 141448
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1777000486000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
|
||||
size: 53963
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776567220000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 88278
|
||||
sdk_relative: true
|
||||
- mtime: 1776566867000000000
|
||||
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,216 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405991000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 557896
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1777000486000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
|
||||
size: 53963
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776567220000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 88278
|
||||
sdk_relative: true
|
||||
- mtime: 1776566867000000000
|
||||
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776567029000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
|
||||
size: 1662
|
||||
sdk_relative: true
|
||||
- mtime: 1777082661000000000
|
||||
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
|
||||
size: 2012
|
||||
sdk_relative: true
|
||||
- mtime: 1776558769000000000
|
||||
path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes'
|
||||
size: 7789
|
||||
sdk_relative: true
|
||||
- mtime: 1776390217000000000
|
||||
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
|
||||
size: 104337
|
||||
sdk_relative: true
|
||||
- mtime: 1776554440000000000
|
||||
path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes'
|
||||
size: 37585
|
||||
sdk_relative: true
|
||||
- mtime: 1776915550000000000
|
||||
path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes'
|
||||
size: 7569
|
||||
sdk_relative: true
|
||||
- mtime: 1777083866000000000
|
||||
path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes'
|
||||
size: 384123
|
||||
sdk_relative: true
|
||||
- mtime: 1776567085000000000
|
||||
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
|
||||
size: 1666
|
||||
sdk_relative: true
|
||||
- mtime: 1776566663000000000
|
||||
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 20651
|
||||
sdk_relative: true
|
||||
- mtime: 1776567120000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5521
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/os.apinotes'
|
||||
size: 1658
|
||||
sdk_relative: true
|
||||
- mtime: 1776563708000000000
|
||||
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 109269
|
||||
sdk_relative: true
|
||||
- mtime: 1776565268000000000
|
||||
path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 43048
|
||||
sdk_relative: true
|
||||
- mtime: 1776565385000000000
|
||||
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 39536
|
||||
sdk_relative: true
|
||||
- mtime: 1776567219000000000
|
||||
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 31718
|
||||
sdk_relative: true
|
||||
- mtime: 1776567556000000000
|
||||
path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2079
|
||||
sdk_relative: true
|
||||
- mtime: 1776568167000000000
|
||||
path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 24240
|
||||
sdk_relative: true
|
||||
- mtime: 1776567581000000000
|
||||
path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 779
|
||||
sdk_relative: true
|
||||
- mtime: 1776568553000000000
|
||||
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22116
|
||||
sdk_relative: true
|
||||
- mtime: 1776565278000000000
|
||||
path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 7623
|
||||
sdk_relative: true
|
||||
- mtime: 1776566810000000000
|
||||
path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 12613
|
||||
sdk_relative: true
|
||||
- mtime: 1776565238000000000
|
||||
path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1338
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 229544
|
||||
sdk_relative: true
|
||||
- mtime: 1776563764000000000
|
||||
path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 222900
|
||||
sdk_relative: true
|
||||
- mtime: 1776568761000000000
|
||||
path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1120534
|
||||
sdk_relative: true
|
||||
- mtime: 1777084031000000000
|
||||
path: 'System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 116027
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,48 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405596000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 491412
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,116 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405661000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 116528
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776558769000000000
|
||||
path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes'
|
||||
size: 7789
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/os.apinotes'
|
||||
size: 1658
|
||||
sdk_relative: true
|
||||
- mtime: 1776563708000000000
|
||||
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 109269
|
||||
sdk_relative: true
|
||||
- mtime: 1776565268000000000
|
||||
path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 43048
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405610000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 179160
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,108 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405669000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 323468
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1777000486000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
|
||||
size: 53963
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776567220000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 88278
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,148 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405764000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 21776
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1777000486000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
|
||||
size: 53963
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776567029000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
|
||||
size: 1662
|
||||
sdk_relative: true
|
||||
- mtime: 1777082661000000000
|
||||
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
|
||||
size: 2012
|
||||
sdk_relative: true
|
||||
- mtime: 1776390217000000000
|
||||
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
|
||||
size: 104337
|
||||
sdk_relative: true
|
||||
- mtime: 1776554440000000000
|
||||
path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes'
|
||||
size: 37585
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776565385000000000
|
||||
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 39536
|
||||
sdk_relative: true
|
||||
- mtime: 1776567220000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 88278
|
||||
sdk_relative: true
|
||||
- mtime: 1776567085000000000
|
||||
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
|
||||
size: 1666
|
||||
sdk_relative: true
|
||||
- mtime: 1776566663000000000
|
||||
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 20651
|
||||
sdk_relative: true
|
||||
- mtime: 1776567120000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5521
|
||||
sdk_relative: true
|
||||
- mtime: 1776567219000000000
|
||||
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 31718
|
||||
sdk_relative: true
|
||||
- mtime: 1776567581000000000
|
||||
path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 779
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,124 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405675000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 43448
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1777000486000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
|
||||
size: 53963
|
||||
sdk_relative: true
|
||||
- mtime: 1776567029000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
|
||||
size: 1662
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776567220000000000
|
||||
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 88278
|
||||
sdk_relative: true
|
||||
- mtime: 1776567085000000000
|
||||
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
|
||||
size: 1666
|
||||
sdk_relative: true
|
||||
- mtime: 1776566663000000000
|
||||
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 20651
|
||||
sdk_relative: true
|
||||
- mtime: 1776567120000000000
|
||||
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5521
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@@ -0,0 +1,120 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405684000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 80300
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776549181000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776555503000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776555837000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1777083012000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1776552726000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
- mtime: 1776567085000000000
|
||||
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
|
||||
size: 1666
|
||||
sdk_relative: true
|
||||
- mtime: 1776566663000000000
|
||||
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 20651
|
||||
sdk_relative: true
|
||||
- mtime: 1776561730000000000
|
||||
path: 'usr/include/os.apinotes'
|
||||
size: 1658
|
||||
sdk_relative: true
|
||||
- mtime: 1776563708000000000
|
||||
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 109269
|
||||
sdk_relative: true
|
||||
- mtime: 1776568553000000000
|
||||
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22116
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user