-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/rainbow-me/rainbow into …
…brody/QR-code-scanner-fixes * 'develop' of https://github.com/rainbow-me/rainbow: [PATCH]: react-native-fast-image iOS 17 spec (#5188) Feature: Add remote promo sheet (#5140) mints: fix insufficient eth check (#5186) sends: fix prev sends logic (#5185) Update copy for an Error Occurred message for Support (#5187) Fixes for activity list coin icons and migrating some components to network instead of assetType (#5143) audit: axios + reservior client bump (#5184) bump to v1.9.10 (#5183) nonces: reset nonces (#5170) Cleanup unused coinrow components (#5142) reviews: bump watch wallet threshold (#5181) lang: fix english revert (#5182) WC: enabled eth_sign but only for connections (#5180) wc: use methodRegistry on all networks (#5179) bump to v1.9.9 (#5173) walletconnect: sanitize 712 signs (#5159)
- Loading branch information
Showing
88 changed files
with
1,301 additions
and
1,510 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
patches/react-native-fast-image+8.5.11+fix-make-image.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m b/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m | ||
index 9c0f1d3..db4da88 100644 | ||
--- a/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m | ||
+++ b/node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.m | ||
@@ -70,12 +70,12 @@ - (void)setImageColor:(UIColor *)imageColor { | ||
} | ||
|
||
- (UIImage*)makeImage:(UIImage *)image withTint:(UIColor *)color { | ||
- UIImage *newImage = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate]; | ||
- UIGraphicsBeginImageContextWithOptions(image.size, NO, newImage.scale); | ||
- [color set]; | ||
- [newImage drawInRect:CGRectMake(0, 0, image.size.width, newImage.size.height)]; | ||
- newImage = UIGraphicsGetImageFromCurrentImageContext(); | ||
- UIGraphicsEndImageContext(); | ||
+ UIImage* newImage = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate]; | ||
+ UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:image.size]; | ||
+ newImage = [renderer imageWithActions:^(UIGraphicsImageRendererContext * _Nonnull rendererContext) { | ||
+ [color setFill]; | ||
+ [newImage drawInRect:CGRectMake(0, 0, image.size.width, newImage.size.height)]; | ||
+ }]; | ||
return newImage; | ||
} | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.