A photo manager for VRChat.

fuck

Changed files
+7 -4
src
Components
src-tauri
+4 -1
changelog
··· 58 - Fix caching issues with photo paths 59 - Fix VRCPM using way to many resources while being minimised after starting in the background 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
··· 58 - Fix caching issues with photo paths 59 - Fix VRCPM using way to many resources while being minimised after starting in the background 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 62 + 63 + Hotfix 1: 64 + - Fixed world cache not being saved to the config file
+1 -1
src-tauri/Cargo.lock
··· 5260 5261 [[package]] 5262 name = "vrcpm-rs" 5263 - version = "0.2.2" 5264 dependencies = [ 5265 "dirs", 5266 "fast_image_resize",
··· 5260 5261 [[package]] 5262 name = "vrcpm-rs" 5263 + version = "0.2.2-hot1" 5264 dependencies = [ 5265 "dirs", 5266 "fast_image_resize",
+1 -1
src-tauri/Cargo.toml
··· 1 [package] 2 name = "vrcpm-rs" 3 - version = "0.2.2" 4 description = "VRChat Photo Manager" 5 authors = ["_phaz"] 6 edition = "2021"
··· 1 [package] 2 name = "vrcpm-rs" 3 + version = "0.2.2-hot1" 4 description = "VRChat Photo Manager" 5 authors = ["_phaz"] 6 edition = "2021"
+1 -1
src/Components/PhotoViewer.tsx
··· 435 } 436 437 worldCache.push(worldData); 438 - invoke('set_config_value_string', { key: 'worldcache', value: worldCache }); 439 440 loadWorldData(worldData); 441 })
··· 435 } 436 437 worldCache.push(worldData); 438 + invoke('set_config_value_string', { key: 'worldcache', value: JSON.stringify(worldCache) }); 439 440 loadWorldData(worldData); 441 })