Skip to content

Commit 00dcbd8

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents b7694d9 + 5d77bdc commit 00dcbd8

File tree

12 files changed

+346
-257
lines changed

12 files changed

+346
-257
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ packages/**/*.d.ts
4343
bin
4444
build
4545
Pods
46-
!packages/**/platforms
46+
!packages/*/platforms
4747
/packages/**/*.aar
48+
/packages/**/*.framework
49+
/packages/**/*.xcframework
4850
/demo-snippets/**/*.aar
4951
*.xcuserdatad
5052
/packages/README.md

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.1.19](https://github.com/nativescript-community/ble/compare/v3.1.18...v3.1.19) (2024-02-06)
7+
8+
### Bug Fixes
9+
10+
* **android:** set default encoding to prevent errors ([4ee622f](https://github.com/nativescript-community/ble/commit/4ee622f652171f6e4c35cee29fbb88718df1e6ae))
11+
612
## [3.1.18](https://github.com/nativescript-community/ble/compare/v3.1.17...v3.1.18) (2024-01-11)
713

814
### Bug Fixes

demo-ng

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
"typescript": "5.3.3"
1313
},
1414
"main": "app/app"
15-
}
15+
}

docs/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.18",
2+
"version": "3.1.19",
33
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
44
"packages": [
55
"packages/*"

packages/ble/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.1.19](https://github.com/nativescript-community/ble/compare/v3.1.18...v3.1.19) (2024-02-06)
7+
8+
**Note:** Version bump only for package @nativescript-community/ble
9+
610
## [3.1.18](https://github.com/nativescript-community/ble/compare/v3.1.17...v3.1.18) (2024-01-11)
711

812
### Bug Fixes

packages/ble/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ble",
3-
"version": "3.1.18",
3+
"version": "3.1.19",
44
"description": "Connect to and interact with Bluetooth LE peripherals.",
55
"main": "./index",
66
"typings": "./index.d.ts",

src/ble/index.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ export class Bluetooth extends BluetoothCommon {
20882088
);
20892089
}
20902090

2091-
private writeValueToChar(characteristic: android.bluetooth.BluetoothGattCharacteristic, value, encoding) {
2091+
private writeValueToChar(characteristic: android.bluetooth.BluetoothGattCharacteristic, value, encoding = 'iso-8859-1') {
20922092
const nArray = arrayToNativeArray(value, true, true, true);
20932093
if (nArray) {
20942094
if (ArrayBuffer.isView(nArray)) {

0 commit comments

Comments
 (0)