From 0a5b4297902796a8b0ccea960c924fee79f3bc9b Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 10 Oct 2023 13:06:22 +0200 Subject: [PATCH] fetching happ and ui from remote source, renaming release branch, removing menu in profile window --- .github/workflows/release-codesigned.yaml | 2 +- package.json | 3 ++- src-tauri/src/commands/profile.rs | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-codesigned.yaml b/.github/workflows/release-codesigned.yaml index eb8257f..7c9de0f 100644 --- a/.github/workflows/release-codesigned.yaml +++ b/.github/workflows/release-codesigned.yaml @@ -2,7 +2,7 @@ name: "publish" on: push: branches: - - release-codesigned + - release-codesigned-tesing-sidecar jobs: publish-tauri: diff --git a/package.json b/package.json index dd51b73..915e892 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "scripts": { "kangaroo": "npm run dist && npm run tauri build", "dist": "rimraf ./dist && extract-zip ./pouch/ui.zip ./dist && cpy ./src-tauri/assets/ ./dist/kangaroo_assets --flat", - "tauri": "tauri" + "tauri": "tauri", + "prepare": "curl -L --output pouch/hc-stress-test.happ https://drive.switch.ch/index.php/s/ZT4dXxnW9dLMWdr/download && curl -L --output ./pouch/ui.zip https://drive.switch.ch/index.php/s/ufeiI1thysVTwn2/download" }, "devDependencies": { "@tauri-apps/cli": "^1.5.2", diff --git a/src-tauri/src/commands/profile.rs b/src-tauri/src/commands/profile.rs index 367b0fa..9206ca2 100644 --- a/src-tauri/src/commands/profile.rs +++ b/src-tauri/src/commands/profile.rs @@ -48,7 +48,6 @@ pub fn open_profile_settings( "change_profile", tauri::WindowUrl::App(std::path::PathBuf::from("kangaroo_assets").join("profiles.html")) ).title("Change Profile") - .menu(build_menu()) .inner_size(580.0, 400.0) .center() .minimizable(false)