Skip to content

Commit 90a34d2

Browse files
committed
Update Readme
1 parent 77e1f06 commit 90a34d2

File tree

10 files changed

+1678
-23
lines changed

10 files changed

+1678
-23
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.gitignore

21
# OS X temporary files
32
.DS_Store
43
.Trashes
@@ -9,5 +8,7 @@ xcuserdata/
98
# Swift Package Manager
109
Packages/
1110
Package.resolved
12-
*.xcodeproj
1311
.swiftpm
12+
13+
# Pods
14+
Pods/

README.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,17 @@ If you have time, please, add description and docs for functions.
44

55
If you like the project, don't forget to `put star ★` and follow me on GitHub:
66

7-
[![https://github.com/varabeis](https://github.com/varabeis/Assets/blob/master/Buttons/follow-me-on-github.svg)](https://github.com/varabeis)
7+
[![https://github.com/varabeis](https://github.com/varabeis/Readme/blob/main/Buttons/follow-me-varabeis.svg)](https://github.com/varabeis)
88

99
## Navigate
1010

11-
- [Requirements](#requirements)
1211
- [Installation](#installation)
13-
- [CocoaPods](#cocoapods)
1412
- [Swift Package Manager](#swift-package-manager)
13+
- [CocoaPods](#cocoapods)
1514
- [Manually](#manually)
1615
- [Other Projects](#other-projects)
1716
- [Russian Community](#russian-community)
1817

19-
## Requirements
20-
21-
Swift `5.0`. Ready for use on iOS 12+
22-
2318
## Installation
2419

2520
### Swift Package Manager
@@ -42,24 +37,24 @@ pod 'SparrowKit'
4237

4338
### Manually
4439

45-
If you prefer not to use any of dependency managers, you can integrate `SparrowKit` into your project manually. Put `Source/SparrowKit` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`.
46-
40+
If you prefer not to use any of dependency managers, you can integrate `SparrowKit` into your project manually. Put `Sources/SparrowKit` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`.
4741

4842
## Other Projects
4943

5044
#### [SPPermissions](https://github.com/varabeis/SPPermissions)
51-
Allow request permissions with native dialog UI and interactive animations. Also you can request permissions without dialog. Check state any permission. You can start using this project with just two lines of code and easy customisation.
45+
Using for request and check state of permissions. Available native UI for request multiple permissions at the same time. Simple integration and usage like 2 lines code.
5246

5347
#### [SPAlert](https://github.com/varabeis/SPAlert)
54-
It is popup from Apple Music & Feedback in AppStore. Contains Done & Heart presets. Done present with draw path animation. I clone Apple's alerts as much as possible.
55-
You can find this alerts in AppStore after feedback, after added song to library in Apple Music. I am also add alert without icon, as simple message.
48+
You can find this alerts in AppStore after feedback or after added song to library in Apple Music. Contains popular Done, Heart presets and many other. Done preset present with draw path animation like original. Also available simple present message without icon. Usage in one line code.
49+
50+
#### [SPPerspective](https://github.com/varabeis/SPPerspective)
51+
Animation of widgets from iOS 14. 3D transform with dynamic shadow. [Video preview](https://ivanvorobei.by/github/spperspective/video-preview). Available deep customisation 3D and shadow. Also you can use static transform without animation.
5652

5753
#### [SPDiffable](https://github.com/varabeis/SPDiffable)
58-
Apple's diffable API requerid models for each object type. If you want use it in many place, you pass many time to implemenet and get over duplicates codes. This project help you do it elegant with shared models and special cell providers for one-usage models.
54+
Simplifies working with animated changes in table and collections. Apple's diffable API required models for each object type. If you want use it in many place, you pass time to implement it and get over duplicates codes. This project help do it elegant with shared models and special cell providers. Support side bar iOS14 and already has native cell providers and views.
5955

60-
## Russian Community
56+
## Russian-specking Community
6157

62-
Присоединяйтесь в телеграм канал [Код Воробья](https://sparrowcode.by/telegram), там найдете заметки о iOS разработке и дизайне.
63-
Большие туториалы выклыдываю на [YouTube](https://sparrowcode.by/youtube).
58+
В телеграм-канале [Код Воробья](https://ivanvorobei.by/sparrowcode/telegram) пишу о iOS разработке. Видео-туториалы выклыдываю на [YouTube](https://ivanvorobei.by/youtube):
6459

65-
[![Tutorials on YouTube](https://github.com/varabeis/Assets/blob/master/Russian%20Community/youtube-preview.jpg)](https://sparrowcode.by/youtube)
60+
[![Tutorials on YouTube](https://cdn.ivanvorobei.by/github/readme/youtube-preview.jpg)](https://ivanvorobei.by/youtube)

Sources/Supporting Files/SparrowKit.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,3 @@ FOUNDATION_EXPORT double SparrowKit_iOSVersionNumber;
77
FOUNDATION_EXPORT const unsigned char SparrowKit_iOSVersionString[];
88

99
// In this header, you should import all the public headers of your framework using statements like #import <SparrowKit_iOS/PublicHeader.h>
10-
11-

SparrowKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'SparrowKit'
4-
s.version = '3.0.1'
5-
s.summary = 'Collection of native Swift extensions to boost your development.'
4+
s.version = '3.0.2'
5+
s.summary = 'Collection of native Swift extensions to boost your development. Support tvOS and watchOS.'
66
s.homepage = 'https://github.com/varabeis/SparrowKit'
77
s.license = { :type => "MIT", :file => "LICENSE" }
88

0 commit comments

Comments
 (0)