this is an empty template with a dependency… in the .vl file VL adds some characters infront of the path which breaks absolute paths to the dependency and causes it to not load correctly…
in this line:
DocumentDependency Id=“RIRBI2URA45QdSya1fib9I” Location=“./C:/VVVV/_dev/vvvv_50beta38.1_x64/lib/packs/VL.Devices.uEye.develop/VL.Devices.uEye.vl”
changing it to:
DocumentDependency Id=“RIRBI2URA45QdSya1fib9I” Location=“C:/VVVV/_dev/vvvv_50beta38.1_x64/lib/packs/VL.Devices.uEye.develop/VL.Devices.uEye.vl”
(removing the . and / infront of the path)
makes the patch usable again
okay… this is completly unrelated to the new version.
my problem is caused by having my patch files on a network resource and having my VVVV locally with the libraries that i want to reference to in my patch.
so my patch is on:
V:\[…]\VVVV\Patches
my VVVV is on:
C:\VVVV_dev\vvvv_50beta38.1_x64
and the lib that i want to manually add in VL is in:
referencing the lib from my patch that is on the network leads to mentioned error in the document dependency where my absolute local path gets a ./ infront of it:
Do you have recommendations or best practises on how to work with VVVV over the network possibly with multiple people working on it? Just put everything on the network or keep it completly local? How to handle Versioning?