Skip to content

Commit

Permalink
Merge pull request #21 from jamf/add-catalina-keys
Browse files Browse the repository at this point in the history
Add macOS Catalina keys and UI enhancements
  • Loading branch information
mm512 authored Sep 2, 2019
2 parents 159344d + cc22c3c commit 08e8b27
Show file tree
Hide file tree
Showing 10 changed files with 1,906 additions and 679 deletions.
25 changes: 23 additions & 2 deletions PPPC Utility.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

/* Begin PBXBuildFile section */
6E6216F9215321CE0043DF18 /* OpenViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E6216F8215321CE0043DF18 /* OpenViewController.swift */; };
6E651CC523143890001CC974 /* ProfilesDescriptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E651CC423143890001CC974 /* ProfilesDescriptions.swift */; };
6E651CC82314397D001CC974 /* FlippedClipView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E651CC72314397D001CC974 /* FlippedClipView.swift */; };
6E651CCA231439CE001CC974 /* InfoButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E651CC9231439CE001CC974 /* InfoButton.swift */; };
6EB45830214FFCCB00BE5749 /* AppleEventRule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EB4582F214FFCCB00BE5749 /* AppleEventRule.swift */; };
6EB86F692151476500FBE634 /* JamfProClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EB86F682151476500FBE634 /* JamfProClient.swift */; };
6EC409DE214D65BC00BE4F17 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EC409DD214D65BC00BE4F17 /* AppDelegate.swift */; };
Expand All @@ -26,6 +29,9 @@
/* Begin PBXFileReference section */
6E5D5A1521541B8F00B43312 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
6E6216F8215321CE0043DF18 /* OpenViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenViewController.swift; sourceTree = "<group>"; };
6E651CC423143890001CC974 /* ProfilesDescriptions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfilesDescriptions.swift; sourceTree = "<group>"; };
6E651CC72314397D001CC974 /* FlippedClipView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlippedClipView.swift; sourceTree = "<group>"; };
6E651CC9231439CE001CC974 /* InfoButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoButton.swift; sourceTree = "<group>"; };
6E95730721553B650002C30B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
6E957309215557870002C30B /* PPPC Utility.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "PPPC Utility.entitlements"; sourceTree = "<group>"; };
6EB4582F214FFCCB00BE5749 /* AppleEventRule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleEventRule.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -56,6 +62,15 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
6E651CC623143969001CC974 /* Views */ = {
isa = PBXGroup;
children = (
6E651CC72314397D001CC974 /* FlippedClipView.swift */,
6E651CC9231439CE001CC974 /* InfoButton.swift */,
);
path = Views;
sourceTree = "<group>";
};
6EC409D1214D65BC00BE4F17 = {
isa = PBXGroup;
children = (
Expand All @@ -81,6 +96,7 @@
6EC409DD214D65BC00BE4F17 /* AppDelegate.swift */,
6EB86F682151476500FBE634 /* JamfProClient.swift */,
6EC40A11214DF8FE00BE4F17 /* SecurityWrapper.swift */,
6E651CC623143969001CC974 /* Views */,
6EC40A1E214EF89600BE4F17 /* View Controllers */,
6EC40A1D214EF87E00BE4F17 /* Model */,
);
Expand All @@ -106,6 +122,7 @@
6EC40A0F214DE3B200BE4F17 /* Executable.swift */,
6EC409F4214D95D200BE4F17 /* TCCProfile.swift */,
6EB4582F214FFCCB00BE5749 /* AppleEventRule.swift */,
6E651CC423143890001CC974 /* ProfilesDescriptions.swift */,
);
path = Model;
sourceTree = "<group>";
Expand Down Expand Up @@ -153,6 +170,7 @@
TargetAttributes = {
6EC409D9214D65BC00BE4F17 = {
CreatedOnToolsVersion = 10.0;
LastSwiftMigration = 1100;
SystemCapabilities = {
com.apple.HardenedRuntime = {
enabled = 1;
Expand Down Expand Up @@ -203,6 +221,8 @@
6EC40A14214DFB5800BE4F17 /* Model.swift in Sources */,
6EC40A1C214EF87800BE4F17 /* SigningIdentity.swift in Sources */,
6EC40A18214ECF2C00BE4F17 /* UploadViewController.swift in Sources */,
6E651CC523143890001CC974 /* ProfilesDescriptions.swift in Sources */,
6E651CCA231439CE001CC974 /* InfoButton.swift in Sources */,
6EC409F5214D95D200BE4F17 /* TCCProfile.swift in Sources */,
6EC40A12214DF8FE00BE4F17 /* SecurityWrapper.swift in Sources */,
6EC409DE214D65BC00BE4F17 /* AppDelegate.swift in Sources */,
Expand All @@ -211,6 +231,7 @@
6EC40A10214DE3B200BE4F17 /* Executable.swift in Sources */,
6EC40A16214ECF1E00BE4F17 /* SaveViewController.swift in Sources */,
6EB45830214FFCCB00BE5749 /* AppleEventRule.swift in Sources */,
6E651CC82314397D001CC974 /* FlippedClipView.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -361,7 +382,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.opensource.pppcutility;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 4.2;
SWIFT_VERSION = 5.0;
};
name = Debug;
};
Expand All @@ -383,7 +404,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.opensource.pppcutility;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 4.2;
SWIFT_VERSION = 5.0;
};
name = Release;
};
Expand Down
Loading

0 comments on commit 08e8b27

Please sign in to comment.