Skip to content

Commit 3225985

Browse files
chore(minor): 1.7.0-beta.2 [skip ci]
## [1.7.0-beta.2](v1.7.0-beta.1...v1.7.0-beta.2) (2026-02-14) ### 🍕 Features * Update build.yml to include tauri secrets in env ([e02963a](e02963a))
1 parent e02963a commit 3225985

File tree

4 files changed

+20
-80
lines changed

4 files changed

+20
-80
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
[![semantic versioning](https://img.shields.io/badge/semantic%20versioning-2.0.0-green.svg)](https://semver.org)
44
> All notable changes to this project will be documented in this file
55
6+
## [1.7.0-beta.2](https://github.com/EyeTrackVR/FirmwareFlashingTool/compare/v1.7.0-beta.1...v1.7.0-beta.2) (2026-02-14)
7+
8+
### 🍕 Features
9+
10+
* Update build.yml to include tauri secrets in env ([e02963a](https://github.com/EyeTrackVR/FirmwareFlashingTool/commit/e02963a2e0f13476c079ec38340598c79e41b71c))
11+
612
## [1.7.0-beta.1](https://github.com/EyeTrackVR/FirmwareFlashingTool/compare/v1.6.0...v1.7.0-beta.1) (2025-03-21)
713

814
### 🍕 Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@
100100
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
101101
"tauri-plugin-upload-api": "github:tauri-apps/tauri-plugin-upload"
102102
}
103-
}
103+
}

src-tauri/Cargo.toml

Lines changed: 12 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
name = "firmware_flashing_tool"
33
version = "1.7.0"
44
description = "A tool to flash the firmware of the EyeTrackVR tracker."
5-
authors = [
6-
"DaOfficialWizard",
7-
"Luckmer",
8-
"Lorow",
9-
]
5+
authors = ["DaOfficialWizard", "Luckmer", "Lorow"]
106
license = "MIT"
117
repository = "https://github.com/EyeTrackVR/FirmwareFlashingTool"
128
default-run = "firmware_flashing_tool"
@@ -45,9 +41,6 @@ path = "src/lib/api"
4541
[dependencies.tauri-plugin-esp]
4642
path = "src/lib/esp"
4743

48-
# [dependencies.tauri-plugin-etvr-backend]
49-
# path = "src/lib/etvr_backend_module"
50-
5144
[dependencies.tauri-plugin-window-state]
5245
git = "https://github.com/tauri-apps/plugins-workspace"
5346
branch = "v1"
@@ -70,102 +63,43 @@ branch = "v1"
7063

7164
[dependencies.tokio]
7265
version = "1"
73-
features = [
74-
"full",
75-
]
66+
features = ["full"]
7667

7768
[workspace]
78-
members = [
79-
"src/lib/api",
80-
"src/lib/util",
81-
"src/lib/esp",
82-
# "src/lib/etvr_backend_module"
83-
]
69+
members = ["src/lib/api", "src/lib/util", "src/lib/esp"]
8470

8571
[workspace.dependencies]
8672
dialoguer = "0.11.0"
8773
log = "0.4.21"
8874

8975
[workspace.dependencies.reqwest]
9076
version = "0.11"
91-
features = [
92-
"json",
93-
"rustls-tls",
94-
]
77+
features = ["json", "rustls-tls"]
9578

9679
[workspace.dependencies.serde]
9780
version = "1.0.197"
98-
features = [
99-
"derive",
100-
]
81+
features = ["derive"]
10182

10283
[workspace.dependencies.specta]
10384
version = "2.0.0-rc.7"
104-
features = [
105-
"functions",
106-
"tauri",
107-
]
85+
features = ["functions", "tauri"]
10886

10987
[workspace.dependencies.tauri-specta]
11088
version = "2.0.0-rc.4"
111-
features = [
112-
"javascript",
113-
"typescript",
114-
]
89+
features = ["javascript", "typescript"]
11590

11691
[workspace.dependencies.tauri]
11792
version = "1.6.1"
118-
features = [
119-
"process-exit",
120-
"protocol-asset",
121-
"clipboard-all",
122-
"fs-all",
123-
"dialog-all",
124-
"http-all",
125-
"icon-ico",
126-
"notification-all",
127-
"os-all",
128-
"path-all",
129-
"process-relaunch",
130-
"updater",
131-
"shell-open",
132-
# "shell-all",
133-
"system-tray",
134-
"window-center",
135-
"window-close",
136-
"window-create",
137-
"window-hide",
138-
"window-maximize",
139-
"window-minimize",
140-
"window-request-user-attention",
141-
"window-set-decorations",
142-
"window-set-focus",
143-
"window-set-fullscreen",
144-
"window-set-position",
145-
"window-set-resizable",
146-
"window-set-size",
147-
"window-set-title",
148-
"window-show",
149-
"window-start-dragging",
150-
"window-unmaximize",
151-
"window-unminimize",
152-
]
93+
features = ["process-exit", "protocol-asset", "clipboard-all", "fs-all", "dialog-all", "http-all", "icon-ico", "notification-all", "os-all", "path-all", "process-relaunch", "updater", "shell-open", "system-tray", "window-center", "window-close", "window-create", "window-hide", "window-maximize", "window-minimize", "window-request-user-attention", "window-set-decorations", "window-set-focus", "window-set-fullscreen", "window-set-position", "window-set-resizable", "window-set-size", "window-set-title", "window-show", "window-start-dragging", "window-unmaximize", "window-unminimize"]
15394

15495
[features]
155-
default = [
156-
"custom-protocol",
157-
]
158-
custom-protocol = [
159-
"tauri/custom-protocol",
160-
]
161-
updater = [
162-
"tauri/updater",
163-
]
96+
default = ["custom-protocol"]
97+
custom-protocol = ["tauri/custom-protocol"]
98+
updater = ["tauri/updater"]
16499

165100
[build-dependencies.tauri-build]
166101
version = "1.5.1"
167-
features = [
168-
]
102+
features = []
169103

170104
[profile.dev]
171105
debug = 0

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,4 @@
194194
"iconAsTemplate": true
195195
}
196196
}
197-
}
197+
}

0 commit comments

Comments
 (0)