From 9c77d69e6b8bb0f1ac00443b5d572e3e546bd295 Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Thu, 9 Mar 2023 17:09:40 -0500 Subject: [PATCH] Configure USDPL back-end for decky-specific features --- backend/Cargo.lock | 2 +- backend/Cargo.toml | 4 ++-- backend/build-docker.sh | 2 +- package.json | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7f554f2..1043c10 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -174,7 +174,7 @@ checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" [[package]] name = "fantastic-rs" -version = "0.4.0" +version = "0.4.1" dependencies = [ "log", "serde", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index d80a544..0640423 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "fantastic-rs" -version = "0.4.0" +version = "0.4.1" edition = "2021" [dependencies] -usdpl-back = { version = "0.10", features = ["blocking"]} +usdpl-back = { version = "0.10", features = ["blocking", "decky"]} serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/backend/build-docker.sh b/backend/build-docker.sh index 6243f9a..c59496c 100755 --- a/backend/build-docker.sh +++ b/backend/build-docker.sh @@ -6,7 +6,7 @@ rustc --version cargo --version echo "--- Building plugin backend ---" -cargo build --release +cargo build --release --features usdpl-back/decky mkdir -p out cp target/release/fantastic-rs out/backend diff --git a/package.json b/package.json index df12fa5..d3c69a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Fantastic", - "version": "0.4.0", - "description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack", + "version": "0.4.1", + "description": "A plugin to set a custom fan curve", "scripts": { "build": "shx rm -rf dist && rollup -c", "watch": "rollup -c -w",