Browse Source

v1.4.4 - fixed load sequence issue affecting icon load time

master v1.4.4
Claire 2 years ago
parent
commit
dd0c9d656e
  1. BIN
      LunaMac.xcodeproj/project.xcworkspace/xcuserdata/claire.xcuserdatad/UserInterfaceState.xcuserstate
  2. 6
      LunaMac/AppDelegate.swift
  3. 4
      LunaMac/Info.plist
  4. 3
      LunaMac/changelog.txt

BIN
LunaMac.xcodeproj/project.xcworkspace/xcuserdata/claire.xcuserdatad/UserInterfaceState.xcuserstate diff.generated

diff.bin_not_shown

6
LunaMac/AppDelegate.swift

@ -108,6 +108,9 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate {
let defaults = UserDefaults.standard
func applicationDidFinishLaunching(_ aNotification: Notification) {
// set icon size to square
statusBarItem = statusBar.statusItem(withLength: NSStatusItem.squareLength)
// build the icon and menu
updateIcon()
@ -116,9 +119,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate {
// start the the timer for keeping the icon updated automatically
startTimer()
// set icon size to square
statusBarItem = statusBar.statusItem(withLength: NSStatusItem.squareLength)
}
// start the timer for auto-updating the icon

4
LunaMac/Info.plist

@ -21,9 +21,9 @@
<key>CFBundleDisplayName</key>
<string>LunaMac</string>
<key>CFBundleShortVersionString</key>
<string>1.4.3</string>
<string>1.4.4</string>
<key>CFBundleVersion</key>
<string>1.4.3</string>
<string>1.4.4</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>

3
LunaMac/changelog.txt

@ -1,4 +1,7 @@
====== Changelog ======
v1.4.4
- Fixed load order issue causing icon delay
v1.4.3
- Improved dark mode first and last quarter icons

Loading…
Cancel
Save