Skip to content

Commit 8a6b13a

Browse files
committed
Merge branch 'main' into moo/MOO-1870-react-19-upgrade
2 parents 3c06b4e + b11bde9 commit 8a6b13a

9 files changed

Lines changed: 37 additions & 10 deletions

File tree

packages/jsActions/mobile-resources-native/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [11.2.0] Native Mobile Resources - 2025-10-17
10+
11+
## [2.0.2] Gallery
12+
13+
### Fixed
14+
15+
- We've fixed an issue where the Gallery widget would not properly load more items when scrolling down quickly.
16+
17+
## [6.3.1] VideoPlayer
18+
19+
- We have updated `react-native-video` version to 6.10.2.
20+
- We have fixed an issue where videos were muted in iOS silent mode. The video player now plays sound even when the device is set to silent.
21+
922
## [11.1.1] Native Mobile Resources - 2025-10-7
1023

1124
## [4.2.0] BarcodeScanner

packages/jsActions/mobile-resources-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mobile-resources-native",
33
"moduleName": "Native Mobile Resources",
4-
"version": "11.1.1",
4+
"version": "11.2.0",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {

packages/pluggableWidgets/gallery-native/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [2.0.2] - 2025-10-17
10+
911
### Fixed
1012

11-
- We've fixed an issue where the Gallery widget would not properly load more items when scrolling down quickly.
13+
- We've fixed an issue where the Gallery widget would not properly load more items when scrolling down quickly.
1214

1315
## [2.0.1] - 2025-8-5
1416

packages/pluggableWidgets/video-player-native/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [6.3.1] - 2025-10-17
10+
11+
- We have updated `react-native-video` version to 6.10.2.
12+
- We have fixed an issue where videos were muted in iOS silent mode. The video player now plays sound even when the device is set to silent.
13+
914
## [6.3.0] - 2025-10-2
1015

1116
### Changed

packages/pluggableWidgets/video-player-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "video-player-native",
33
"widgetName": "VideoPlayer",
4-
"version": "6.3.0",
4+
"version": "6.3.1",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@mendix/piw-native-utils-internal": "*",
2323
"react-native-vector-icons": "10.2.0",
24-
"react-native-video": "6.10.0"
24+
"react-native-video": "6.10.2"
2525
},
2626
"devDependencies": {
2727
"@mendix/piw-utils-internal": "1.0.0",

packages/pluggableWidgets/video-player-native/src/VideoPlayer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ export function VideoPlayer(props: VideoPlayerProps<VideoStyle>): ReactElement {
164164
<Video
165165
{...videoProps}
166166
paused={!props.autoStart && !currentPlayTime}
167+
ignoreSilentSwitch="ignore"
167168
onLoad={data => {
168169
setStatus(StatusEnum.READY);
169170
setVideoAspectRatio(data.naturalSize.width / data.naturalSize.height);

packages/pluggableWidgets/video-player-native/src/__tests__/__snapshots__/VideoPlayer.spec.tsx.snap

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ exports[`VideoPlayer VideoPlayerAndroid render video with controls 1`] = `
5454
>
5555
<Video
5656
controls={true}
57+
ignoreSilentSwitch="ignore"
5758
muted={false}
5859
onError={[Function]}
5960
onLoad={[Function]}
@@ -203,6 +204,7 @@ exports[`VideoPlayer VideoPlayerAndroid render video without controls if showCon
203204
>
204205
<Video
205206
controls={false}
207+
ignoreSilentSwitch="ignore"
206208
muted={false}
207209
onError={[Function]}
208210
onLoad={[Function]}
@@ -287,6 +289,7 @@ exports[`VideoPlayer hides the loading indicator after load 1`] = `
287289
>
288290
<Video
289291
controls={true}
292+
ignoreSilentSwitch="ignore"
290293
muted={false}
291294
onError={[Function]}
292295
onLoad={[Function]}
@@ -435,6 +438,7 @@ exports[`VideoPlayer load a video and calculate the aspect ratio 1`] = `
435438
>
436439
<Video
437440
controls={true}
441+
ignoreSilentSwitch="ignore"
438442
muted={false}
439443
onError={[Function]}
440444
onLoad={[Function]}
@@ -586,6 +590,7 @@ exports[`VideoPlayer renders a loading indicator 1`] = `
586590
>
587591
<Video
588592
controls={true}
593+
ignoreSilentSwitch="ignore"
589594
muted={false}
590595
onError={[Function]}
591596
onLoad={[Function]}
@@ -739,6 +744,7 @@ exports[`VideoPlayer shows the loading indicator if the source changes 1`] = `
739744
>
740745
<Video
741746
controls={true}
747+
ignoreSilentSwitch="ignore"
742748
muted={false}
743749
onError={[Function]}
744750
onLoad={[Function]}

packages/pluggableWidgets/video-player-native/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="VideoPlayer" version="6.3.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="VideoPlayer" version="6.3.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="VideoPlayer.xml" />
66
</widgetFiles>

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)