@capacitor-community/bluetooth-le 3.1.1 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,14 +6,14 @@
6
6
  </p>
7
7
 
8
8
  <p align="center">
9
- <img src="https://img.shields.io/maintenance/yes/2023?style=flat-square" />
9
+ <img src="https://img.shields.io/maintenance/yes/2024?style=flat-square" />
10
10
  <a href="https://github.com/capacitor-community/bluetooth-le/actions?query=workflow%3A%22CI%22"><img src="https://img.shields.io/github/actions/workflow/status/capacitor-community/bluetooth-le/main.yml?branch=main&style=flat-square" /></a>
11
11
  <a href="https://www.npmjs.com/package/@capacitor-community/bluetooth-le"><img src="https://img.shields.io/npm/l/@capacitor-community/bluetooth-le?style=flat-square" /></a>
12
12
  <br>
13
13
  <a href="https://www.npmjs.com/package/@capacitor-community/bluetooth-le"><img src="https://img.shields.io/npm/dw/@capacitor-community/bluetooth-le?style=flat-square" /></a>
14
14
  <a href="https://www.npmjs.com/package/@capacitor-community/bluetooth-le"><img src="https://img.shields.io/npm/v/@capacitor-community/bluetooth-le?style=flat-square" /></a>
15
15
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
16
- <a href="#contributors-"><img src="https://img.shields.io/badge/all%20contributors-14-orange?style=flat-square" /></a>
16
+ <a href="#contributors-"><img src="https://img.shields.io/badge/all%20contributors-16-orange?style=flat-square" /></a>
17
17
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
18
18
  </p>
19
19
 
@@ -353,8 +353,8 @@ _Note_: web support depends on the browser, see [implementation status](https://
353
353
  | [`readRssi(...)`](#readrssi) | ✅ | ✅ | ❌ |
354
354
  | [`read(...)`](#read) | ✅ | ✅ | ✅ |
355
355
  | [`write(...)`](#write) | ✅ | ✅ | ✅ |
356
- | [`readDescriptor(...)`](#read) | ✅ | ✅ | ✅ |
357
- | [`writeDescriptor(...)`](#write) | ✅ | ✅ | ✅ |
356
+ | [`readDescriptor(...)`](#readdescriptor) | ✅ | ✅ | ✅ |
357
+ | [`writeDescriptor(...)`](#writedescriptor) | ✅ | ✅ | ✅ |
358
358
  | [`writeWithoutResponse(...)`](#writewithoutresponse) | ✅ | ✅ | ✅ |
359
359
  | [`startNotifications(...)`](#startnotifications) | ✅ | ✅ | ✅ |
360
360
  | [`stopNotifications(...)`](#stopnotifications) | ✅ | ✅ | ✅ |
@@ -1107,6 +1107,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
1107
1107
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/td-tomasz-joniec"><img src="https://avatars.githubusercontent.com/u/109506928?v=4?s=100" width="100px;" alt="td-tomasz-joniec"/><br /><sub><b>td-tomasz-joniec</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=td-tomasz-joniec" title="Code">💻</a></td>
1108
1108
  <td align="center" valign="top" width="14.28%"><a href="https://fanxj.com"><img src="https://avatars.githubusercontent.com/u/10436013?v=4?s=100" width="100px;" alt="Michele Ferrari"/><br /><sub><b>Michele Ferrari</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=micheleypf" title="Code">💻</a></td>
1109
1109
  </tr>
1110
+ <tr>
1111
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/mchl18"><img src="https://avatars.githubusercontent.com/u/6136970?v=4?s=100" width="100px;" alt="mchl18"/><br /><sub><b>mchl18</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=mchl18" title="Documentation">📖</a></td>
1112
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/OpenSrcerer"><img src="https://avatars.githubusercontent.com/u/46500918?v=4?s=100" width="100px;" alt="Daniel Stefani"/><br /><sub><b>Daniel Stefani</b></sub></a><br /><a href="https://github.com/capacitor-community/bluetooth-le/commits?author=OpenSrcerer" title="Code">💻</a></td>
1113
+ </tr>
1110
1114
  </tbody>
1111
1115
  </table>
1112
1116
 
@@ -45,6 +45,9 @@ android {
45
45
  sourceCompatibility JavaVersion.VERSION_17
46
46
  targetCompatibility JavaVersion.VERSION_17
47
47
  }
48
+ kotlinOptions {
49
+ jvmTarget = 17
50
+ }
48
51
  }
49
52
 
50
53
  repositories {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor-community/bluetooth-le",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Capacitor plugin for Bluetooth Low Energy ",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",