Skip to content

Commit

Permalink
Update to 1.4.4, changed depreciated methods
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Kootz <[email protected]>
  • Loading branch information
Austin Kootz committed May 25, 2019
1 parent 83194df commit fa2f6e5
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 4 deletions.
Binary file modified .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions EjectionSeat.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
TargetAttributes = {
23DA2E03208680C800705F14 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1020;
};
};
};
Expand Down Expand Up @@ -274,6 +275,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = EjectionSeat/EjectionSeat.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 28HVH2LFES;
Expand All @@ -285,6 +287,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.13;
PRODUCT_BUNDLE_IDENTIFIER = sculptr.EjectionSeat;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 4.0;
};
name = Debug;
Expand All @@ -294,6 +297,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = EjectionSeat/EjectionSeat.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 28HVH2LFES;
Expand All @@ -305,6 +309,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.13;
PRODUCT_BUNDLE_IDENTIFIER = sculptr.EjectionSeat;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 4.0;
};
name = Release;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
<dict>
<key>BuildLocationStyle</key>
<string>UseAppPreferences</string>
<key>BuildSystemType</key>
<string>Latest</string>
<key>CustomBuildLocationType</key>
<string>RelativeToDerivedData</string>
<key>DerivedDataLocationStyle</key>
<string>Default</string>
<key>EnabledFullIndexStoreVisibility</key>
<false/>
<key>IssueFilterStyle</key>
<string>ShowActiveSchemeOnly</string>
<string>ShowAll</string>
<key>LiveSourceIssuesEnabled</key>
<true/>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<key>orderHint</key>
<integer>0</integer>
</dict>
<key>EjectionSeat.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
</dict>
</plist>
Binary file modified EjectionSeat/.DS_Store
Binary file not shown.
5 changes: 3 additions & 2 deletions EjectionSeat/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate, NSUserNotifi
aboutView.addSubview(aboutTextTitle)
aboutView.addSubview(aboutTextBody)


aboutImage.setFrameSize(NSSize(width: 192, height: 128))
aboutImage.setFrameOrigin(NSPoint(x:0,y:96))
aboutImage.imageAlignment = NSImageAlignment.alignCenter
Expand All @@ -72,15 +73,15 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate, NSUserNotifi
aboutTextTitle.textColor = NSColor.textColor
aboutTextTitle.alignment = NSTextAlignment.center
aboutTextTitle.backgroundColor = NSColor.clear
aboutTextTitle.insertText("EjectionSeat.app")
aboutTextTitle.string = "EjectionSeat.app"
aboutTextTitle.isEditable = false

aboutTextBody.setFrameOrigin(NSPoint(x:0,y:40))
aboutTextBody.font = NSFont.systemFont(ofSize: 12)
aboutTextBody.textColor = NSColor.gray
aboutTextBody.alignment = NSTextAlignment.center
aboutTextBody.backgroundColor = NSColor.clear
aboutTextBody.insertText("Developed by Austin Kootz\nVersion \(version)")
aboutTextBody.string = "Developed by Austin Kootz\nVersion \(version)"
aboutTextBody.isEditable = false

aboutWindow = NSWindow.init(contentRect: aboutView.frame, styleMask: [.titled, .closable], backing: NSWindow.BackingStoreType.buffered, defer:false)
Expand Down
2 changes: 1 addition & 1 deletion EjectionSeat/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.4.3</string>
<string>1.4.4</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit fa2f6e5

Please sign in to comment.