Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking β€œSign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v5 - Bye AndroidX, dark mode + brand image support, useHideAnimation hook, etc. #475

Merged
merged 56 commits into from
Aug 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
a99254c
Initial v5 commit
zoontek Aug 6, 2023
36923bf
Unify function declarations
zoontek Aug 6, 2023
55b7254
Add obfuscator command
zoontek Aug 7, 2023
e1aab70
Improve addon loading system
zoontek Aug 7, 2023
81500f8
Update migration guide
zoontek Aug 7, 2023
21323f2
Update README.md
zoontek Aug 7, 2023
27d6850
Update README.md
zoontek Aug 8, 2023
784eca9
Update migration list
zoontek Aug 8, 2023
4d80c6c
Add missing line
zoontek Aug 8, 2023
e7850a5
Fix typo
zoontek Aug 8, 2023
a42eb69
Add methods descriptions
zoontek Aug 8, 2023
7294a50
Update useHideAnimation type documentation
zoontek Aug 8, 2023
e2727b7
Update README.md
zoontek Aug 8, 2023
72426ff
Remove duplicate lines
zoontek Aug 8, 2023
049f358
Update prepack script
zoontek Aug 8, 2023
4d60ca9
Fix node minimum version
zoontek Aug 8, 2023
1e95371
Bump version number
zoontek Aug 8, 2023
0a1b8cb
Add npmignore
zoontek Aug 8, 2023
633c67c
Don't include RNBootSplash.res
zoontek Aug 8, 2023
bba88b0
adds missing update to splash theme name (#476)
AaronWitter Aug 8, 2023
7a76f06
Fix image aspect ratio on Safari mobile
zoontek Aug 8, 2023
fb8232c
Add a node version check
zoontek Aug 9, 2023
a464332
Use files instead of multiple npmignore
zoontek Aug 10, 2023
fd9496b
5.0.0-beta.2
zoontek Aug 10, 2023
b9b3ea0
Improve JSON writing
zoontek Aug 11, 2023
1c4c7f2
Add detect-indent + xml-formatter
zoontek Aug 11, 2023
a00ab3f
Align brand to the maximum bottom (looks better on web)
zoontek Aug 12, 2023
87f92a5
Bump to 5.0.0-beta.3
zoontek Aug 12, 2023
268366d
Revert "Align brand to the maximum bottom (looks better on web)"
zoontek Aug 12, 2023
9a8432d
Ignore brand bottom value on web only
zoontek Aug 12, 2023
edb1e24
Don't read previous indent when writing json
zoontek Aug 12, 2023
e20e6c7
Minify xml to make regex matching more resilient
zoontek Aug 12, 2023
05eb955
Bump to 5.0.0-beta.4
zoontek Aug 12, 2023
916374b
Add webpack to the example app
zoontek Aug 12, 2023
ca20a51
Add web implementation
zoontek Aug 12, 2023
b2accba
Add html modification (raster image)
zoontek Aug 13, 2023
a499806
Add support for SVG web asset
zoontek Aug 13, 2023
0f2df09
Support dark mode on web
zoontek Aug 14, 2023
1ba116d
Set --platforms as first option
zoontek Aug 14, 2023
40f9d1a
Allow exiting the app on back press
zoontek Aug 14, 2023
d62258d
Fix navigation bar color in example
zoontek Aug 14, 2023
a4e4dc5
5.0.0-rc.0
zoontek Aug 14, 2023
341d0d8
Add react-native-web-image-loader for the web example
zoontek Aug 14, 2023
641d320
Update dependencies
zoontek Aug 21, 2023
99e012d
Add Android 5.0 support
zoontek Aug 21, 2023
b8a4c0a
Add xml version
zoontek Aug 21, 2023
23cce51
Use transparent system bars colors in a similar way as react-native-bars
zoontek Aug 21, 2023
0a9d6d8
5.0.0-rc.1
zoontek Aug 21, 2023
0d048d8
Allow different separators (even if help mention commas)
zoontek Aug 21, 2023
6591110
Remove transparent system bars by default
zoontek Aug 21, 2023
5244f12
Add Theme.BootSplash.EdgeToEdge
zoontek Aug 21, 2023
ad5fa9c
5.0.0-rc.2
zoontek Aug 21, 2023
ba8c2de
Add useHideAnimation mock
zoontek Aug 21, 2023
d0ba2ac
Add web in CLI generator screenshot
zoontek Aug 21, 2023
7616284
Add a FAQ
zoontek Aug 21, 2023
d0aab4c
5.0.0
zoontek Aug 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove transparent system bars by default
zoontek committed Aug 21, 2023

Verified

This commit was signed with the committer’s verified signature.
zoontek Mathieu Acthernoene
commit 65911108b01e81f2d7ab91c2d8ab07ee31e28c78
6 changes: 1 addition & 5 deletions android/src/main/res/values-v23/styles.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>

<resources>
<style name="Theme.BootSplash.BarColors" parent="Theme.BootSplash.Common">
<item name="android:statusBarColor">?attr/bootSplashBackground</item>
</style>

<style name="Theme.BootSplash.Brand" parent="Theme.BootSplash.BarColors">
<style name="Theme.BootSplash.WithBrand" parent="Theme.BootSplash.Common">
<item name="bootSplashBrand">@null</item>
</style>
</resources>
8 changes: 0 additions & 8 deletions android/src/main/res/values-v27/styles.xml

This file was deleted.

2 changes: 1 addition & 1 deletion android/src/main/res/values-v31/styles.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>

<resources>
<style name="Theme.BootSplash" parent="Theme.BootSplash.Brand">
<style name="Theme.BootSplash" parent="Theme.BootSplash.WithBrand">
<item name="android:windowSplashScreenBackground">?bootSplashBackground</item>
<item name="android:windowSplashScreenAnimatedIcon">?bootSplashLogo</item>
<item name="android:windowSplashScreenBrandingImage">?bootSplashBrand</item>
7 changes: 2 additions & 5 deletions android/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -21,14 +21,11 @@
<item name="android:windowBackground">@drawable/compat_splash_screen</item>
</style>

<style name="Theme.BootSplash.BarColors" parent="Theme.BootSplash.Common">
</style>

<style name="Theme.BootSplash.Brand" parent="Theme.BootSplash.BarColors">
<style name="Theme.BootSplash.WithBrand" parent="Theme.BootSplash.Common">
<item name="bootSplashBrand">@drawable/transparent_pixel</item>
</style>

<style name="Theme.BootSplash" parent="Theme.BootSplash.Brand">
<style name="Theme.BootSplash" parent="Theme.BootSplash.WithBrand">
<item name="bootSplashBackground">?android:colorBackground</item>
<item name="bootSplashLogo">@android:drawable/sym_def_app_icon</item>
<item name="postBootSplashTheme">?android:attr/theme</item>