Woohoo! I'm so exited to see a new version. I've been addicted to v4 for so long unfortunately it was buggy on W7.
Testing now v5, so far I'm impressed. A few minor quirks here and there, but nothing major.
The first quirk I noticed is when you add hotkeys, the second hotkey will get double in the list of available actions, third hotkey will get tripple and so on. Other words every time a window for new hotkey is opened a list of available actions is being appended to the previous list.
The fix is simple:
In WindowHandlers\PrefHotkeys_handler.js find two times:
js code:
for (var i=0; i<10; ++i) {
Insert above:
js code:
if (!tWnd.Combo_GetCount('cboActions'))
The filename tags is extremely limited and there is a very easy way to add
user-defined date/time tags such as !yyyyMMdd which will be replaced by 20101126
For that all you need is have
date.js file and add one line in classes\__session_images.php above
js code:
return (bOverlayText?sFile:sFile.replace(/[\\/:*>""<>\|]/g, ''));
This line:
js code:
sFile = sFile.replace(new RegExp("!([a-zA-Z]+)","g"),function(a,b){return new Date().format(b)});
A couple feature requests:
- a tag for filename that would be replaced by window title and/or process of the window
- when sending a screenshot automatically preselect last user I was chatting with
- automatically refresh image when it's being edited (I guess checking modified timestamp every NN sec would not be too much of burden for the system)
Thank you very much for this very useful script!
P.S.
Do we have to periodically visit this topic/screenshotsender.com for new versions or the script has auto update feature? (I only saw counter feature so far)