diff --git a/Makefile b/Makefile index 0477cd9..a56c97a 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ build-tui: # Build the Tauri desktop app (Linux AppImage) build-tauri: - cd web && NODE_ENV=development NO_STRIP=true npx tauri build --bundles appimage + cd web && NODE_ENV=development NO_STRIP=true npx tauri build --bundles appimage,deb,rpm # Generate Swagger docs docs: diff --git a/web/src-tauri/Cargo.toml b/web/src-tauri/Cargo.toml index fb4d9fc..0c62754 100644 --- a/web/src-tauri/Cargo.toml +++ b/web/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.1.0" +version = "0.2.0" description = "A Tauri App" authors = ["you"] license = "" diff --git a/web/src-tauri/tauri.conf.json b/web/src-tauri/tauri.conf.json index 57b077f..da3cbf1 100644 --- a/web/src-tauri/tauri.conf.json +++ b/web/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "dumpsterChat", - "version": "0.1.0", + "version": "0.2.0", "identifier": "coffee.dustin.dumpsterchat", "build": { "frontendDist": "../dist",