|
38 | 38 |
|
39 | 39 | * Set [`removeClippedSubviews`](https://facebook.github.io/react-native/docs/scrollview#removeclippedsubviews) to `false` by default for 'tinder' and 'stack' layouts, or when `useScrollView` is set to `true`. This aims at preventing a bunch of rendering issues.
|
40 | 40 | * Make sure that autoplay is properly restarted after a `touchStart` event
|
41 |
| -* Allow serialized animated event as `onScroll`. See [#439](https://github.com/archriss/react-native-snap-carousel/pull/439) for more info (thanks [@Jberivera](https://github.com/Jberivera)) |
42 |
| -* Allow using a custom scroll component. See [#498](https://github.com/archriss/react-native-snap-carousel/pull/498) for more info (thanks [@martinezguillaume](https://github.com/martinezguillaume)) |
43 |
| -* Prevent loop animation from being played when reaching the end of the dataset. See [#443](https://github.com/archriss/react-native-snap-carousel/pull/443) for more info (thanks [@suhanmoon](https://github.com/suhanmoon)) |
44 |
| -* Fire the `onTouchStart` prop. See [#464](https://github.com/archriss/react-native-snap-carousel/pull/464) for more info (thanks [@sangle7](https://github.com/sangle7)) |
45 |
| -* Add accessibilityLabel to `Pagination`. See [#438](https://github.com/archriss/react-native-snap-carousel/pull/438) for more info (thanks [@thymikee](https://github.com/thymikee)) |
46 |
| -* Allow `contentContainerCustomStyle` to override default paddings. See [#482](https://github.com/archriss/react-native-snap-carousel/pull/482) for more info (thanks [@yamov](https://github.com/yamov)) |
| 41 | +* Allow serialized animated event as `onScroll`. See [#439](https://github.com/meliorence/react-native-snap-carousel/pull/439) for more info (thanks [@Jberivera](https://github.com/Jberivera)) |
| 42 | +* Allow using a custom scroll component. See [#498](https://github.com/meliorence/react-native-snap-carousel/pull/498) for more info (thanks [@martinezguillaume](https://github.com/martinezguillaume)) |
| 43 | +* Prevent loop animation from being played when reaching the end of the dataset. See [#443](https://github.com/meliorence/react-native-snap-carousel/pull/443) for more info (thanks [@suhanmoon](https://github.com/suhanmoon)) |
| 44 | +* Fire the `onTouchStart` prop. See [#464](https://github.com/meliorence/react-native-snap-carousel/pull/464) for more info (thanks [@sangle7](https://github.com/sangle7)) |
| 45 | +* Add accessibilityLabel to `Pagination`. See [#438](https://github.com/meliorence/react-native-snap-carousel/pull/438) for more info (thanks [@thymikee](https://github.com/thymikee)) |
| 46 | +* Allow `contentContainerCustomStyle` to override default paddings. See [#482](https://github.com/meliorence/react-native-snap-carousel/pull/482) for more info (thanks [@yamov](https://github.com/yamov)) |
47 | 47 |
|
48 | 48 | ## v3.7.5
|
49 | 49 | * Fix issue with `scrollEnabled` introduced in version `3.7.3`... again! (thanks [@ifsnow](https://github.com/ifsnow))
|
|
64 | 64 |
|
65 | 65 | ## v3.7.0
|
66 | 66 | ### New features and enhancements
|
67 |
| -* Add a new callback method: [`onBeforeSnapToItem()`](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#methods) |
| 67 | +* Add a new callback method: [`onBeforeSnapToItem()`](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#methods) |
68 | 68 | * Add prop `lockScrollTimeoutDuration`
|
69 | 69 | * Add the ability to enable/disable callback's execution when snaping programmatically
|
70 | 70 | * Add the ability to change `scrollEnabled` to `true` from initially `false` (thanks [@tomauty](https://github.com/tomauty))
|
|
75 | 75 | * Support `keyExtractor` on `ScrollView` (thanks [@hadimhd](https://github.com/hadimhd))
|
76 | 76 |
|
77 | 77 | ## v3.6.0
|
78 |
| -* Add a `layout` prop to let users choose between 3 different carousel layouts (see [the documentation](https://github.com/archriss/react-native-snap-carousel#layouts-and-custom-interpolations)) |
| 78 | +* Add a `layout` prop to let users choose between 3 different carousel layouts (see [the documentation](https://github.com/meliorence/react-native-snap-carousel#layouts-and-custom-interpolations)) |
79 | 79 | 
|
80 | 80 | 
|
81 | 81 | 
|
82 |
| -* Add the ability to define dynamic styles based on scroll position with props `scrollInterpolator` and `slideInterpolatedStyle`. This allows implementing custom animations and layouts (see [the dedicated documentation](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/CUSTOM_INTERPOLATIONS.md)). |
| 82 | +* Add the ability to define dynamic styles based on scroll position with props `scrollInterpolator` and `slideInterpolatedStyle`. This allows implementing custom animations and layouts (see [the dedicated documentation](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/CUSTOM_INTERPOLATIONS.md)). |
83 | 83 | * Rename props `customAnimationType` and `customAnimationOptions` to `activeAnimationType` and `activeAnimationOptions`
|
84 | 84 |
|
85 | 85 | ## v3.5.0
|
86 |
| -* Add the ability to render either a `ScrollView` component or a `FlatList` one (default) ([see prop `useScrollView`](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#behavior)) |
87 |
| -* Add support for versions of React Native < `0.43` (see [this note](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/KNOWN_ISSUES.md#react-native-version)) |
88 |
| -* Add support for custom animations ([see props `customAnimationType` and `customAnimationOptions`](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#style-and-animation)) |
89 |
| -* Add method [`triggerRenderingHack()`](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#available-methods) to work around [a random `FlatList` bug](https://github.com/facebook/react-native/issues/1831) that keeps content hidden until the carousel is scrolled |
| 86 | +* Add the ability to render either a `ScrollView` component or a `FlatList` one (default) ([see prop `useScrollView`](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#behavior)) |
| 87 | +* Add support for versions of React Native < `0.43` (see [this note](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/KNOWN_ISSUES.md#react-native-version)) |
| 88 | +* Add support for custom animations ([see props `customAnimationType` and `customAnimationOptions`](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#style-and-animation)) |
| 89 | +* Add method [`triggerRenderingHack()`](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#available-methods) to work around [a random `FlatList` bug](https://github.com/facebook/react-native/issues/1831) that keeps content hidden until the carousel is scrolled |
90 | 90 | * Hack around `ScrollView`/`FlatList` image rendering issues on Android
|
91 | 91 | * Fix issue with tappable dots when loop is enabled
|
92 | 92 |
|
|
116 | 116 | * Make tappable `PaginationDot` snaps to the right item when loop is enabled
|
117 | 117 |
|
118 | 118 | ## v3.3.0
|
119 |
| -* Bring in the most wanted 'infinite loop' feature :tada: (see [the 'Loop' section](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#loop) for more info about the new props `loop` and `loopClonesPerSide`) |
| 119 | +* Bring in the most wanted 'infinite loop' feature :tada: (see [the 'Loop' section](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PROPS_METHODS_AND_GETTERS.md#loop) for more info about the new props `loop` and `loopClonesPerSide`) |
120 | 120 | * Improve Android behavior when momentum is disabled
|
121 | 121 | * Guard against potential errors when component is unmounted
|
122 | 122 | * Add prop `lockScrollWhileSnapping` to improve behavior when momentum is disabled
|
|
137 | 137 | ## v3.2.0
|
138 | 138 | * Refactor callback handling. **Make sure to use the new prop `callbackOffsetMargin` if you experience missed callbacks.**
|
139 | 139 | * Make item's scale and opacity animations follow scroll value (thanks [@hammadj](https://github.com/hammadj))
|
140 |
| -* `Pagination` component: make dots tappable with new props `tappableDots` and `carouselRef` (see the [example](https://github.com/archriss/react-native-snap-carousel/blob/master/example/src/index.js)) |
| 140 | +* `Pagination` component: make dots tappable with new props `tappableDots` and `carouselRef` (see the [example](https://github.com/meliorence/react-native-snap-carousel/blob/master/example/src/index.js)) |
141 | 141 | * Fix issue when carousel has been unmounted but parent container requires to re-render
|
142 | 142 | * Fix state and scroll issues when the currently active item is being dynamically removed
|
143 | 143 | * Improve snap feeling when momentum is disabled (default)
|
|
153 | 153 | ### Breaking changes
|
154 | 154 | * Plugin is now built on top of `FlatList`, which allows for huge performance optimizations. From now on, items must be rendered using props `data` and `renderItem`.
|
155 | 155 | ### General
|
156 |
| -* Add `ParallaxImage` component (see the specific documentation [here](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PARALLAX_IMAGE.md)) |
| 156 | +* Add `ParallaxImage` component (see the specific documentation [here](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PARALLAX_IMAGE.md)) |
157 | 157 | * Add prop `activeSlideAlignment`
|
158 | 158 | * Fix issue with autoplay when setting `scrollEnabled` to `false`
|
159 | 159 | * Prevent going back to the first item when overscrolling the last one
|
160 | 160 | * Prevent callback from being called at the wrong time in some specific scenarios
|
161 | 161 |
|
162 | 162 | ## v2.4.0
|
163 |
| -* Add `Pagination` component (see the specific documentation [here](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/PAGINATION.md)) |
| 163 | +* Add `Pagination` component (see the specific documentation [here](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/PAGINATION.md)) |
164 | 164 | * Allow `firstItem` to be changed dynamically
|
165 | 165 | * Allow `0` value for `carouselHorizontalPadding` and `carouselVerticalPadding` (thanks [@bonbonez](https://github.com/bonbonez))
|
166 | 166 | * Keep the easing of slide's opacity animation linear
|
|
189 | 189 | * Implement vertical mode (prop `vertical`)
|
190 | 190 | * Make sure that current active item is properly updated when snapping
|
191 | 191 | * Prevent issues when 'sliderWidth' is smaller than viewport's width
|
192 |
| -* Recalculate card positions on layout to handle rotation (thanks [@andrewpope](https://github.com/andrewpope)); make sure to read [this note](https://github.com/archriss/react-native-snap-carousel/blob/master/doc/TIPS_AND_TRICKS.md#handling-device-rotation) |
| 192 | +* Recalculate card positions on layout to handle rotation (thanks [@andrewpope](https://github.com/andrewpope)); make sure to read [this note](https://github.com/meliorence/react-native-snap-carousel/blob/master/doc/TIPS_AND_TRICKS.md#handling-device-rotation) |
193 | 193 | * Refresh card positions if slider and/or item's dimensions are updated (thanks [@hoangnm](https://github.com/hoangnm))
|
194 | 194 | * Add props `scrollEndDragThrottleValue` and `snapCallbackDebounceValue`
|
195 | 195 | * Expose `View`'s `onLayout` prop
|
|
0 commit comments