Skip to content

Commit 90e422b

Browse files
committed
fix: register install_platformio commands in Tauri handler
1 parent 49edbf2 commit 90e422b

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Project**: AI-native embedded development environment (Tauri 2 + React + TypeScript + Rust)
44
**Platform**: Windows only
55
**Git repo**: `embedist/embedist/` (not the root `embedist/` directory)
6-
**Latest release**: v0.16.0
6+
**Latest release**: v0.16.1
77

88
---
99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "embedist",
3-
"version": "0.16.0",
3+
"version": "0.16.1",
44
"description": "AI-native embedded development environment",
55
"type": "module",
66
"scripts": {

src-tauri/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ pub fn run() {
5858
commands::grep_search,
5959
commands::run_shell,
6060
commands::reveal_in_explorer,
61+
commands::install_platformio,
62+
commands::install_platform,
6163
])
6264
.run(tauri::generate_context!())
6365
.unwrap_or_else(|e| {

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Embedist",
4-
"version": "0.16.0",
4+
"version": "0.16.1",
55
"identifier": "com.embedist.embedist",
66
"build": {
77
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)