Skip to content

Commit

Permalink
업데이트 알림 문구 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Oct 27, 2018
1 parent 02d7685 commit 3ce57aa
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions OSX/GureumAppDelegate.swift
Expand Up @@ -65,15 +65,13 @@ class NotificationCenterDelegate: NSObject, NSUserNotificationCenterDelegate{
return
}

let fmt = "현재 버젼: \(info.current) 최신 버젼: \(info.recent)\n클릭 시 업데이트 페이지로 이동합니다."
let notification = NSUserNotification()

notification.title = "구름 입력기 업데이트 확인"
notification.title = "구름 입력기 업데이트 알림"
notification.hasActionButton = true
notification.hasReplyButton = false
notification.actionButtonTitle = "업데이트"
notification.otherButtonTitle = "취소"
notification.informativeText = fmt
notification.informativeText = "최신 버젼: \(info.recent) 현재 버젼: \(info.current)\n\(info.note)"
notificationCenterDelegate.download = info.download

notificationCenter.deliver(notification)
Expand Down

0 comments on commit 3ce57aa

Please sign in to comment.