Skip to content

Commit dc4c2fe

Browse files
authored
Merge branch 'main' into MOO-1184-fix-request-notification-permission-for-android
2 parents 412ad78 + a2a2906 commit dc4c2fe

22 files changed

Lines changed: 248 additions & 26 deletions

File tree

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

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

77
## [Unreleased]
88

9+
## [5.1.1] Native Mobile Resources - 2023-10-24
10+
11+
12+
## [4.0.1] FloatingActionButton
13+
### Fixed
14+
15+
- We have fixed an error related to useNativeDriver.
16+
17+
## [5.1.0] Native Mobile Resources - 2023-10-11
18+
19+
20+
## [1.1.0] Image
21+
### Added
22+
23+
- Added accessibility.
24+
25+
## [5.0.2] Native Mobile Resources - 2023-8-22
926
### Fixed
1027

1128
- We updated the default presentation mode for both "Take Picture" and "Take Picture Advanced" to full screen.
1229
- We have added push notification permission request support for Android API level>=33.
1330

31+
## [2.0.2] ColumnChart
32+
### Fixed
33+
34+
- We fixed an issue when running with Mx10 crashes the app.
35+
1436
## [5.0.1] Native Mobile Resources - 2023-7-31
1537

1638
## [3.0.2] BarChart

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": "5.0.1",
4+
"version": "5.1.1",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {

packages/jsActions/nanoflow-actions-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+
## [4.0.1] Nanoflow Commons - 2023-10-13
10+
### Fixed
11+
12+
- Resolve studio warning CW9503
13+
914
## [4.0.0] Nanoflow Commons - 2023-6-9
1015

1116
### Added

packages/jsActions/nanoflow-actions-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nanoflow-actions-native",
33
"moduleName": "Nanoflow Commons",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {

packages/jsActions/nanoflow-actions-native/src/other/Base64Encode.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import { Base64 } from "js-base64";
1111
// END EXTRA CODE
1212

1313
/**
14-
* @param {string} string
14+
* @param {string} base64
1515
* @returns {Promise.<string>}
1616
*/
17-
export async function Base64Encode(string: string): Promise<string> {
17+
export async function Base64Encode(base64: string): Promise<string> {
1818
// BEGIN USER CODE
19-
return Base64.encode(string);
19+
return Base64.encode(base64);
2020
// END USER CODE
2121
}

packages/pluggableWidgets/column-chart-native/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.0.2] - 2023-8-22
10+
911
### Fixed
1012

1113
- We fixed an issue when running with Mx10 crashes the app.

packages/pluggableWidgets/column-chart-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"detox": "^19.7.1",
3333
"eslint": "^7.20.0"
3434
}
35-
}
35+
}

packages/pluggableWidgets/floating-action-button-native/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.1] - 2023-10-24
10+
11+
### Fixed
12+
13+
- We have fixed an error related to useNativeDriver.
14+
915
## [4.0.0] - 2023-3-28
1016

1117
## BREAKING

packages/pluggableWidgets/floating-action-button-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "floating-action-button-native",
33
"widgetName": "FloatingActionButton",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",

packages/pluggableWidgets/floating-action-button-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="FloatingActionButton" version="4.0.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="FloatingActionButton" version="4.0.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="FloatingActionButton.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)