Skip to content

Commit 9eea2c3

Browse files
committed
Fix links.
1 parent 7e58625 commit 9eea2c3

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# SPStorkController
22

3-
<a href="https://itunes.apple.com/app/id1446635818" target="_blank"><img align="left" src="https://github.com/varabeis/SPStorkController/blob/master/Resources/Preview.gif" width="400"/></a>
3+
<a href="https://itunes.apple.com/app/id1446635818" target="_blank"><img align="left" src="https://github.com/ivanvorobei/SPStorkController/blob/master/Resources/Preview.gif" width="400"/></a>
44

55
### About
66
Controller **as in Apple Music, Podcasts and Mail** apps. Help if you need customize height or suppport modal style in iOS 12.
77

88
Simple adding close button and centering arrow indicator. Customizable height. Using custom `TransitionDelegate`.
99

10-
Alert you can find in [SPAlert](https://github.com/varabeis/SPAlert) project. It support diffrents presets, some animatable.
10+
Alert you can find in [SPAlert](https://github.com/ivanvorobei/SPAlert) project. It support diffrents presets, some animatable.
1111

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

14-
[![https://github.com/varabeis](https://github.com/varabeis/Readme/blob/main/Buttons/follow-me-varabeis.svg)](https://github.com/varabeis)
14+
[![https://github.com/ivanvorobei](https://github.com/ivanvorobei/Readme/blob/main/Buttons/follow-me-ivanvorobei.svg)](https://github.com/ivanvorobei)
1515

1616
## Navigate
1717

@@ -70,7 +70,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma
7070
To integrate `SPStorkController` into your Xcode project using Xcode 11, specify it in `Project > Swift Packages`:
7171

7272
```ogdl
73-
https://github.com/varabeis/SPStorkController
73+
https://github.com/ivanvorobei/SPStorkController
7474
```
7575

7676
### Manually
@@ -255,9 +255,9 @@ class ModalController: UIViewController {
255255

256256
You only need to add a navigation bar to the main view, it will automatically layout. Use style `.stork` in init of `SPFakeBarView`. Here is visual preview with Navigation Bar and without it:
257257

258-
<img src="https://github.com/varabeis/SPStorkController/blob/master/Resources/Navigation%20Bar.jpg"/>
258+
<img src="https://github.com/ivanvorobei/SPStorkController/blob/master/Resources/Navigation%20Bar.jpg"/>
259259

260-
To use it, you need to install [SPFakeBar](https://github.com/varabeis/SPFakeBar) pod:
260+
To use it, you need to install [SPFakeBar](https://github.com/ivanvorobei/SPFakeBar) pod:
261261

262262
```ruby
263263
pod 'SPFakeBar'
@@ -364,23 +364,23 @@ It’s needed for correct presentation and dismissal of all modal controllers.
364364

365365
Apple present in `WWDC 2019` new modal presentation style - `Sheets`. It ready use Support interactive dismiss and work with navigations bars. Available since iOS 13. I will add more information when I study this in more detail. You can see presentation [here](https://developer.apple.com/videos/play/wwdc2019/224/).
366366

367-
<a href="https://developer.apple.com/videos/play/wwdc2019/224/" target="_blank"><img align="center" src="https://github.com/varabeis/SPStorkController/blob/master/Resources/Sheets.png"/></a>
367+
<a href="https://developer.apple.com/videos/play/wwdc2019/224/" target="_blank"><img align="center" src="https://github.com/ivanvorobei/SPStorkController/blob/master/Resources/Sheets.png"/></a>
368368

369369
## Other Projects
370370

371-
#### [SPAlert](https://github.com/varabeis/SPAlert)
371+
#### [SPAlert](https://github.com/ivanvorobei/SPAlert)
372372
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.
373373

374-
#### [SPPerspective](https://github.com/varabeis/SPPerspective)
374+
#### [SPPerspective](https://github.com/ivanvorobei/SPPerspective)
375375
Animation of widgets from iOS 14. 3D transform with dynamic shadow. Look [video preview](https://ivanvorobei.by/github/spperspective/video-preview). Available deep customisation 3D and shadow. Also you can use static transform without animation.
376376

377-
#### [SPPermissions](https://github.com/varabeis/SPPermissions)
377+
#### [SPPermissions](https://github.com/ivanvorobei/SPPermissions)
378378
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.
379379

380-
#### [SPDiffable](https://github.com/varabeis/SPDiffable)
380+
#### [SPDiffable](https://github.com/ivanvorobei/SPDiffable)
381381
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.
382382

383-
#### [SparrowKit](https://github.com/varabeis/SparrowKit)
383+
#### [SparrowKit](https://github.com/ivanvorobei/SparrowKit)
384384
Collection of native Swift extensions to boost your development. Support tvOS and watchOS.
385385

386386
Для русского комьюнити

SPStorkController.podspec

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

33
s.name = "SPStorkController"
4-
s.version = "1.8.4"
4+
s.version = "1.8.5"
55
s.summary = "Very similar to the controllers displayed in Apple Music, Podcasts and Mail Apple's applications."
6-
s.homepage = "https://github.com/varabeis/SPStorkController"
7-
s.source = { :git => "https://github.com/varabeis/SPStorkController.git", :tag => s.version }
6+
s.homepage = "https://github.com/ivanvorobei/SPStorkController"
7+
s.source = { :git => "https://github.com/ivanvorobei/SPStorkController.git", :tag => s.version }
88
s.license = { :type => "MIT", :file => "LICENSE" }
99

1010
s.author = { "Ivan Vorobei" => "hello@ivanvorobei.by" }

0 commit comments

Comments
 (0)