A photo manager for VRChat.

fuck

Changed files
+7 -4
src
Components
src-tauri
+4 -1
changelog
··· 58 58 - Fix caching issues with photo paths 59 59 - Fix VRCPM using way to many resources while being minimised after starting in the background 60 60 - Changed image resizing algorithm so preview images look less pixelated 61 - - Fix issue where photos wouldn't display in the list if you opened the app before it had loaded 61 + - Fix issue where photos wouldn't display in the list if you opened the app before it had loaded 62 + 63 + Hotfix 1: 64 + - Fixed world cache not being saved to the config file
+1 -1
src-tauri/Cargo.lock
··· 5260 5260 5261 5261 [[package]] 5262 5262 name = "vrcpm-rs" 5263 - version = "0.2.2" 5263 + version = "0.2.2-hot1" 5264 5264 dependencies = [ 5265 5265 "dirs", 5266 5266 "fast_image_resize",
+1 -1
src-tauri/Cargo.toml
··· 1 1 [package] 2 2 name = "vrcpm-rs" 3 - version = "0.2.2" 3 + version = "0.2.2-hot1" 4 4 description = "VRChat Photo Manager" 5 5 authors = ["_phaz"] 6 6 edition = "2021"
+1 -1
src/Components/PhotoViewer.tsx
··· 435 435 } 436 436 437 437 worldCache.push(worldData); 438 - invoke('set_config_value_string', { key: 'worldcache', value: worldCache }); 438 + invoke('set_config_value_string', { key: 'worldcache', value: JSON.stringify(worldCache) }); 439 439 440 440 loadWorldData(worldData); 441 441 })