aviaryan / Clipjump

:clipboard: Clipboard Manager for Windows, built in AutoHotkey
http://clipjump.sourceforge.net/
384 stars 62 forks source link

Version 12.5 doesn't work #120

Closed happysurf closed 8 years ago

happysurf commented 8 years ago

Version 12.5 doesn't work on my XP this morning. Nothing is captured with Ctrl+C and nothing is pasted with Ctrl+V shortcut.

aviaryan commented 8 years ago

Yes. I just got to know about this today, thanks to @Gabr-F ( https://github.com/aviaryan/Clipjump/issues/114#issuecomment-211486167 ). I will come up with a fix soon. In the meanwhile, you can manually edit Clipjump.ahk to fix this. You just have to change line 412 and 413. (https://github.com/aviaryan/Clipjump/blob/master/Clipjump.ahk#L412)

    timeDiff := TickCount64() - lastClipboardTime
    lastClipboardTime := TickCount64()

Replace TickCount64() by A_TickCount.

aviaryan commented 8 years ago

Issue #121

happysurf commented 8 years ago

The Clipjump.ahk line changes fix the problem. Thanks.