diff --git a/CHANGELOG.md b/CHANGELOG.md index 368ef97..59ef933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,46 @@ # Change Log +## [Unreleased](https://github.com/mfrachet/rn-placeholder/tree/HEAD) + +[Full Changelog](https://github.com/mfrachet/rn-placeholder/compare/v1.2.0...HEAD) + +**Fixed bugs:** + +- Cannot get Paragraph to render [\#46](https://github.com/mfrachet/rn-placeholder/issues/46) +- Placeholder if child is responsible for the progress [\#30](https://github.com/mfrachet/rn-placeholder/issues/30) + +**Closed issues:** + +- Fix broken images [\#44](https://github.com/mfrachet/rn-placeholder/issues/44) +- Add a license file [\#41](https://github.com/mfrachet/rn-placeholder/issues/41) +- Placeholder.Media repeat and some requests [\#39](https://github.com/mfrachet/rn-placeholder/issues/39) + +**Merged pull requests:** + +- fix\(leak\): fixing shine animation to avoid leak [\#57](https://github.com/mfrachet/rn-placeholder/pull/57) ([mfrachet](https://github.com/mfrachet)) +- fix\(dependencies\): update dependencies [\#54](https://github.com/mfrachet/rn-placeholder/pull/54) ([mfrachet](https://github.com/mfrachet)) +- docs\(chore\): fixing chore documentation [\#53](https://github.com/mfrachet/rn-placeholder/pull/53) ([mfrachet](https://github.com/mfrachet)) +- fix\(docs\): removing docs [\#52](https://github.com/mfrachet/rn-placeholder/pull/52) ([mfrachet](https://github.com/mfrachet)) +- fix\(docs\): fix capitalization [\#51](https://github.com/mfrachet/rn-placeholder/pull/51) ([mfrachet](https://github.com/mfrachet)) +- fix\(doc\): fixing documentation [\#50](https://github.com/mfrachet/rn-placeholder/pull/50) ([mfrachet](https://github.com/mfrachet)) +- docs\(update\): moving to vuepress [\#49](https://github.com/mfrachet/rn-placeholder/pull/49) ([mfrachet](https://github.com/mfrachet)) +- refacor\(views\): flatten some view layers [\#48](https://github.com/mfrachet/rn-placeholder/pull/48) ([mfrachet](https://github.com/mfrachet)) +- feat\(deps\): updgrade rn and react deps [\#47](https://github.com/mfrachet/rn-placeholder/pull/47) ([mfrachet](https://github.com/mfrachet)) +- feat\(style\): capabilities to style on components [\#45](https://github.com/mfrachet/rn-placeholder/pull/45) ([mfrachet](https://github.com/mfrachet)) +- License [\#42](https://github.com/mfrachet/rn-placeholder/pull/42) ([mfrachet](https://github.com/mfrachet)) +- Update API.md [\#40](https://github.com/mfrachet/rn-placeholder/pull/40) ([nonotest](https://github.com/nonotest)) +- Changelog v1.2.0 [\#37](https://github.com/mfrachet/rn-placeholder/pull/37) ([mfrachet](https://github.com/mfrachet)) + ## [v1.2.0](https://github.com/mfrachet/rn-placeholder/tree/v1.2.0) (2017-12-20) [Full Changelog](https://github.com/mfrachet/rn-placeholder/compare/v1.1.0...v1.2.0) +**Implemented enhancements:** + +- Adding primitives [\#17](https://github.com/mfrachet/rn-placeholder/issues/17) **Closed issues:** - Add useNativeDriver to improve performance [\#32](https://github.com/mfrachet/rn-placeholder/issues/32) -- Adding primitives [\#17](https://github.com/mfrachet/rn-placeholder/issues/17) **Merged pull requests:** diff --git a/EXAMPLE.md b/EXAMPLE.md deleted file mode 100644 index 88f502a..0000000 --- a/EXAMPLE.md +++ /dev/null @@ -1,34 +0,0 @@ - -

Examples

- - -## Using the Expo projects tool - -If you're familliar with Expo, you can take a look at the [rn-placeholder-demo](https://expo.io/@mfrachet/rn-placeholder-demo) app. - -You can also scan the following QR using [Expo app](https://expo.io/) : - - - - -## create-react-native-app - - -*Using Example folder while running React Native is quite difficult due to [react-native#637](https://github.com/facebook/react-native/issues/637) and [metro-bundler#1](https://github.com/facebook/metro-bundler/issues/1). Apologize for this weird step of moving the example folder...* - -If you're currently using [`create-react-native-app`](https://facebook.github.io/react-native/docs/getting-started.html#getting-started) : - -``` -$ git clone https://github.com/mfrachet/rn-placeholder -$ cd rn-placeholder -$ mv ./Example ../ExampleRnPlaceholder -$ cd ../ExampleRnPlaceholder -$ npm install -$ npm start -``` - -And then scan the QR inside of the [Expo app](https://expo.io/) or run the following command : - -``` -$ npm run ios -``` diff --git a/README.md b/README.md index 521c272..56686c3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Display some placeholder stuff before rendering your text or media content in React Native. -_Fully compatible with [Expo](https://expo.io/) and [react-native-web](https://github.com/necolas/react-native-web), [see examples](./EXAMPLE.md)_ +\_Fully compatible with [Expo](https://expo.io/) and [react-native-web](https://github.com/necolas/react-native-web). _New documentation available [mfrachet.github.io/rn-placeholder](https://mfrachet.github.io/rn-placeholder/)_ @@ -23,7 +23,6 @@ _New documentation available [mfrachet.github.io/rn-placeholder](https://mfrache - [Creating a custom component](./API.md#custom) - [Using default animations](./ANIMATIONS.md#default) - [Using a custom animation](./ANIMATIONS.md#custom) -- [Examples from React Native, Expo or React Native Web](./EXAMPLE.md)

Usage

diff --git a/package.json b/package.json index 15781bd..6f12275 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rn-placeholder", - "version": "1.2.0", + "version": "1.3.0", "private": false, "main": "index.js", "homepage": "https://github.com/mfrachet/rn-placeholder",