From 4eeeb75b80f1b13b89d0776ed69612cfa5fe1ab5 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Mon, 7 Feb 2022 11:57:21 +0100 Subject: [PATCH] hotfix: uncomment update install command when clicking on the install button (#828) --- Stats.xcodeproj/project.pbxproj | 4 ++-- Stats/Supporting Files/Info.plist | 2 +- Stats/Views/Update.swift | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Stats.xcodeproj/project.pbxproj b/Stats.xcodeproj/project.pbxproj index 702ad01d..c4631953 100644 --- a/Stats.xcodeproj/project.pbxproj +++ b/Stats.xcodeproj/project.pbxproj @@ -1889,7 +1889,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 2.7.3; + MARKETING_VERSION = 2.7.4; OTHER_LDFLAGS = ""; PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -1922,7 +1922,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 2.7.3; + MARKETING_VERSION = 2.7.4; OTHER_LDFLAGS = ""; PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/Stats/Supporting Files/Info.plist b/Stats/Supporting Files/Info.plist index ca5cc839..5f149a7e 100755 --- a/Stats/Supporting Files/Info.plist +++ b/Stats/Supporting Files/Info.plist @@ -17,7 +17,7 @@ CFBundleShortVersionString $(MARKETING_VERSION) CFBundleVersion - 344 + 346 Description Simple macOS system monitor in your menu bar LSApplicationCategoryType diff --git a/Stats/Views/Update.swift b/Stats/Views/Update.swift index 95cc4ad8..b14b1abf 100644 --- a/Stats/Views/Update.swift +++ b/Stats/Views/Update.swift @@ -253,6 +253,6 @@ private class UpdateView: NSView { } @objc private func install(_ sender: Any) { -// updater.install(path: self.path) + updater.install(path: self.path) } }