chore(tauri): 0.1.1 — 같은 버전 msi 는 Windows 가 설치를 건너뛰어 재배포마다 올림

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
lee-hyeon-cheol
2026-09-21 17:45:50 +09:00
co-authored by Claude Fable 5.1
parent cce6531628
commit c77fc8a737
2 changed files with 43 additions and 43 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "codeassist-tauri" name = "codeassist-tauri"
version = "0.1.0" version = "0.1.1"
description = "CodeAssist 표준 Rust/Tauri 데스크톱 앱" description = "CodeAssist 표준 Rust/Tauri 데스크톱 앱"
authors = ["justdodev"] authors = ["justdodev"]
edition = "2021" edition = "2021"
+42 -42
View File
@@ -1,42 +1,42 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "CodeAssist", "productName": "CodeAssist",
"version": "0.1.0", "version": "0.1.1",
"identifier": "com.codeassist.app", "identifier": "com.codeassist.app",
"build": { "build": {
"beforeDevCommand": { "cwd": "../../2_frontend", "script": "npm run dev" }, "beforeDevCommand": { "cwd": "../../2_frontend", "script": "npm run dev" },
"devUrl": "http://localhost:15173", "devUrl": "http://localhost:15173",
"beforeBuildCommand": { "cwd": "../../2_frontend", "script": "npm run build" }, "beforeBuildCommand": { "cwd": "../../2_frontend", "script": "npm run build" },
"frontendDist": "../../2_frontend/dist" "frontendDist": "../../2_frontend/dist"
}, },
"app": { "app": {
"withGlobalTauri": false, "withGlobalTauri": false,
"windows": [ "windows": [
{ {
"label": "main", "label": "main",
"url": "/snap", "url": "/snap",
"title": "CodeAssist", "title": "CodeAssist",
"width": 960, "width": 960,
"height": 680, "height": 680,
"center": true, "center": true,
"resizable": true, "resizable": true,
"decorations": false, "decorations": false,
"visible": true "visible": true
} }
], ],
"security": { "security": {
"csp": null "csp": null
} }
}, },
"bundle": { "bundle": {
"active": true, "active": true,
"targets": "all", "targets": "all",
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",
"icons/128x128@2x.png", "icons/128x128@2x.png",
"icons/icon.icns", "icons/icon.icns",
"icons/icon.ico" "icons/icon.ico"
] ]
} }
} }