🐛[bugfix] ビルド時のエラー/ワーニングが発生する問題を修正
インストーラーのURLを修正
This commit is contained in:
@@ -588,25 +588,9 @@ Section Install
|
|||||||
|
|
||||||
!insertmacro CheckIfAppIsRunning
|
!insertmacro CheckIfAppIsRunning
|
||||||
|
|
||||||
; ; Copy main executable
|
|
||||||
; File "${MAINBINARYSRCPATH}"
|
|
||||||
|
|
||||||
; ; Copy resources
|
|
||||||
; {{#each resources_dirs}}
|
|
||||||
; CreateDirectory "$INSTDIR\\{{this}}"
|
|
||||||
; {{/each}}
|
|
||||||
; {{#each resources}}
|
|
||||||
; File /a "/oname={{this.[1]}}" "{{unescape-dollar-sign @key}}"
|
|
||||||
; {{/each}}
|
|
||||||
|
|
||||||
; ; Copy external binaries
|
|
||||||
; {{#each binaries}}
|
|
||||||
; File /a "/oname={{this}}" "{{unescape-dollar-sign @key}}"
|
|
||||||
; {{/each}}
|
|
||||||
|
|
||||||
!addplugindir "..\..\..\..\nsis\plugins\x86-unicode"
|
!addplugindir "..\..\..\..\nsis\plugins\x86-unicode"
|
||||||
; 指定のURLからファイルをダウンロード
|
; 指定のURLからファイルをダウンロード
|
||||||
!define SOFTWARE_RELEASE_URL "https://huggingface.co/misyaguziya/VRCT/resolve/main"
|
!define SOFTWARE_RELEASE_URL "https://huggingface.co/ms-software/VRCT/resolve/main"
|
||||||
!define SOFTWARE_DOWNLOAD_FILENAME "VRCT.zip"
|
!define SOFTWARE_DOWNLOAD_FILENAME "VRCT.zip"
|
||||||
Var /GLOBAL i
|
Var /GLOBAL i
|
||||||
Var /GLOBAL cmder_dl
|
Var /GLOBAL cmder_dl
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ use tauri::Manager;
|
|||||||
pub fn run() {
|
pub fn run() {
|
||||||
tauri::Builder::default()
|
tauri::Builder::default()
|
||||||
.setup(|app| {
|
.setup(|app| {
|
||||||
let main_window = app.get_webview_window("main").unwrap(); // `main_window` is declared here for all builds
|
let _main_window = app.get_webview_window("main").unwrap(); // `main_window` is declared here for all builds
|
||||||
|
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
{ main_window.open_devtools(); }
|
{ main_window.open_devtools(); }
|
||||||
|
|||||||
Reference in New Issue
Block a user