Skip to content

Commit 7b2e9b4

Browse files
Initial release (#2)
Closes #1 * Initial release Co-authored-by: Alexandre Nicol <nicol.alexandre1@gmail.com>
1 parent 4d90a25 commit 7b2e9b4

File tree

672 files changed

+20130
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

672 files changed

+20130
-76
lines changed

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/xcode,swift,swiftpm,swiftpackagemanager,macos
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift,swiftpm,swiftpackagemanager,macos
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### Swift ###
34+
# Xcode
35+
#
36+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
37+
38+
## User settings
39+
xcuserdata/
40+
41+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
42+
*.xcscmblueprint
43+
*.xccheckout
44+
45+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
46+
build/
47+
DerivedData/
48+
*.moved-aside
49+
*.pbxuser
50+
!default.pbxuser
51+
*.mode1v3
52+
!default.mode1v3
53+
*.mode2v3
54+
!default.mode2v3
55+
*.perspectivev3
56+
!default.perspectivev3
57+
58+
## Obj-C/Swift specific
59+
*.hmap
60+
61+
## App packaging
62+
*.ipa
63+
*.dSYM.zip
64+
*.dSYM
65+
*.app
66+
*.dmg
67+
68+
## Playgrounds
69+
timeline.xctimeline
70+
playground.xcworkspace
71+
72+
## Gcc Patch
73+
/*.gcno
74+
75+
## Config
76+
Big Sur Font Smoothing Toggler/Config.xcconfig

Big Sur Font Smoothing Toggler/AppDelegate.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
//
77

88
import Cocoa
9+
import AppCenter
10+
import AppCenterAnalytics
11+
import AppCenterCrashes
912

1013
@NSApplicationMain
1114
class AppDelegate: NSObject, NSApplicationDelegate {
@@ -16,6 +19,10 @@ class AppDelegate: NSObject, NSApplicationDelegate {
1619
let mainWindowController = MainWindowController()
1720
mainWindowController.showWindow(self)
1821
self.mainWindowController = mainWindowController
22+
23+
#if !DEBUG
24+
AppCenter.start(withAppSecret: AppCenterConfig.secret, services: [Analytics.self, Crashes.self])
25+
#endif
1926
}
2027

2128
func applicationWillTerminate(_ aNotification: Notification) {
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)