Skip to content

Commit dd65b9a

Browse files
committed
Update app name to "Daily Word Pro" in README, project settings, AboutView, and ContentView
1 parent c606997 commit dd65b9a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# DailyWordPro
1+
# Daily Word Pro
22

3-
DailyWordPro is a sleek and minimalistic macOS menu bar app designed to improve your vocabulary, one word at a time. Perfect for GRE preparation, academic growth, or anyone looking to enhance their language skills. The app fetches a word, its meaning, and an example sentence from a connected Google Sheet, making vocabulary learning seamless and enjoyable.
3+
Daily Word Pro is a sleek and minimalistic macOS menu bar app designed to improve your vocabulary, one word at a time. Perfect for GRE preparation, academic growth, or anyone looking to enhance their language skills. The app fetches a word, its meaning, and an example sentence from a connected Google Sheet, making vocabulary learning seamless and enjoyable.
44

55
---
66

VocabularyApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@
397397
ENABLE_HARDENED_RUNTIME = YES;
398398
ENABLE_PREVIEWS = YES;
399399
GENERATE_INFOPLIST_FILE = YES;
400-
INFOPLIST_KEY_CFBundleDisplayName = DailyWordPro;
400+
INFOPLIST_KEY_CFBundleDisplayName = Daily Word Pro;
401401
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.education";
402402
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
403403
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
@@ -439,7 +439,7 @@
439439
ENABLE_HARDENED_RUNTIME = YES;
440440
ENABLE_PREVIEWS = YES;
441441
GENERATE_INFOPLIST_FILE = YES;
442-
INFOPLIST_KEY_CFBundleDisplayName = DailyWordPro;
442+
INFOPLIST_KEY_CFBundleDisplayName = Daily Word Pro;
443443
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.education";
444444
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
445445
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;

VocabularyApp/AboutView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ struct AboutView: View {
99
.scaledToFit()
1010
.frame(width: 64, height: 64)
1111
.cornerRadius(16)
12-
Text("DailyWordPro")
12+
Text("Daily Word Pro")
1313
.font(.title)
1414
.fontWeight(.bold)
1515
Text("Version 1.0.0")
1616
.font(.subheadline)
1717
.foregroundColor(.secondary)
1818
Divider()
19-
Text("DailyWordPro is a sleek and minimalistic macOS menu bar app designed to help you expand your vocabulary, one word at a time.")
19+
Text("Daily Word Pro is a sleek and minimalistic macOS menu bar app designed to help you expand your vocabulary, one word at a time.")
2020
.multilineTextAlignment(.center)
2121
.padding(.horizontal)
2222
Divider()

VocabularyApp/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ struct ContentView: View {
169169
defer: false
170170
)
171171
aboutWindow?.center()
172-
aboutWindow?.title = "About DailyWordPro"
172+
aboutWindow?.title = "About Daily Word Pro"
173173
aboutWindow?.contentView = NSHostingView(rootView: AboutView())
174174
aboutWindow?.isReleasedWhenClosed = false
175175
}

VocabularyApp/VocabularyAppApp.swift

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

4141
statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)
4242
if let button = statusItem?.button {
43-
button.image = NSImage(systemSymbolName: "book", accessibilityDescription: "Vocabulary App")
43+
button.image = NSImage(systemSymbolName: "book", accessibilityDescription: "Daily Word Pro")
4444
button.action = #selector(togglePopover(_:))
4545
}
4646

0 commit comments

Comments
 (0)