When launching Bridge today, I was astonished to be met with a message window:
"April Fools Day! Your copy of Snaps has expired. Please visit
www.DAMUseful.com to obtain a current copy. To stop this message from appearing, remove the script RF_Snapper from your Bridge StartupScripts menu. You can access this menu by opening the Bridge Preferences and clicking the Reveal button in the Startup Scripts preferences panel."
I looked at the script itself and found that there is a date verification happening:
var e = new Date(2009, 11, 31); // expires 3/4/08 (month is 0-based)
var t = new Date(); // today's date
if(t.getTime() > e.getTime())
{
By changing that 'var e' to be 2010, I'm able to get rid of the warning. I don't easily see over at damuseful.com that there is/isn't a new version of the script available.
The script header shows the following:
#target bridge
//-----------------------------------------------------------------------
// Snaps.jsx
// Version 04
// December 31, 2007
//
Is there a new version or should I just continue to run with my workaround in place?
-Tim