Skip to content

Releases: zoontek/react-native-bootsplash

6.1.4

05 Oct 18:23
ec22e1a
Compare
Choose a tag to compare
  • Improve Expo project type detection

6.1.3

02 Sep 09:09
2cf94b1
Compare
Choose a tag to compare

New Contributors

6.1.2

25 Aug 16:35
e8739be
Compare
Choose a tag to compare
  • Enforce Expo assets output when --project-type is expo (even if expo package cannot be detected)
  • Improve expo package detection in monorepos (fix #610 (comment))

6.1.1

07 Aug 16:24
2572a8d
Compare
Choose a tag to compare
  • Improve Android hide sequence (fix #601)

6.1.0

31 Jul 16:58
f05a532
Compare
Choose a tag to compare
  • Add --project-type CLI option to enforce whether the project is bare or expo by @teivienn in #598

6.0.0

18 Jul 17:54
51a7cbb
Compare
Choose a tag to compare
react.conf.app.splash.screen.mp4

What's new

  • An expo plugin 🧩
  • A ready option in useHideAnimation config in order to delay your animation, if you want to wait for something else than just layout rendering + images loading 🚦
  • A new Android theme: Theme.BootSplash.TransparentStatus (for transparent status bar + opaque navigation bar) 🫥

What else?

  • --assets-output now has a default value, which is assets/bootsplash. These assets will always be generated, as it's required for expo or the useHideAnimation hook (assets/bootsplash_logo.png become assets/bootsplash/logo.png, etc.)
  • All iOS assets are now suffixed with a short hash of the different splash screen items to prevent caching issues (before, it was only the logo).
  • iOS implementation now always uses a colorset for background color, even if you choose not to support dark mode (before it was inlined in the .storyboard file in such case).

Migration

  • Delete your previously generated assets directory.
  • Run the CLI to generate assets in updated locations.
  • That's all ✨

5.5.3

16 Apr 08:30
2d6123f
Compare
Choose a tag to compare

5.5.2

09 Apr 19:00
6273229
Compare
Choose a tag to compare
  • Fix regression in parseColor with full hexadecimal color values, introduced in 5.5.1

5.5.1

07 Apr 16:54
5451ade
Compare
Choose a tag to compare
  • Fix generator hex color shorthand parsing issue: #F0F was expanded to #F0FF0F, instead of #FF00FF.

5.5.0

01 Apr 16:01
d3d6900
Compare
Choose a tag to compare
  • Bridgeless mode support (will be the default with new architecture enabled on React Native 0.74)
  • Fix splash screen reappearing during screen transitions on Android when Activity has been killed - #553 by @Protino
  • Use system scheme instead of the one returned by useColorScheme in useHideAnimation, as it can be overridden by Appearance.setColorScheme (fix #565)