Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
doraTeX committed Oct 12, 2020
1 parent 29cab78 commit ad7301c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.4.0</string>
<string>2.4.1</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.productivity</string>
<key>NSAppTransportSecurity</key>
Expand Down
8 changes: 8 additions & 0 deletions Sources/UserNotificationDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import Cocoa
import UserNotifications

@objc class UserNotificationDelegate: NSObject, UNUserNotificationCenterDelegate, NSUserNotificationCenterDelegate {
public func userNotificationCenter(_ center: NSUserNotificationCenter, didDeliver: NSUserNotification) {

}

public func userNotificationCenter(_ center: NSUserNotificationCenter, didActivate: NSUserNotification) {

}

public func userNotificationCenter(_ center: NSUserNotificationCenter, shouldPresent notification: NSUserNotification) -> Bool {
return true
}
Expand Down

0 comments on commit ad7301c

Please sign in to comment.