diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 4fbe826..54a0047 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -172,10 +172,6 @@ jobs: if: startsWith(matrix.os, 'macos') run: | brew install protobuf - - name: Install and Protobuf (Ubuntu) - if: matrix.os == 'ubuntu-22.04' - run: | - sudo apt install -y protobuf-compiler - name: Install protoc and openssl for windows if: matrix.os == 'windows-latest' run: | @@ -188,7 +184,7 @@ jobs: if: matrix.os == 'ubuntu-22.04' run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libxdo-dev protobuf-compiler - name: Install Rust uses: dtolnay/rust-toolchain@stable diff --git a/Cargo.lock b/Cargo.lock index 4b00d65..beab13c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3862,9 +3862,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.161" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libdbus-sys" @@ -4336,9 +4336,9 @@ dependencies = [ [[package]] name = "neli" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" +checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9" dependencies = [ "byteorder", "libc", @@ -4348,9 +4348,9 @@ dependencies = [ [[package]] name = "neli-proc-macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" +checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe" dependencies = [ "either", "proc-macro2", diff --git a/apps/desktop/messages/en.json b/apps/desktop/messages/en.json index 18e680c..5a3709d 100644 --- a/apps/desktop/messages/en.json +++ b/apps/desktop/messages/en.json @@ -57,7 +57,7 @@ "settings_extensions_table_col_uninstall": "Uninstall", "settings_add_dev_ext_title": "Add Dev Extension", - "settings_add_dev_ext_description": "There are 4 options to install an extension in developer mode. Either load it from your local tarball file, a tarball remote URL, npm package name or load from a remote URL.", + "settings_add_dev_ext_description": "There are 4 options to install an extension in developer mode. Either load it from your local tarball file, local folder, a tarball remote URL, or npm package name.", "settings_add_dev_ext_install_from_ext_folders": "Install from Extension Folders", "settings_add_dev_ext_install_from_ext_files": "Install from Extension Tarball File", "settings_add_dev_ext_drag_and_drop": "Drag and Drop", diff --git a/apps/desktop/setup.ts b/apps/desktop/setup.ts index 495d5b0..bf5181d 100644 --- a/apps/desktop/setup.ts +++ b/apps/desktop/setup.ts @@ -1,13 +1,15 @@ import assert from "assert" +import fs from "fs" import { compressString, decompressString } from "@kksh/utils" -import { $ } from "bun" /* -------------------------------------------------------------------------- */ /* Download Dance JSON */ /* -------------------------------------------------------------------------- */ console.log("Downloading Dance Data...") const rawData = await fetch("https://dance.kunkun.sh/api/data").then((res) => res.text()) - +if (!fs.existsSync("./src/data")) { + fs.mkdirSync("./src/data", { recursive: true }) +} function formatFileSize(size: number) { return `${(size / 1024).toFixed(2)} KB` } diff --git a/packages/tauri-plugins/jarvis/permissions/autogenerated/reference.md b/packages/tauri-plugins/jarvis/permissions/autogenerated/reference.md index 7020b75..19f9805 100644 --- a/packages/tauri-plugins/jarvis/permissions/autogenerated/reference.md +++ b/packages/tauri-plugins/jarvis/permissions/autogenerated/reference.md @@ -1,3 +1,4 @@ + ## Permission Table
Description | +
---|