| Version | Date | Description |
|---|---|---|
| 1.3.3 | 2010-01-25 | x64 DLL |
| 1.3.2 | 2009-07-31 | Library Location Fix |
| 1.3.1 | 2008-02-11 | SwingToIntellitype Fix |
| 1.3 | 2008-01-09 | Critical Update |
| 1.2.1 | 2007-10-05 | Minor update |
| 1.2 | 2007-01-11 | Minor Features Added |
| 1.1 | 2006-12-19 | Singleton Now |
| 1.0 | 2006-09-20 | Initial Version |
| Type | Changes | By |
|---|---|---|
![]() |
Added JIntellitype64.dll for 64 bit JRE's. Simply rename the DLL to JIntellitype.dll or use the Jintellitype.setLibraryLocation(''); function to set the path to JIntellitype64.dll. Thanks to ZeroFlag. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Fixed "Jintellitype.setLibraryLocation('');" method to to allow developers to set the path of the JIntellitype.DLL for use in executable jar's etc. Thanks to Johannes Frank. | elefkof |
![]() |
Removed Commons-Logging dependency Thanks to Johannes Frank. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Fixed "Jintellitype.swingToIntelliType()" method to handle both the old style and new style Swing/AWT modifiers. Such as the older InputEvent.SHIFT_MASK and the newer InputEvent.SHIFT_DOWN_MASK will both return the SHIFT modifier. Thanks to Thomas Beckers. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Found and fixed race condition in C DLL that was causing the problem of being able to only register one hotkey at a time. Thanks to Karl von Randow. | elefkof |
![]() |
Fixed "on" methods to be synchronized and added properly. Thanks to Thomas Beckers. | elefkof |
![]() |
Added isJintellitypeSupported() method which checks the DLL is in the path and the operating System is Windows and its a 32 bit JDK since it will not run on 64 bit JVM. Thanks to Thomas Beckers. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Added Javadoc that explains a modifier of 0 means that no modifier is required if you want to have a single key be a hotkey. Thanks to Usual. | elefkof |
![]() |
Added example of just using the PRINT_SCREEN key with no modifiers as a hotkey. Thanks to Usual. | elefkof |
![]() |
Added more constants to JIntellitypeConstants.java based on MSDN documentation. | elefkof |
![]() |
Made JIntellitype singleton thread safe by using double checked pattern. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Added registerHotKey(int identifier, String modifierAndKeyCode) to allow Strings like "CTRL+A" to be used to register hotkeys for applications that want their users to be able to define hotkeys. Thanks to Peter Fichtner. | elefkof |
![]() |
Added checkInstanceAlreadyRunning(String appTitle) to prevent multiple instances of your application from being started if you don't want to. Returns true if an instance with this application title is already running on the system. Useful for developers who only want ONE instance of their app running. | elefkof |
| Type | Changes | By |
|---|---|---|
![]() |
Changed Jintellitype to a singleton class like JIntellitype.getInstance() Thanks to Bertrand Florat. | elefkof |
![]() |
Added ability to use Swing constants for ALT, CTRL, SHIFT. Thanks to Bertrand Florat. | elefkof |