I'm so glad this script is not dead (development-wise).
The new GUI looks great.
I hope the new version will not inherit so many bugs from current version...
For instance, the
new Boolean thing - it's just doesn't work.
Because of that the session screenshots being deleted even though its turned off in the settings.
I found this site that explains it:
http://brak.unsl.edu.ar/javascript/boolean.htm
quote:
Any object whose value is not undefined or null, including a Boolean object whose value is false, evaluates to true when passed to a conditional statement. For example, the condition in the following if statement evaluates to true:
x = new Boolean(false);
if( x ) //the condition is true
quote:
Do not use a Boolean object to convert a non-boolean value to a boolean value. Instead, use Boolean as a function to perform this task:
x = Boolean(expression) //preferred
x = new Boolean(expression) //don't use
So, in ss4.preferences.js after I replaced all
new Boolean with
Boolean it fixed many problems, including "delete screenshots when sign out".
I hope we'll be able test the new version this year