Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CristianTuretta committed Apr 15, 2022
1 parent 477998f commit eab432f
Show file tree
Hide file tree
Showing 28 changed files with 1,133 additions and 0 deletions.
361 changes: 361 additions & 0 deletions Pomodoro.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,361 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 55;
objects = {

/* Begin PBXBuildFile section */
804047C827F4D4BB00285461 /* PomodoroWorkingMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 804047C727F4D4BB00285461 /* PomodoroWorkingMode.swift */; };
804EBD2527F45B8D00DF034E /* PomodoroApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 804EBD2427F45B8D00DF034E /* PomodoroApp.swift */; };
804EBD2927F45B8F00DF034E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 804EBD2827F45B8F00DF034E /* Assets.xcassets */; };
804EBD2C27F45B8F00DF034E /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 804EBD2B27F45B8F00DF034E /* Preview Assets.xcassets */; };
804EBD3527F45C3A00DF034E /* MenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 804EBD3427F45C3A00DF034E /* MenuView.swift */; };
804EBD3827F46B3200DF034E /* WorkingMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 804EBD3727F46B3200DF034E /* WorkingMode.swift */; };
804EBD3A27F4AB3500DF034E /* Pie.swift in Sources */ = {isa = PBXBuildFile; fileRef = 804EBD3927F4AB3500DF034E /* Pie.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
804047C727F4D4BB00285461 /* PomodoroWorkingMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PomodoroWorkingMode.swift; sourceTree = "<group>"; };
804EBD2127F45B8D00DF034E /* Pomodoro.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Pomodoro.app; sourceTree = BUILT_PRODUCTS_DIR; };
804EBD2427F45B8D00DF034E /* PomodoroApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PomodoroApp.swift; sourceTree = "<group>"; };
804EBD2827F45B8F00DF034E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
804EBD2B27F45B8F00DF034E /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
804EBD2D27F45B8F00DF034E /* Pomodoro.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Pomodoro.entitlements; sourceTree = "<group>"; };
804EBD3427F45C3A00DF034E /* MenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuView.swift; sourceTree = "<group>"; };
804EBD3627F4680600DF034E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
804EBD3727F46B3200DF034E /* WorkingMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WorkingMode.swift; sourceTree = "<group>"; };
804EBD3927F4AB3500DF034E /* Pie.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Pie.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
804EBD1E27F45B8D00DF034E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
804EBD1827F45B8D00DF034E = {
isa = PBXGroup;
children = (
804EBD2327F45B8D00DF034E /* Pomodoro */,
804EBD2227F45B8D00DF034E /* Products */,
);
sourceTree = "<group>";
};
804EBD2227F45B8D00DF034E /* Products */ = {
isa = PBXGroup;
children = (
804EBD2127F45B8D00DF034E /* Pomodoro.app */,
);
name = Products;
sourceTree = "<group>";
};
804EBD2327F45B8D00DF034E /* Pomodoro */ = {
isa = PBXGroup;
children = (
804EBD2427F45B8D00DF034E /* PomodoroApp.swift */,
804EBD3927F4AB3500DF034E /* Pie.swift */,
804EBD3727F46B3200DF034E /* WorkingMode.swift */,
804047C727F4D4BB00285461 /* PomodoroWorkingMode.swift */,
804EBD3427F45C3A00DF034E /* MenuView.swift */,
804EBD3627F4680600DF034E /* Info.plist */,
804EBD2827F45B8F00DF034E /* Assets.xcassets */,
804EBD2D27F45B8F00DF034E /* Pomodoro.entitlements */,
804EBD2A27F45B8F00DF034E /* Preview Content */,
);
path = Pomodoro;
sourceTree = "<group>";
};
804EBD2A27F45B8F00DF034E /* Preview Content */ = {
isa = PBXGroup;
children = (
804EBD2B27F45B8F00DF034E /* Preview Assets.xcassets */,
);
path = "Preview Content";
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
804EBD2027F45B8D00DF034E /* Pomodoro */ = {
isa = PBXNativeTarget;
buildConfigurationList = 804EBD3027F45B8F00DF034E /* Build configuration list for PBXNativeTarget "Pomodoro" */;
buildPhases = (
804EBD1D27F45B8D00DF034E /* Sources */,
804EBD1E27F45B8D00DF034E /* Frameworks */,
804EBD1F27F45B8D00DF034E /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = Pomodoro;
productName = Pomodoro;
productReference = 804EBD2127F45B8D00DF034E /* Pomodoro.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
804EBD1927F45B8D00DF034E /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastSwiftUpdateCheck = 1330;
LastUpgradeCheck = 1330;
TargetAttributes = {
804EBD2027F45B8D00DF034E = {
CreatedOnToolsVersion = 13.3;
};
};
};
buildConfigurationList = 804EBD1C27F45B8D00DF034E /* Build configuration list for PBXProject "Pomodoro" */;
compatibilityVersion = "Xcode 13.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 804EBD1827F45B8D00DF034E;
productRefGroup = 804EBD2227F45B8D00DF034E /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
804EBD2027F45B8D00DF034E /* Pomodoro */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
804EBD1F27F45B8D00DF034E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
804EBD2C27F45B8F00DF034E /* Preview Assets.xcassets in Resources */,
804EBD2927F45B8F00DF034E /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
804EBD1D27F45B8D00DF034E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
804047C827F4D4BB00285461 /* PomodoroWorkingMode.swift in Sources */,
804EBD3827F46B3200DF034E /* WorkingMode.swift in Sources */,
804EBD3527F45C3A00DF034E /* MenuView.swift in Sources */,
804EBD3A27F4AB3500DF034E /* Pie.swift in Sources */,
804EBD2527F45B8D00DF034E /* PomodoroApp.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
804EBD2E27F45B8F00DF034E /* 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++17";
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;
GCC_C_LANGUAGE_STANDARD = gnu11;
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 = 12.3;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
804EBD2F27F45B8F00DF034E /* 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++17";
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;
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 = 12.3;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
};
name = Release;
};
804EBD3127F45B8F00DF034E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CODE_SIGN_ENTITLEMENTS = Pomodoro/Pomodoro.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"Pomodoro/Preview Content\"";
DEVELOPMENT_TEAM = NET5244GDD;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Pomodoro/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = cristian.Pomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
};
name = Debug;
};
804EBD3227F45B8F00DF034E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CODE_SIGN_ENTITLEMENTS = Pomodoro/Pomodoro.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"Pomodoro/Preview Content\"";
DEVELOPMENT_TEAM = NET5244GDD;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Pomodoro/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = cristian.Pomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
804EBD1C27F45B8D00DF034E /* Build configuration list for PBXProject "Pomodoro" */ = {
isa = XCConfigurationList;
buildConfigurations = (
804EBD2E27F45B8F00DF034E /* Debug */,
804EBD2F27F45B8F00DF034E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
804EBD3027F45B8F00DF034E /* Build configuration list for PBXNativeTarget "Pomodoro" */ = {
isa = XCConfigurationList;
buildConfigurations = (
804EBD3127F45B8F00DF034E /* Debug */,
804EBD3227F45B8F00DF034E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 804EBD1927F45B8D00DF034E /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
11 changes: 11 additions & 0 deletions Pomodoro/Assets.xcassets/AccentColor.colorset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading

0 comments on commit eab432f

Please sign in to comment.