Skip to content

Commit 48fc2cc

Browse files
committed
Open source with GPLv3 and fix #2.
1 parent c435a4d commit 48fc2cc

27 files changed

+2112
-0
lines changed

.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update macOS.gitignore, Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## macOS
6+
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+
## Build generated
34+
build/
35+
DerivedData/
36+
37+
## Various settings
38+
*.pbxuser
39+
!default.pbxuser
40+
*.mode1v3
41+
!default.mode1v3
42+
*.mode2v3
43+
!default.mode2v3
44+
*.perspectivev3
45+
!default.perspectivev3
46+
xcuserdata/
47+
48+
## Other
49+
*.moved-aside
50+
*.xcuserstate
51+
52+
## Obj-C/Swift specific
53+
*.hmap
54+
*.ipa
55+
*.dSYM.zip
56+
*.dSYM
57+
58+
## Playgrounds
59+
timeline.xctimeline
60+
playground.xcworkspace
61+
62+
# Swift Package Manager
63+
#
64+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
65+
# Packages/
66+
.build/
67+
68+
# CocoaPods
69+
#
70+
# We recommend against adding the Pods directory to your .gitignore. However
71+
# you should judge for yourself, the pros and cons are mentioned at:
72+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
73+
#
74+
Pods/
75+
76+
# Carthage
77+
#
78+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
79+
# Carthage/Checkouts
80+
81+
Carthage/Build
82+
83+
# fastlane
84+
#
85+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
86+
# screenshots whenever they are needed.
87+
# For more information about the recommended setup visit:
88+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
89+
90+
fastlane/report.xml
91+
fastlane/Preview.html
92+
fastlane/screenshots
93+
fastlane/test_output
94+
95+
# FileMerge backup
96+
*.orig

0 commit comments

Comments
 (0)