Merge pull request #23 from SteelDynamite/packaging/windows-msi

Packaging/windows msi
This commit is contained in:
SteelDynamite 2026-04-03 11:50:28 +01:00 committed by GitHub
commit 1b8febcb45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 5 deletions

View file

@ -2398,7 +2398,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "onyx-tauri" name = "onyx-tasks"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"chrono", "chrono",

View file

@ -1,13 +1,17 @@
[package] [package]
name = "onyx-tauri" name = "onyx-tasks"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "Tauri v2 desktop GUI for Onyx" description = "Tauri v2 desktop GUI for Onyx"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
repository = "https://github.com/SteelDynamite/onyx" repository = "https://github.com/SteelDynamite/onyx"
[[bin]]
name = "onyx-standalone"
path = "src/main.rs"
[lib] [lib]
name = "onyx_tauri_lib" name = "onyx_tasks_lib"
crate-type = ["staticlib", "cdylib", "rlib"] crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies] [build-dependencies]

View file

@ -2,5 +2,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() { fn main() {
onyx_tauri_lib::run() onyx_tasks_lib::run()
} }

View file

@ -28,7 +28,7 @@
}, },
"bundle": { "bundle": {
"active": true, "active": true,
"targets": ["appimage", "deb"], "targets": ["appimage", "deb", "msi"],
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",