AddToObsidian/AddToObsidian.xcodeproj/project.pbxproj
Paweł Orzech 6df94cd7fd
Add macOS menu bar app for quick Obsidian notes
- Menu bar app with global hotkey (⌃⌥⌘O) to capture notes
- Notes saved as Markdown with YAML frontmatter
- File naming: yyyy-MM-dd_HH-mm-ss.md
- Settings view for Obsidian vault folder selection
- Carbon API for global keyboard shortcut registration
- Security-scoped bookmarks for persistent folder access
2026-01-19 09:42:22 +00:00

422 lines
17 KiB
Text

// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 56;
objects = {
/* Begin PBXBuildFile section */
A10000010000000000000001 /* AddToObsidianApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000001 /* AddToObsidianApp.swift */; };
A10000010000000000000002 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000002 /* AppDelegate.swift */; };
A10000010000000000000003 /* NoteInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000003 /* NoteInputView.swift */; };
A10000010000000000000004 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000004 /* SettingsView.swift */; };
A10000010000000000000005 /* NoteViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000005 /* NoteViewModel.swift */; };
A10000010000000000000006 /* HotKeyManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000006 /* HotKeyManager.swift */; };
A10000010000000000000007 /* NoteFileService.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000007 /* NoteFileService.swift */; };
A10000010000000000000008 /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000008 /* SettingsManager.swift */; };
A10000010000000000000009 /* Note.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000009 /* Note.swift */; };
A10000010000000000000010 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A20000010000000000000010 /* Assets.xcassets */; };
A10000010000000000000011 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A20000010000000000000011 /* Carbon.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
A20000010000000000000001 /* AddToObsidianApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddToObsidianApp.swift; sourceTree = "<group>"; };
A20000010000000000000002 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
A20000010000000000000003 /* NoteInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoteInputView.swift; sourceTree = "<group>"; };
A20000010000000000000004 /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = "<group>"; };
A20000010000000000000005 /* NoteViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoteViewModel.swift; sourceTree = "<group>"; };
A20000010000000000000006 /* HotKeyManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HotKeyManager.swift; sourceTree = "<group>"; };
A20000010000000000000007 /* NoteFileService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoteFileService.swift; sourceTree = "<group>"; };
A20000010000000000000008 /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
A20000010000000000000009 /* Note.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Note.swift; sourceTree = "<group>"; };
A20000010000000000000010 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
A20000010000000000000011 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
A20000010000000000000012 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A20000010000000000000013 /* AddToObsidian.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = AddToObsidian.entitlements; sourceTree = "<group>"; };
A30000010000000000000001 /* AddToObsidian.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AddToObsidian.app; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
A40000010000000000000001 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A10000010000000000000011 /* Carbon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
A50000010000000000000001 = {
isa = PBXGroup;
children = (
A50000010000000000000002 /* AddToObsidian */,
A50000010000000000000007 /* Frameworks */,
A50000010000000000000008 /* Products */,
);
sourceTree = "<group>";
};
A50000010000000000000002 /* AddToObsidian */ = {
isa = PBXGroup;
children = (
A50000010000000000000003 /* App */,
A50000010000000000000004 /* Views */,
A50000010000000000000005 /* ViewModels */,
A50000010000000000000006 /* Services */,
A50000010000000000000009 /* Models */,
A50000010000000000000010 /* Resources */,
);
path = AddToObsidian;
sourceTree = "<group>";
};
A50000010000000000000003 /* App */ = {
isa = PBXGroup;
children = (
A20000010000000000000001 /* AddToObsidianApp.swift */,
A20000010000000000000002 /* AppDelegate.swift */,
);
path = App;
sourceTree = "<group>";
};
A50000010000000000000004 /* Views */ = {
isa = PBXGroup;
children = (
A20000010000000000000003 /* NoteInputView.swift */,
A20000010000000000000004 /* SettingsView.swift */,
);
path = Views;
sourceTree = "<group>";
};
A50000010000000000000005 /* ViewModels */ = {
isa = PBXGroup;
children = (
A20000010000000000000005 /* NoteViewModel.swift */,
);
path = ViewModels;
sourceTree = "<group>";
};
A50000010000000000000006 /* Services */ = {
isa = PBXGroup;
children = (
A20000010000000000000006 /* HotKeyManager.swift */,
A20000010000000000000007 /* NoteFileService.swift */,
A20000010000000000000008 /* SettingsManager.swift */,
);
path = Services;
sourceTree = "<group>";
};
A50000010000000000000007 /* Frameworks */ = {
isa = PBXGroup;
children = (
A20000010000000000000011 /* Carbon.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
A50000010000000000000008 /* Products */ = {
isa = PBXGroup;
children = (
A30000010000000000000001 /* AddToObsidian.app */,
);
name = Products;
sourceTree = "<group>";
};
A50000010000000000000009 /* Models */ = {
isa = PBXGroup;
children = (
A20000010000000000000009 /* Note.swift */,
);
path = Models;
sourceTree = "<group>";
};
A50000010000000000000010 /* Resources */ = {
isa = PBXGroup;
children = (
A20000010000000000000010 /* Assets.xcassets */,
A20000010000000000000012 /* Info.plist */,
A20000010000000000000013 /* AddToObsidian.entitlements */,
);
path = Resources;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
A60000010000000000000001 /* AddToObsidian */ = {
isa = PBXNativeTarget;
buildConfigurationList = A80000010000000000000001 /* Build configuration list for PBXNativeTarget "AddToObsidian" */;
buildPhases = (
A60000010000000000000002 /* Sources */,
A40000010000000000000001 /* Frameworks */,
A60000010000000000000003 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AddToObsidian;
productName = AddToObsidian;
productReference = A30000010000000000000001 /* AddToObsidian.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
A70000010000000000000001 /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastSwiftUpdateCheck = 1500;
LastUpgradeCheck = 1500;
TargetAttributes = {
A60000010000000000000001 = {
CreatedOnToolsVersion = 15.0;
};
};
};
buildConfigurationList = A80000010000000000000002 /* Build configuration list for PBXProject "AddToObsidian" */;
compatibilityVersion = "Xcode 14.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = A50000010000000000000001;
productRefGroup = A50000010000000000000008 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
A60000010000000000000001 /* AddToObsidian */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
A60000010000000000000003 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A10000010000000000000010 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
A60000010000000000000002 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A10000010000000000000001 /* AddToObsidianApp.swift in Sources */,
A10000010000000000000002 /* AppDelegate.swift in Sources */,
A10000010000000000000003 /* NoteInputView.swift in Sources */,
A10000010000000000000004 /* SettingsView.swift in Sources */,
A10000010000000000000005 /* NoteViewModel.swift in Sources */,
A10000010000000000000006 /* HotKeyManager.swift in Sources */,
A10000010000000000000007 /* NoteFileService.swift in Sources */,
A10000010000000000000008 /* SettingsManager.swift in Sources */,
A10000010000000000000009 /* Note.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
A90000010000000000000001 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
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;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
GCC_C_LANGUAGE_STANDARD = gnu17;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
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 = 13.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
A90000010000000000000002 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
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";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
GCC_C_LANGUAGE_STANDARD = gnu17;
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 = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
SWIFT_COMPILATION_MODE = wholemodule;
};
name = Release;
};
A90000010000000000000003 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = AddToObsidian/Resources/AddToObsidian.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = NO;
INFOPLIST_FILE = AddToObsidian/Resources/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.yourname.AddToObsidian;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
};
name = Debug;
};
A90000010000000000000004 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = AddToObsidian/Resources/AddToObsidian.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = NO;
INFOPLIST_FILE = AddToObsidian/Resources/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.yourname.AddToObsidian;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
A80000010000000000000001 /* Build configuration list for PBXNativeTarget "AddToObsidian" */ = {
isa = XCConfigurationList;
buildConfigurations = (
A90000010000000000000003 /* Debug */,
A90000010000000000000004 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
A80000010000000000000002 /* Build configuration list for PBXProject "AddToObsidian" */ = {
isa = XCConfigurationList;
buildConfigurations = (
A90000010000000000000001 /* Debug */,
A90000010000000000000002 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = A70000010000000000000001 /* Project object */;
}