Skip to content

Commit a01b6b7

Browse files
committed
* updated readme file
* updated changelog file * updated migrations file
1 parent a8d8597 commit a01b6b7

File tree

3 files changed

+16
-321
lines changed

3 files changed

+16
-321
lines changed

CHANGELOG.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
Version | Changes
88
--- | ---
9-
v.1.0.5 | Fixed NullPointerException & IndexOutOfBoundsException inside ViewPager. Added SlidingTutorialViewPager
9+
v.1.0.6 | <ul><li>Added new simple way of creation of tutorial</li><li>Fixed memory leaks issues</li><li>Updated default sizes of page indicator's elements</li><li>Updated default colors of page indicator</li><li>Updated versions of dependencies</li><li>Removed unused or unnecessary methods</li></ul>
10+
v.1.0.5 | <ul><li>Fixed NullPointerException & IndexOutOfBoundsException inside ViewPager.</li><li>Added SlidingTutorialViewPager</li></ul>
1011
v.1.0.4 | Added ability to set PageTransformer
1112
v.1.0.3 | Fixed issues with layout customizations. Fixed issues with translate animations
1213
v.1.0.2 | Minor fixes
@@ -41,16 +42,6 @@ Changed gradle plugin version to stable `2.1.0`.
4142
* Created [Renderer] interface that responds for drawing single indicator item. There are 2 default implementation: [Renderer.Factory#newCircleRenderer()] and [Renderer.Factory#newSquareRenderer()].
4243
* Created [TutorialSupportFragment] and [PageSupportFragment] for use with **AppCompat** library. [TutorialFragment] and [PageFragment] now using **android.app.Fragment**.
4344

44-
## Support
45-
If you have any questions regarding the use of this tutorial, please contact us for support
46-
at info@cleveroad.com (email subject: «Sliding android app tutorial. Support request.»)
47-
<br>or
48-
<br>Use our contacts:
49-
<br><a href="https://www.cleveroad.com/?utm_source=github&utm_medium=link&utm_campaign=contacts">Cleveroad.com</a>
50-
<br><a href="https://www.facebook.com/cleveroadinc">Facebook account</a>
51-
<br><a href="https://twitter.com/CleveroadInc">Twitter account</a>
52-
<br><a href="https://plus.google.com/+CleveroadInc/">Google+ account</a>
53-
5445
[migration manuals]: https://github.com/Cleveroad/SlidingTutorial-Android/blob/master/MIGRATION.md
5546
[changelog history]: https://github.com/Cleveroad/SlidingTutorial-Android/blob/master/CHANGELOG.md
5647
[PageFragment]: https://github.com/Cleveroad/SlidingTutorial-Android/blob/master/lib/src/main/java/com/cleveroad/slidingtutorial/PageFragment.java

MIGRATION.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## SlidingTutorial [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) <img src="https://www.cleveroad.com/public/comercial/label-android.svg" height="20"> <a href="https://www.cleveroad.com/?utm_source=github&utm_medium=label&utm_campaign=contacts"><img src="https://www.cleveroad.com/public/comercial/label-cleveroad.svg" height="20"></a>
22
![Header image](/images/header.jpg)
33

4+
## Migrations from v.1.0.5 to v.1.0.6
5+
`TutorialOptions.Builder#onSkipClickListener(...)` was renamed to `TutorialOptions.Builder#setOnSkipClickListener(...)`.
6+
47
## Migrations from v.0.9.5 to v.1.0.0
58
1. You must change creation [TransformItem] from `new TransformItem(R.id.ivFirstImage, true, 20)` to `TransformItem.create(R.id.ivFirstImage, Direction.LEFT_TO_RIGHT, 0.2f)`, where 2-nd parameter now is [Direction] of view translation and 3-rd parameter is *shiftCoefficient*.
69
2. Your fragment with tutorial must extend [TutorialFragment] instead of **PresentationPagerFragment**.
@@ -104,15 +107,6 @@ Added **isInfinityScrollEnabled()** method. Override it and return `true` to ena
104107

105108
**NOTE:** make sure you're returning new fragment instance when displaying tutorial with infinite scroll enabled.
106109

107-
## Support
108-
If you have any questions regarding the use of this tutorial, please contact us for support
109-
at info@cleveroad.com (email subject: «Sliding android app tutorial. Support request.»)
110-
<br>or
111-
<br>Use our contacts:
112-
<br><a href="https://www.cleveroad.com/?utm_source=github&utm_medium=link&utm_campaign=contacts">Cleveroad.com</a>
113-
<br><a href="https://www.facebook.com/cleveroadinc">Facebook account</a>
114-
<br><a href="https://twitter.com/CleveroadInc">Twitter account</a>
115-
<br><a href="https://plus.google.com/+CleveroadInc/">Google+ account</a>
116110

117111
[migration manuals]: https://github.com/Cleveroad/SlidingTutorial-Android/blob/master/MIGRATION.md
118112
[changelog history]: https://github.com/Cleveroad/SlidingTutorial-Android/blob/master/CHANGELOG.md

0 commit comments

Comments
 (0)