Skip to content

Commit 6391c53

Browse files
author
Wongkraiwich Chuenchomphu
committed
update: fix var, bump support version to Catalina
1 parent 2d0a824 commit 6391c53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MusicBar.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@
331331
"$(inherited)",
332332
"@executable_path/../Frameworks",
333333
);
334-
MACOSX_DEPLOYMENT_TARGET = 10.13;
334+
MACOSX_DEPLOYMENT_TARGET = 10.15;
335335
MARKETING_VERSION = 1.2;
336336
PRODUCT_BUNDLE_IDENTIFIER = com.kentakoong.MusicBar;
337337
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -360,7 +360,7 @@
360360
"$(inherited)",
361361
"@executable_path/../Frameworks",
362362
);
363-
MACOSX_DEPLOYMENT_TARGET = 10.13;
363+
MACOSX_DEPLOYMENT_TARGET = 10.15;
364364
MARKETING_VERSION = 1.2;
365365
PRODUCT_BUNDLE_IDENTIFIER = com.kentakoong.MusicBar;
366366
PRODUCT_NAME = "$(TARGET_NAME)";

MusicBar/StatusBar.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class StatusBar: NSObject {
4747
if #available(macOS 11.0, *) {
4848
return NSImage(systemSymbolName: "rays", accessibilityDescription: "rays")
4949
}else {
50-
var image = NSImage(named: NSImage.Name("rays"))
50+
let image = NSImage(named: NSImage.Name("rays"))
5151
return image?.resizedCopy(w: 15, h: 15)
5252
}
5353
}

0 commit comments

Comments
 (0)