2007-11-19, 12:50 AM
Looking for some feedback on changes...
I'm considering releasing a new version of WizTools. I have some changes I'd like to implement, but they will break existing plugins, so I wanted to run by you guys for input before I released anything. Once released (if we do in fact agree to the changes), We will all need to update our plug-ins to support the new DLLs.
I want to make a packaging change in this version that affects the following objects:
ImdbScraper, HttpImageGrabber, MovieInfo, WizThumbnail
The changes:
* Added TopmostViewableIndex property to the WizUiList object. Get/set the first viewable item in the list
* Deprecated WizInfo.logMessage, use WizInfo.LogMessage (caps)
* Split HttpInfoGrabber and HttpImageGrabber into new dll - WizWebHelper.DLL
* Totally rewrote scraper logic for HttpInfoGrabber using HtmlAgilityPack.
* Added new parameter method to HttpInfoGrabber SearchMovie, AkaLookup, will perform an IMDB lookup. Helps find foreign titles.
* Added position indicator '_' for textbox input. Gives visual clue as to cursor position.
I'm considering releasing a new version of WizTools. I have some changes I'd like to implement, but they will break existing plugins, so I wanted to run by you guys for input before I released anything. Once released (if we do in fact agree to the changes), We will all need to update our plug-ins to support the new DLLs.
I want to make a packaging change in this version that affects the following objects:
ImdbScraper, HttpImageGrabber, MovieInfo, WizThumbnail
The changes:
- The above currently reside in namespace WizUtilities, I'd like to move to WizUtilities.WizWebHelper to follow the naming convention started with WizUtilites.WizUiHelper.
- Additionally I would like to deprecate HttpInfoGrabber and use ImdbScraper instead.
- For all code modules using the classes that will be moving to the new namespace, you will have to add: Code:
using WizUtilities.WizWebHelper;
- For all code modules using the HttpInfoGrabber, you will have to modify to use the ImdbScraper object instead.
* Added TopmostViewableIndex property to the WizUiList object. Get/set the first viewable item in the list
* Deprecated WizInfo.logMessage, use WizInfo.LogMessage (caps)
* Split HttpInfoGrabber and HttpImageGrabber into new dll - WizWebHelper.DLL
* Totally rewrote scraper logic for HttpInfoGrabber using HtmlAgilityPack.
* Added new parameter method to HttpInfoGrabber SearchMovie, AkaLookup, will perform an IMDB lookup. Helps find foreign titles.
* Added position indicator '_' for textbox input. Gives visual clue as to cursor position.