Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Feb 28, 2024
2 parents b7694d9 + 5d77bdc commit 00dcbd8
Show file tree
Hide file tree
Showing 12 changed files with 346 additions and 257 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ packages/**/*.d.ts
bin
build
Pods
!packages/**/platforms
!packages/*/platforms
/packages/**/*.aar
/packages/**/*.framework
/packages/**/*.xcframework
/demo-snippets/**/*.aar
*.xcuserdatad
/packages/README.md
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.19](https://github.com/nativescript-community/ble/compare/v3.1.18...v3.1.19) (2024-02-06)

### Bug Fixes

* **android:** set default encoding to prevent errors ([4ee622f](https://github.com/nativescript-community/ble/commit/4ee622f652171f6e4c35cee29fbb88718df1e6ae))

## [3.1.18](https://github.com/nativescript-community/ble/compare/v3.1.17...v3.1.18) (2024-01-11)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion demo-ng
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"typescript": "5.3.3"
},
"main": "app/app"
}
}
2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.1.18",
"version": "3.1.19",
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"packages": [
"packages/*"
Expand Down
4 changes: 4 additions & 0 deletions packages/ble/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.19](https://github.com/nativescript-community/ble/compare/v3.1.18...v3.1.19) (2024-02-06)

**Note:** Version bump only for package @nativescript-community/ble

## [3.1.18](https://github.com/nativescript-community/ble/compare/v3.1.17...v3.1.18) (2024-01-11)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/ble/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nativescript-community/ble",
"version": "3.1.18",
"version": "3.1.19",
"description": "Connect to and interact with Bluetooth LE peripherals.",
"main": "./index",
"typings": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/ble/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ export class Bluetooth extends BluetoothCommon {
);
}

private writeValueToChar(characteristic: android.bluetooth.BluetoothGattCharacteristic, value, encoding) {
private writeValueToChar(characteristic: android.bluetooth.BluetoothGattCharacteristic, value, encoding = 'iso-8859-1') {
const nArray = arrayToNativeArray(value, true, true, true);
if (nArray) {
if (ArrayBuffer.isView(nArray)) {
Expand Down
2 changes: 1 addition & 1 deletion tools
Submodule tools updated 3 files
+3 −1 common/.gitignore
+17 −16 package.json
+4 −2 tsconfig.json
Loading

0 comments on commit 00dcbd8

Please sign in to comment.