File tree Expand file tree Collapse file tree 7 files changed +31
-7
lines changed
microsoft-reactnative-sampleapps
Microsoft.ReactNative/Views/Image Expand file tree Collapse file tree 7 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 2424 "prompt-sync" : " ^4.2.0" ,
2525 "react" : " 16.13.1" ,
2626 "react-native" : " 0.63.2" ,
27- "react-native-windows" : " 0.63.3 "
27+ "react-native-windows" : " 0.63.4 "
2828 },
2929 "devDependencies" : {
3030 "@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 1313 "dependencies" : {
1414 "react" : " 16.13.1" ,
1515 "react-native" : " 0.63.2" ,
16- "react-native-windows" : " 0.63.3 "
16+ "react-native-windows" : " 0.63.4 "
1717 },
1818 "devDependencies" : {
1919 "@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 1212 "dependencies" : {
1313 "react" : " 16.13.1" ,
1414 "react-native" : " 0.63.2" ,
15- "react-native-windows" : " 0.63.3 "
15+ "react-native-windows" : " 0.63.4 "
1616 },
1717 "devDependencies" : {
1818 "@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-windows" ,
33 "entries" : [
4+ {
5+ "date" : " Mon, 05 Oct 2020 15:04:50 GMT" ,
6+ "tag" : " react-native-windows_v0.63.4" ,
7+ "version" : " 0.63.4" ,
8+ "comments" : {
9+ "patch" : [
10+ {
11+ "comment" : " Fix pre-1903 crash when loading certain images" ,
12+ "author" : " email not defined" ,
13+ "commit" : " 976222751c7ea8486b8948c927935d1d9ee21277" ,
14+ "package" : " react-native-windows"
15+ }
16+ ]
17+ }
18+ },
419 {
520 "date" : " Mon, 28 Sep 2020 15:04:34 GMT" ,
621 "tag" : " react-native-windows_v0.63.3" ,
Original file line number Diff line number Diff line change 11# Change Log - react-native-windows
22
3- This log was last generated on Mon, 21 Sep 2020 15:04:59 GMT and should not be manually modified.
3+ This log was last generated on Mon, 05 Oct 2020 15:04:50 GMT and should not be manually modified.
44
55<!-- Start content -->
66
7+ ## 0.63.4
8+
9+ Mon, 05 Oct 2020 15:04:50 GMT
10+
11+ ### Patches
12+
13+ - Fix pre-1903 crash when loading certain images (email not defined)
14+
715## 0.63.3
816
917Mon, 21 Sep 2020 15:04:59 GMT
Original file line number Diff line number Diff line change @@ -248,9 +248,10 @@ winrt::fire_and_forget ReactImage::SetBackground(bool fireLoadEndEvent) {
248248
249249 // If we are dynamically switching the resizeMode to 'repeat', then
250250 // the SizeChanged event has already fired and the ReactImageBrush's
251- // size has not been set. Use ActualSize in that case.
251+ // size has not been set. Use ActualWidth/Height in that case.
252252 if (compositionBrush->AvailableSize () == winrt::Size{0 , 0 }) {
253- compositionBrush->AvailableSize (strong_this->ActualSize ());
253+ compositionBrush->AvailableSize ({static_cast <float >(strong_this->ActualWidth ()),
254+ static_cast <float >(strong_this->ActualHeight ())});
254255 }
255256
256257 compositionBrush->Source (surface);
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-windows" ,
3- "version" : " 0.63.3 " ,
3+ "version" : " 0.63.4 " ,
44 "license" : " MIT" ,
55 "repository" : {
66 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments