A photo manager for VRChat.

Fixed linux tray icon title

Changed files
+33 -29
src-tauri
+3 -3
build-release.sh
··· 1 1 #!/bin/bash 2 2 3 - VERSION=0.2.4 3 + VERSION=0.2.5 4 4 5 5 # Linux builds 6 6 NO_STRIP=true pnpm tauri build ··· 18 18 mv src-tauri/target/release/bundle/deb/vrchat-photo-manager_0.0.1_amd64.deb builds/$VERSION/vrchat-photo-manager_linux_amd64.deb 19 19 mv src-tauri/target/release/bundle/rpm/vrchat-photo-manager-0.0.1-1.x86_64.rpm builds/$VERSION/vrchat-photo-manager_linux_x86_64.rpm 20 20 21 - mv src-tauri/target/x86_64-pc-windows-gnu/release/vrcpm-rs.exe builds/$VERSION/vrchat-$VERSION.exe 22 - mv src-tauri/target/x86_64-pc-windows-gnu/debug/vrcpm-rs.exe builds/$VERSION/vrchat-$VERSION-debug.exe 21 + mv src-tauri/target/x86_64-pc-windows-gnu/release/VRChatPhotoManager.exe builds/$VERSION/vrcpm-$VERSION.exe 22 + mv src-tauri/target/x86_64-pc-windows-gnu/debug/VRChatPhotoManager.exe builds/$VERSION/vrcpm-$VERSION-debug.exe
+3 -1
changelog
··· 92 92 - Implemented a view transition handler, should help with transitions when the app is scaled 93 93 94 94 v0.2.5: 95 - - Fixed the "Start with windows" button appearing on linux 95 + - Fixed the "Start with windows" button appearing on linux 96 + - Fixed linux tray icon title 97 + - Fixed build-release.sh script outputting the wrong names for windows builds
+23 -23
src-tauri/Cargo.lock
··· 3 3 version = 4 4 4 5 5 [[package]] 6 + name = "VRChatPhotoManager" 7 + version = "0.2.5" 8 + dependencies = [ 9 + "dirs 5.0.1", 10 + "fast_image_resize", 11 + "image", 12 + "mslnk", 13 + "notify", 14 + "open", 15 + "regex", 16 + "reqwest", 17 + "serde", 18 + "serde_json", 19 + "tauri", 20 + "tauri-build", 21 + "tauri-plugin-deep-link", 22 + "tauri-plugin-http", 23 + "tauri-plugin-process", 24 + "tauri-plugin-shell", 25 + "tauri-plugin-single-instance", 26 + ] 27 + 28 + [[package]] 6 29 name = "addr2line" 7 30 version = "0.24.2" 8 31 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5606 5629 version = "0.9.5" 5607 5630 source = "registry+https://github.com/rust-lang/crates.io-index" 5608 5631 checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 5609 - 5610 - [[package]] 5611 - name = "vrcpm-rs" 5612 - version = "0.2.4" 5613 - dependencies = [ 5614 - "dirs 5.0.1", 5615 - "fast_image_resize", 5616 - "image", 5617 - "mslnk", 5618 - "notify", 5619 - "open", 5620 - "regex", 5621 - "reqwest", 5622 - "serde", 5623 - "serde_json", 5624 - "tauri", 5625 - "tauri-build", 5626 - "tauri-plugin-deep-link", 5627 - "tauri-plugin-http", 5628 - "tauri-plugin-process", 5629 - "tauri-plugin-shell", 5630 - "tauri-plugin-single-instance", 5631 - ] 5632 5632 5633 5633 [[package]] 5634 5634 name = "vswhom"
+2 -2
src-tauri/Cargo.toml
··· 1 1 [package] 2 - name = "vrcpm-rs" 3 - version = "0.2.4" 2 + name = "VRChatPhotoManager" 3 + version = "0.2.5" 4 4 description = "VRChat Photo Manager" 5 5 authors = ["_phaz"] 6 6 edition = "2021"
+2
src-tauri/src/util/setup_traymenu.rs
··· 27 27 TrayIconBuilder::with_id("main") 28 28 .icon(tauri::image::Image::from_bytes(include_bytes!("../../icons/32x32.png")).unwrap()) 29 29 .menu(&tray_menu) 30 + .title("VRChat Photo Manager") 31 + .tooltip("VRChat Photo Manager") 30 32 .on_menu_event(move |app: &AppHandle, event| match event.id().as_ref() { 31 33 "quit" => { 32 34 std::process::exit(0);