README.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Change log
  2. ----------
  3. 1.5.1 (2008-08-02)
  4. - Back out the bugfix for deadkeys - that actually broke the ascii conversion. The py2exe bugfix stays.
  5. 1.6 (2008-07-20)
  6. - BUGFIX: deadkeys on international keyboards work correctly.
  7. - BUGFIX: pyHook can now be used in binaries built with py2exe (maybe this will
  8. work with PyInstaller too).
  9. 4/1/05
  10. - Changed stateful key tracking to work better with SendKeys
  11. - Possibly fixed bug where weird chars were insert when Alt+Arrow key pressed
  12. 2/23/05
  13. - Added documentation
  14. - Added KeyAll property to HookManager
  15. 10/11/04
  16. - Added support for translating virtual keycodes to ASCII characters when possible
  17. - Added support for stopping event propagation
  18. 9/13/04
  19. - AA example was updated to work with the wx namespace
  20. - Added support for allowing/disallowing event propagation (see example.py)
  21. - Added a proper __init__.py to the package
  22. Known bugs
  23. ----------
  24. - PyInstaller can't build single-file executables using pyHook. This may be
  25. fixed in 1.6, but hasn't been tested.
  26. - WM_CHAR messages are not intercepted by pyHook, even if SubscribeKeyChar() or
  27. SubscribeKeyAll() are used to set the callback function.
  28. Limitations
  29. -----------
  30. - pyHook will not work on Win9x (no messages show up) as it uses hooks which
  31. are not present in Windows systems prior to NT 4.0 SP3.
  32. Website
  33. -------
  34. Visit http://www.cs.unc.edu/assist and click developer resources for binaries,
  35. documentation, and tutorials.
  36. Bug reports and feature requests should be reported via the Sourceforge page at
  37. https://sourceforge.net/projects/uncassist/