diff --git a/.github/images/devices-screen.png b/.github/images/devices-screen.png index f58dc0a..0b0e5eb 100644 Binary files a/.github/images/devices-screen.png and b/.github/images/devices-screen.png differ diff --git a/.github/images/execuse-command.png b/.github/images/execuse-command.png new file mode 100644 index 0000000..2b7ac2c Binary files /dev/null and b/.github/images/execuse-command.png differ diff --git a/README.md b/README.md index 20506b1..59e2ff2 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ A versatile tool for managing Mi Home smart devices. - View device information, such as `token`, `ip`, `did` - Enable LAN mode for bulbs +- Execute device commands ## Usage @@ -21,6 +22,7 @@ A versatile tool for managing Mi Home smart devices. ### 2. Use the app ![Devices screen](.github/images/devices-screen.png) +![Execute command](.github/images/execuse-command.png) ## Download diff --git a/package.json b/package.json index d023942..d4ef99b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mi-home-toolkit", - "version": "1.0.0", + "version": "1.1.0", "scripts": { "ng": "ng", "start": "ng serve", @@ -8,6 +8,10 @@ "watch": "ng build --watch --configuration development", "tauri": "tauri" }, + "engines": { + "node": ">=18.19.1", + "pnpm": ">=8" + }, "private": true, "dependencies": { "@angular/animations": "^18.2.1", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 8dcb747..320a2ef 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2106,7 +2106,7 @@ dependencies = [ [[package]] name = "mi-home-toolkit" -version = "1.0.0" +version = "1.1.0" dependencies = [ "anyhow", "lazy_static", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 806edc3..a5161a6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,25 +1,25 @@ -workspace = {members = ["miio"] } +workspace = {members = ["miio"]} [package] authors = ["Dmitrii Kuzmin"] description = "A Tauri App" edition = "2021" name = "mi-home-toolkit" -version = "1.0.0" +version = "1.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] -tauri-build = {version = "2.0.0-rc.0", features = [] } +tauri-build = {version = "2.0.0-rc.0", features = []} [dependencies] anyhow = "1.0.82" lazy_static = "1.4.0" miio = {path = "./miio/"} -serde = {version = "1.0.198", features = ["derive"] } +serde = {version = "1.0.198", features = ["derive"]} serde_json = "1.0.116" -tauri = {version = "2.0.0-rc.0", features = [] } +tauri = {version = "2.0.0-rc.0", features = []} tauri-plugin-http = "2.0.0-rc.0" tauri-plugin-log = "2.0.0-rc.0" tauri-plugin-shell = "2.0.0-rc.0" -tokio = {version = "1.37.0", features = ["full"] } +tokio = {version = "1.37.0", features = ["full"]} trace = "0.1.7" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8233fe2..cca9ad1 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "Mi Home Toolkit", - "version": "1.0.0", + "version": "1.1.0", "identifier": "com.mi-home-toolkit", "build": { "beforeDevCommand": "pnpm start",