This repository was archived by the owner on Jan 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +21
-10
lines changed
Expand file tree Collapse file tree 7 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
33#### 0.x Releases
4- - ` 0.0.x ` Releases - [ 0.0.1] ( #001 )
4+ - ` 0.0.x ` Releases - [ 0.0.1] ( #001 ) | [ 0.0.2 ] ( #002 )
55
66---
77
8+ ## [ 0.0.2] ( https://github.com/LeonardoCardoso/SendIndicator/releases/tag/0.0.2 )
9+ Released on 2017-06-08.
10+
11+ #### Added
12+ - Storyboard preview.
13+ - Added by [ Leonardo Cardoso] ( https://github.com/LeonardoCardoso ) .
14+
815## [ 0.0.1] ( https://github.com/LeonardoCardoso/SendIndicator/releases/tag/0.0.1 )
916Released on 2017-05-31.
1017
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <document type =" com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version =" 3.0" toolsVersion =" 12120 " systemVersion = " 16F73 " targetRuntime =" iOS.CocoaTouch" propertyAccessControl =" none" useAutolayout =" YES" useTraitCollections =" YES" colorMatched =" YES" initialViewController =" BYZ-38-t0r" >
2+ <document type =" com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version =" 3.0" toolsVersion =" 13122.17 " targetRuntime =" iOS.CocoaTouch" propertyAccessControl =" none" useAutolayout =" YES" useTraitCollections =" YES" colorMatched =" YES" initialViewController =" BYZ-38-t0r" >
33 <device id =" retina4_7" orientation =" portrait" >
44 <adaptation id =" fullscreen" />
55 </device >
66 <dependencies >
77 <deployment identifier =" iOS" />
8- <plugIn identifier =" com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version =" 12088 " />
8+ <plugIn identifier =" com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version =" 13104.14 " />
99 <capability name =" Constraints to layout margins" minToolsVersion =" 6.0" />
1010 <capability name =" documents saved in the Xcode 8 format" minToolsVersion =" 8.0" />
1111 </dependencies >
Original file line number Diff line number Diff line change 11PODS:
2- - SendIndicator (0.0.1 )
2+ - SendIndicator (0.0.2 )
33
44DEPENDENCIES:
55 - SendIndicator (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99 :path: "../"
1010
1111SPEC CHECKSUMS:
12- SendIndicator: 8bcb50718fc03ae3187030c3a9468fc8e0e62956
12+ SendIndicator: 161bbbb74dc30f783f027584d8b69f9d4ceab668
1313
1414PODFILE CHECKSUM: 0d26c204bd95934f7e07387fb499ba78324eeee0
1515
Original file line number Diff line number Diff line change 33![ showcase] ( Images/showcase.gif )
44
55[ ![ Platform] ( https://img.shields.io/badge/platform-iOS-orange.svg )] ( https://github.com/LeonardoCardoso/SendIndicator#requirements-and-details )
6- [ ![ CocoaPods] ( https://img.shields.io/badge/pod-v0.0.1 -red.svg )] ( https://github.com/LeonardoCardoso/SendIndicator#cocoapods )
6+ [ ![ CocoaPods] ( https://img.shields.io/badge/pod-v0.0.2 -red.svg )] ( https://github.com/LeonardoCardoso/SendIndicator#cocoapods )
77[ ![ Carthage Compatible] ( https://img.shields.io/badge/Carthage-compatible-4BC51D.svg )] ( https://github.com/LeonardoCardoso/SendIndicator#carthage )
88
99> Yet another task indicator
2929$ gem install cocoapods
3030```
3131
32- > CocoaPods 1.1.0+ is required to build SendIndicator 0.0.1 +.
32+ > CocoaPods 1.1.0+ is required to build SendIndicator 0.0.2 +.
3333
3434To integrate SendIndicator into your Xcode project using CocoaPods, specify it in your ` Podfile ` :
3535
@@ -38,7 +38,7 @@ source 'https://github.com/CocoaPods/Specs.git'
3838platform :ios , ' 8.0'
3939use_frameworks!
4040
41- pod ' SendIndicator' , ' ~> 0.0.1 '
41+ pod ' SendIndicator' , ' ~> 0.0.2 '
4242```
4343
4444Then, run the following command:
@@ -61,7 +61,7 @@ $ brew install carthage
6161To integrate SendIndicator into your Xcode project using Carthage, specify it in your ` Cartfile ` :
6262
6363``` ogdl
64- github "LeonardoCardoso/SendIndicator" ~> 0.0.1
64+ github "LeonardoCardoso/SendIndicator" ~> 0.0.2
6565```
6666
6767### Manually
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'SendIndicator'
3- s . version = '0.0.1 '
3+ s . version = '0.0.2 '
44 s . license = { :type => "MIT" , :file => "LICENSE" }
55 s . summary = 'Yet another task indicator'
66 s . homepage = 'https://github.com/LeonardoCardoso/SendIndicator'
Original file line number Diff line number Diff line change @@ -318,6 +318,8 @@ open class SendIndicator: UIView {
318318
319319 palette. indicatorColor = indicatorColor ?? palette. indicatorColor
320320
321+ draw ( )
322+
321323 }
322324
323325 }
@@ -336,6 +338,8 @@ open class SendIndicator: UIView {
336338
337339 super. init ( frame: frame)
338340
341+ self . draw ( )
342+
339343 }
340344
341345 public init ( frame: CGRect , palette: Palette = Palette ( ) ) {
You can’t perform that action at this time.
0 commit comments