Since I have converted all my projects to GPL, I am also using the master for storing all common images and other common resources (i.e. snippets, etc.). This is working...like...awesome! Well except for the following pesky but oddly benign publishing errors:
Code: Select all
Linked file does not exist: ico_alert_NOTE_30x27.png - D:\_Projects\Flare\_Glb_project\Content\glb_resources\glb_images\icons\
Linked file does not exist: ico_alert_WARN_30x27.png - D:\_Projects\Flare\_Glb_project\Content\glb_resources\glb_images\icons\
Linked file does not exist: Default.flcts - D:\_Projects\Flare\_Glb_project\Project\ConditionTagSets\
Anyhow, that wasn't the reason for this post.
Because I am using global images, when I add new resources to the global repository, I want to make them available to the project I am working on as quickly as possible. Using the Project Import function is too slow and too many steps (i.e. Import Flare Project > Select Project folder/project > Next > Select Includes > Finish > Close). Is there a quicker way? Specifically, I just want to update the global resources folder and it would be idea to have a one button quick 'sync' like I used to have when I used External Resources or mappings.
Is this a welcomed new feature request?
In the meantime, I am thinking of creating a quick xcopy batch file sync...
Like this:
Code: Select all
@echo off
rem set source folders to backup
set glb_project=_Projects\Flare\_Glb_project\Content\glb_images
set destination1=_Projects\Flare\770-00010_User_Guide\Content\glb_images
xcopy D:\%glb_project% D:%destination1% /Y /S /I /D
exit /b 1