hotfix: uncomment update install command when clicking on the install button (#828)

This commit is contained in:
Serhiy Mytrovtsiy
2022-02-07 11:57:21 +01:00
parent 75e71f3d3b
commit 4eeeb75b80
3 changed files with 4 additions and 4 deletions

View File

@@ -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)";

View File

@@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>344</string>
<string>346</string>
<key>Description</key>
<string>Simple macOS system monitor in your menu bar</string>
<key>LSApplicationCategoryType</key>

View File

@@ -253,6 +253,6 @@ private class UpdateView: NSView {
}
@objc private func install(_ sender: Any) {
// updater.install(path: self.path)
updater.install(path: self.path)
}
}