Skip to content

Commit 54f42cb

Browse files
committed
Added ALProgressBar
New type of progress in the form of a bar
1 parent 35a510b commit 54f42cb

Some content is hidden

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

46 files changed

+1159
-54
lines changed

.gitignore

100644100755
Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
# osX files
12
.DS_Store
3+
.Trashes
4+
5+
## Xcode Patch
6+
*.xcworkspace
7+
*.xcodeproj/*
8+
!*.xcodeproj/project.pbxproj
9+
!*.xcodeproj/xcshareddata/
10+
!*.xcworkspace/contents.xcworkspacedata
11+
/*.gcno
12+
13+
### Xcode Patch ###
14+
**/xcshareddata/WorkspaceSettings.xcsettings
15+
16+
# Swift Package Manager
17+
.swiftpm
218
/.build
3-
/Packages
4-
/*.xcodeproj
5-
xcuserdata/
19+
20+
## Build generated
21+
build/
22+
DerivedData/

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Pod::Spec.new do |spec|
2-
spec.name = "ALProgressRing"
3-
spec.version = "1.1.0"
2+
spec.name = "ALProgressView"
3+
spec.version = "2.0.0"
44
spec.summary = "Animated and fully customizable progress ring with gradient"
55

6-
spec.homepage = "https://github.com/alxrguz/ALProgressRing"
7-
spec.source = { :git => "https://github.com/alxrguz/ALProgressRing.git", :tag => "#{spec.version}" }
6+
spec.homepage = "https://github.com/alxrguz/ALProgressView"
7+
spec.source = { :git => "https://github.com/alxrguz/ALProgressView.git", :tag => "#{spec.version}" }
88
spec.license = { :type => "MIT", :file => "LICENSE" }
99

1010
spec.author = { "Alexandr Guzenko" => "alxrguz@icloud.com" }
@@ -14,6 +14,6 @@ spec.ios.framework = 'UIKit'
1414
spec.swift_version = ['4.2', '5.0']
1515
spec.ios.deployment_target = "10.0"
1616

17-
spec.source_files = "Sources/ALProgressRing/**/*.swift"
17+
spec.source_files = "Sources/ALProgressView/**/*.swift"
1818

1919
end

Assets/ALProgressRing.sketch

100644100755
-32.8 KB
Binary file not shown.

Assets/PreviewBanner.gif

100644100755
File mode changed.

Assets/PreviewBanner.psd

100644100755
File mode changed.

Assets/SocialBanner.png

100644100755
18.5 KB
Loading

Assets/timingFunctions.png

100644100755
File mode changed.

0 commit comments

Comments
 (0)