Skip to content

Commit 3fe3e48

Browse files
committed
Update libs and lock files, add new method update_capabilities on Display
1 parent 14c42c9 commit 3fe3e48

File tree

13 files changed

+5003
-548
lines changed

13 files changed

+5003
-548
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Alexandre MONIER <[email protected]>"]
33
edition = "2021"
44
name = "ddc-node"
5-
version = "1.0.2"
5+
version = "1.0.3"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

@@ -12,9 +12,9 @@ crate-type = ["cdylib"]
1212
[dependencies]
1313
ddc = "0.2.2"
1414
ddc-hi = "0.4.1"
15-
mccs-db = "0.1.2"
16-
napi = {version = "2.10.11", features = ["async"]}
17-
napi-derive = "2.10.0"
15+
mccs-db = "0.1.3"
16+
napi = {version = "2.12.6", features = ["async"]}
17+
napi-derive = "2.12.5"
1818

1919
[build-dependencies]
2020
napi-build = "2.0.1"

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export class Display {
5757
valueOrOffset: number,
5858
bytes?: Array<number> | undefined | null,
5959
): Promise<undefined>
60+
updateCapabilities(): string | null
6061
}
6162
export type JsDisplayManager = DisplayManager
6263
export class DisplayManager {

index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/* prettier-ignore */
4+
5+
/* auto-generated by NAPI-RS */
6+
17
const { existsSync, readFileSync } = require('fs')
28
const { join } = require('path')
39

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-darwin-arm64",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"darwin"
66
],

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-darwin-x64",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"darwin"
66
],

npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-linux-arm64-gnu",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"linux"
66
],

npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-linux-x64-gnu",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"linux"
66
],

npm/win32-arm64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-win32-arm64-msvc",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"win32"
66
],

npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ddc-node/ddc-node-win32-x64-msvc",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"os": [
55
"win32"
66
],

0 commit comments

Comments
 (0)