Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ApplY3D committed Aug 24, 2024
1 parent 0b8309e commit 121336c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
Binary file modified .github/images/devices-screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/images/execuse-command.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "mi-home-toolkit",
"version": "1.0.0",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"tauri": "tauri"
},
"engines": {
"node": ">=18.19.1",
"pnpm": ">=8"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 121336c

Please sign in to comment.