Tuesday, January 25, 2011

J7Goodies version 1.0.6 released

J7Goodies version 1.0.6 has been released. This version brings the following improvements.



1. Improved native library unloading.
Now the ClassLoader is forced at application exit to unload the native library. This should prevent a rare situation when the native library was kept in the temp directory.

2. Keeping the thumbnail toolbar visible.
When you hide and then show again a window that has a thumbnail toolbar then the toolbar will stay hidden. This is how Windows 7 works. Now you can show the toolbar again be calling it's show() method (only after your window is visible).

3. Detecting when a taskbar button is created.
When you hide and show your application window then its taskbar button is destroyed and recreated every time. You cannot access the button until it is created and sometimes it happens some time after the window became visible. Now you can be informed about this event by adding a TaskbarButtonListener to your TaskbarButton.
taskbarButton.addTaskbarButtonListener(new TaskbarButtonListener() {
    public void taskbarButtonCreated(TaskbarButtonEvent tbe) {
        thumbnailToolBar.show();
    }
});
4. New license manager.
The license verification code has been rewritten. Previously license files were encrypted. Now they are plain-text files. This will help to spot a situation when someone steals your license and uses it in his/her own application.

5. Fixed TaskbarButton.isSupported()
This method was throwing UnsatisfiedLinkError instead of returning false when was not supported.

6. Performance improvements for thumbnails and live previews
Now the code that deals with window thumbnails and live previews is more efficient.

7. Native library has been refactored
The native library has been refactored so now it should be more reliable and efficient.

No comments:

Post a Comment