History.rdoc in win32screenshot-0.0.5 vs History.rdoc in win32screenshot-0.0.6
- old
+ new
@@ -1,4 +1,17 @@
+= 0.0.6 2010-08-07
+* Trying to bring window to the foreground more aggressively (Roger Pack)
+* Added utility class Win32::Screenshot.Util with some helper methods not related directly with taking of the screenshots:
+ - all_windows - enumerates all windows and returns their titles and window handles as an Array (Roger Pack)
+ - window_title(hwnd) - returns title of the window for specified handle (Jarmo Pertman)
+ - window_hwnd(title_query) - returns handle of the window for specified title (Jarmo Pertman)
+ - dimensions_for(hwnd) - returns a width and height for a window with specified handle (Jarmo Pertman)
+* Removed a file 'win32screenshot.rb' which was solely used for displaying deprecation warnings for versions older than 0.0.4. Make sure than from now on all require statements require 'win32/screenshot'!
+
+== Bug Fixes:
+* Fixed usages of gdi32.dll BitBlt (Roger Pack)
+* It was impossible to specify correctly window titles with regular expressions special characters in them (Roger Pack)
+
= 0.0.5 2010-07-07
* Added method window_area for capturing specified area of the window instead of full window (Jarmo Pertman)
Usage: Win32::Screenshot.window_area(title, x1, y1, x2, y2) {|width, height, bmp|}
* Added method foreground_area for capturing area of the foreground (Jarmo Pertman)
Usage: Win32::Screenshot.foreground_area(x1, y1, x2, y2) {|width, height, bmp|}
\ No newline at end of file