Skip to content

Commit

Permalink
Update libs and lock files, add new method update_capabilities on Dis…
Browse files Browse the repository at this point in the history
…play
  • Loading branch information
ThalusA committed May 1, 2023
1 parent 14c42c9 commit 3fe3e48
Show file tree
Hide file tree
Showing 13 changed files with 5,003 additions and 548 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Alexandre MONIER <[email protected]>"]
edition = "2021"
name = "ddc-node"
version = "1.0.2"
version = "1.0.3"

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

Expand All @@ -12,9 +12,9 @@ crate-type = ["cdylib"]
[dependencies]
ddc = "0.2.2"
ddc-hi = "0.4.1"
mccs-db = "0.1.2"
napi = {version = "2.10.11", features = ["async"]}
napi-derive = "2.10.0"
mccs-db = "0.1.3"
napi = {version = "2.12.6", features = ["async"]}
napi-derive = "2.12.5"

[build-dependencies]
napi-build = "2.0.1"
Expand Down
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export class Display {
valueOrOffset: number,
bytes?: Array<number> | undefined | null,
): Promise<undefined>
updateCapabilities(): string | null
}
export type JsDisplayManager = DisplayManager
export class DisplayManager {
Expand Down
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/* tslint:disable */
/* eslint-disable */
/* prettier-ignore */

/* auto-generated by NAPI-RS */

const { existsSync, readFileSync } = require('fs')
const { join } = require('path')

Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-darwin-arm64",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-darwin-x64",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-linux-arm64-gnu",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-linux-x64-gnu",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-win32-arm64-msvc",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ddc-node/ddc-node-win32-x64-msvc",
"version": "1.0.2",
"version": "1.0.3",
"os": [
"win32"
],
Expand Down
Loading

0 comments on commit 3fe3e48

Please sign in to comment.