You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed stuck/ghost keys under multi-key chords — key/keyCode now translated atomically from GLFW key constant on release, not from stale globals (Bug A)
Fixed phantom key releases on Windows from GLFW virtual key mismatch (GLFW #2417) — scancode-based press tracking drops phantom releases (Bug B)
Added isKeyDown(int keyCode) API for querying held-key state
Renamed internal keysDown[256] to _keysDown to avoid collision with user variables
Windows
Fixed Sketch exited with code -1073741515 (DLL not found) — DLLs now copied from bundled libs/windows-x64/ to sketch folder at launch
Fixed undefined reference to nanosleep64 with GCC 14.2 — replaced usleep with std::this_thread::sleep_for
Added libssp-0.dll to runtime DLL copy list
Removed all MSYS2 references from Windows DLL check
Fixed extraction progress bar using ZipInputStream with real percentage
Fixed NoClassDefFoundError for com.sun.management on non-HotSpot JVMs
macOS
Fixed std::string not in namespace std errors on Apple clang — added #include <string> to Processing_api.h