Skip to content

Commit

Permalink
Fixes for 0.0.11-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
superhighfives committed Apr 11, 2021
1 parent 53c3a42 commit 3af2203
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Charlie Gleason
Copyright (c) 2021 Charlie Gleason

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
8 changes: 4 additions & 4 deletions Pika.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 19;
CURRENT_PROJECT_VERSION = 20;
DEVELOPMENT_ASSET_PATHS = "\"Pika/Preview Content\"";
DEVELOPMENT_TEAM = TGHU37N6EX;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -607,7 +607,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = "0.0.11-beta1";
MARKETING_VERSION = "0.0.11-beta2";
PRODUCT_BUNDLE_IDENTIFIER = com.superhighfives.Pika;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -623,7 +623,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 19;
CURRENT_PROJECT_VERSION = 20;
DEVELOPMENT_ASSET_PATHS = "\"Pika/Preview Content\"";
DEVELOPMENT_TEAM = TGHU37N6EX;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -634,7 +634,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = "0.0.11-beta1";
MARKETING_VERSION = "0.0.11-beta2";
PRODUCT_BUNDLE_IDENTIFIER = com.superhighfives.Pika;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
4 changes: 2 additions & 2 deletions Pika/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate {
.frame(minWidth: 450,
idealWidth: 450,
maxWidth: 550,
minHeight: 200,
idealHeight: 220,
minHeight: 230,
idealHeight: 230,
maxHeight: 360,
alignment: .center)

Expand Down
2 changes: 1 addition & 1 deletion Pika/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<key>LSUIElement</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2020 Charlie Gleason, under the MIT License</string>
<string>Copyright © 2021 Charlie Gleason, under the MIT License</string>
<key>NSMainStoryboardFile</key>
<string>Main</string>
<key>NSPrincipalClass</key>
Expand Down
3 changes: 2 additions & 1 deletion Pika/Utilities/PikaWindow.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ class PikaWindow {
let window = NSWindow(
contentRect: NSRect(x: 0, y: 0, width: 380, height: 150),
styleMask: [.titled, .closable, .miniaturizable, .resizable],
backing: .buffered, defer: false
backing: .buffered,
defer: false
)
window.isReleasedWhenClosed = false
window.center()
Expand Down

0 comments on commit 3af2203

Please sign in to comment.