Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

Commit 83809eb

Browse files
authored
Version 7.0 (#242)
1 parent ce57bb2 commit 83809eb

File tree

177 files changed

+6145
-13084
lines changed

Some content is hidden

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

177 files changed

+6145
-13084
lines changed

.cocoadocs.yml

-11
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.md

-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ ANSWER HERE
2626

2727
#### Post sample code or example here
2828

29-
*If sample code can't be provided because it's too long, please provide a small example project,
30-
where I can test, if you cannot provide either. There is not much I can do.*
31-
3229
```swift
3330
ANSWER HERE
3431
```

.github/ISSUE_TEMPLATE/question.md

-21
This file was deleted.

.github/banner.png

-16.8 KB
Binary file not shown.

.github/no-response.yml

-13
This file was deleted.

.github/progress-ring-demo.png

31.3 KB
Loading

.github/styles-banner.png

-107 KB
Binary file not shown.

.github/timer-ring-demo.png

38.4 KB
Loading

.gitignore

+116-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
2+
# Created by https://www.gitignore.io/api/xcode,macos,swift
3+
# Edit at https://www.gitignore.io/?templates=xcode,macos,swift
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 ###
134
# Xcode
235
#
336
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
@@ -21,8 +54,86 @@ xcuserdata/
2154
*.moved-aside
2255
*.xccheckout
2356
*.xcscmblueprint
24-
.DS_Store
25-
UICircularProgressRing.framework.zip
26-
src/fastlane/report.xml
27-
src/fastlane/test_output/report.html
28-
src/fastlane/test_output/report.junit
57+
58+
## Obj-C/Swift specific
59+
*.hmap
60+
*.ipa
61+
*.dSYM.zip
62+
*.dSYM
63+
64+
## Playgrounds
65+
timeline.xctimeline
66+
playground.xcworkspace
67+
68+
# Swift Package Manager
69+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
70+
# Packages/
71+
# Package.pins
72+
# Package.resolved
73+
.build/
74+
# Add this line if you want to avoid checking in Xcode SPM integration.
75+
# .swiftpm/xcode
76+
77+
# CocoaPods
78+
# We recommend against adding the Pods directory to your .gitignore. However
79+
# you should judge for yourself, the pros and cons are mentioned at:
80+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
81+
# Pods/
82+
# Add this line if you want to avoid checking in source code from the Xcode workspace
83+
# *.xcworkspace
84+
85+
# Carthage
86+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
87+
# Carthage/Checkouts
88+
89+
Carthage/Build
90+
91+
# Accio dependency management
92+
Dependencies/
93+
.accio/
94+
95+
# fastlane
96+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
97+
# screenshots whenever they are needed.
98+
# For more information about the recommended setup visit:
99+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
100+
101+
fastlane/report.xml
102+
fastlane/Preview.html
103+
fastlane/screenshots/**/*.png
104+
fastlane/test_output
105+
106+
# Code Injection
107+
# After new code Injection tools there's a generated folder /iOSInjectionProject
108+
# https://github.com/johnno1962/injectionforxcode
109+
110+
iOSInjectionProject/
111+
112+
### Xcode ###
113+
# Xcode
114+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
115+
116+
## User settings
117+
118+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
119+
120+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
121+
122+
## Xcode Patch
123+
*.xcodeproj/*
124+
!*.xcodeproj/project.pbxproj
125+
!*.xcodeproj/xcshareddata/
126+
!*.xcworkspace/contents.xcworkspacedata
127+
/*.gcno
128+
129+
### Xcode Patch ###
130+
**/xcshareddata/WorkspaceSettings.xcsettings
131+
132+
# End of https://www.gitignore.io/api/xcode,macos,swift
133+
#
134+
.bundle
135+
.bitrise.secrets.yml
136+
*.swiftpm/*
137+
UICircularProgressRing.xcodeproj
138+
.swiftpm/
139+
docs/undocumented.json

.jazzy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
theme: apple
2+
output: docs

.swift-version

-1
This file was deleted.

.swiftlint.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
opt_in_rules:
2+
- multiline_parameters_brackets
3+
- missing_docs
4+
line_length: 150
5+
included:
6+
- Sources
7+
- Tests
8+
excluded:
9+
- Example
10+
- .build

.travis.yml

-15
This file was deleted.

.travis/install.sh

-30
This file was deleted.

.travis/test.sh

-11
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 7.0.0
2+
3+
- With this version the library gets a complete rewrite.
4+
- Written using SwiftUI.
5+
- Read the README for more info!
6+
17
# Version 6.5.0
28

39
- Fix issue with value knob being clipped for certain ring styles

0 commit comments

Comments
 (0)