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 24
24
"prompt-sync" : " ^4.2.0" ,
25
25
"react" : " 16.13.1" ,
26
26
"react-native" : " 0.63.2" ,
27
- "react-native-windows" : " 0.63.3 "
27
+ "react-native-windows" : " 0.63.4 "
28
28
},
29
29
"devDependencies" : {
30
30
"@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 13
13
"dependencies" : {
14
14
"react" : " 16.13.1" ,
15
15
"react-native" : " 0.63.2" ,
16
- "react-native-windows" : " 0.63.3 "
16
+ "react-native-windows" : " 0.63.4 "
17
17
},
18
18
"devDependencies" : {
19
19
"@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 12
12
"dependencies" : {
13
13
"react" : " 16.13.1" ,
14
14
"react-native" : " 0.63.2" ,
15
- "react-native-windows" : " 0.63.3 "
15
+ "react-native-windows" : " 0.63.4 "
16
16
},
17
17
"devDependencies" : {
18
18
"@babel/core" : " ^7.8.4" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-windows" ,
3
3
"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
+ },
4
19
{
5
20
"date" : " Mon, 28 Sep 2020 15:04:34 GMT" ,
6
21
"tag" : " react-native-windows_v0.63.3" ,
Original file line number Diff line number Diff line change 1
1
# Change Log - react-native-windows
2
2
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.
4
4
5
5
<!-- Start content -->
6
6
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
+
7
15
## 0.63.3
8
16
9
17
Mon, 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) {
248
248
249
249
// If we are dynamically switching the resizeMode to 'repeat', then
250
250
// 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.
252
252
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 ())});
254
255
}
255
256
256
257
compositionBrush->Source (surface);
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-windows" ,
3
- "version" : " 0.63.3 " ,
3
+ "version" : " 0.63.4 " ,
4
4
"license" : " MIT" ,
5
5
"repository" : {
6
6
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments