Skip to content

Commit fcd6732

Browse files
fix #1
1 parent 3357b0a commit fcd6732

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22

33
v1.0.0/
4+
v1.0.1/

Atlassian Notifier.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,13 @@
277277
CODE_SIGN_IDENTITY = "-";
278278
CODE_SIGN_STYLE = Automatic;
279279
COMBINE_HIDPI_IMAGES = YES;
280+
CURRENT_PROJECT_VERSION = 2;
280281
INFOPLIST_FILE = "Atlassian Notifier/Info.plist";
281282
LD_RUNPATH_SEARCH_PATHS = (
282283
"$(inherited)",
283284
"@executable_path/../Frameworks",
284285
);
285-
MARKETING_VERSION = 1.0.0;
286+
MARKETING_VERSION = 1.0.1;
286287
PRODUCT_BUNDLE_IDENTIFIER = de.matthiasbertsch.AtlassianNotifier;
287288
PRODUCT_NAME = "$(TARGET_NAME)";
288289
SWIFT_VERSION = 5.0;
@@ -297,12 +298,13 @@
297298
CODE_SIGN_IDENTITY = "-";
298299
CODE_SIGN_STYLE = Automatic;
299300
COMBINE_HIDPI_IMAGES = YES;
301+
CURRENT_PROJECT_VERSION = 2;
300302
INFOPLIST_FILE = "Atlassian Notifier/Info.plist";
301303
LD_RUNPATH_SEARCH_PATHS = (
302304
"$(inherited)",
303305
"@executable_path/../Frameworks",
304306
);
305-
MARKETING_VERSION = 1.0.0;
307+
MARKETING_VERSION = 1.0.1;
306308
PRODUCT_BUNDLE_IDENTIFIER = de.matthiasbertsch.AtlassianNotifier;
307309
PRODUCT_NAME = "$(TARGET_NAME)";
308310
SWIFT_VERSION = 5.0;

Atlassian Notifier/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
3636

3737
@available(macOS, deprecated: 10.11)
3838
func menu() {
39-
let launch = NSMenuItem(title: "Start automatically...", action: #selector(toggle(_:)), keyEquivalent: "")
39+
let launch = NSMenuItem(title: "Start automatically", action: #selector(toggle(_:)), keyEquivalent: "")
4040
launch.state = (start.get(path) != nil) ? .on : .off
4141

4242
let separator = NSMenuItem.separator()

Atlassian Notifier/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
22-
<string>1</string>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>LSApplicationCategoryType</key>
2424
<string>public.app-category.utilities</string>
2525
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)