03-14-06	Christophe Ebl
-------------------------------
Release : Candidate 1

Updates : 
	- Bugfixes
	-   List of fixes since beta 2.7
		* font properties such as weight, decoration and family are now unset at first load
		* same font properties stay up to date when editing DIV element
		* Removed old references to standalone ImageManager for those who don't have it ;)
		* Application is now updated to JS object literal notation for further compatibility with tinyMCE's core
		* There's now only one file for initialization at the root of the plugin folder : "editor_plugin.js"
		* Fixed old function call to RestoreClass and SwitchClassSticky
	
	- Features
	-   Added dynamic preview with a clone of the original element selected in tinyMCE
	    this will help a lot setting advanced styles, cool feature I wish I had found the idea
	    earlier...!
	-  Added two properties : background-repeat and background-position
	   Next release will have decent dropdowns for those properties.
	   (By the way you can set them manually ex : left top, for background-pos, and "repeat-x" for background-rep and so on..     	
ToDo :
	- Enjoy !


Release notes :
	- RC2 will be more a "features" release


02-10-06	Christophe Ebl
-------------------------------
Release : Beta 2.7

Updates : 
	- Bugfixes
	-   Fixed toolbar button behavior (turns on when node is a child of the div element or div itself)
	-   Fixed (% / px) now choice is made through a selectbox
	-   Fixed DIV update (it works fine now, doesn't create another div)
	-   Fixed {$lang_cancel} template variable losed its value when changing color palette
	
	- Cosmetic
	-   Border Combobox has less padding and bigger border width for preview borders   	

ToDo :
	- Overflow properties (hidden, scroll, scroll-x, scroll-y...)
	- Make a combobox widget with prototype methods in JS to replace dirty border combobox


Release notes :
	- VDE is back !


01-16-06	Christophe Ebl
-------------------------------
Release : Beta 2.5

Updates : 
	- I finally made my own standalone DHTML color picker with palette chooser and gradient support (I'll show an example later on how to use it outside tinyMCE)
	- VDE now supports absolute positioning (z-index doesn't work yet)
	- Resizing through resize handles works
	- RollBack tabs to mcTabs
	- Better layout (removed nested tables, made UI in deep trouble !)
	- Updated language files en, fr
	- Handle visual aids to reveal invisible edges of the div (reported by frankblack)
	- Tutorial to handle visual aids for DIV's
		
ToDo :
	- Testing as always
	- Overflow properties (hidden, scroll, scroll-x, scroll-y...)
	- Make a combobox widget with prototype methods in JS to replace dirty border combobox
	- Fix strange button behavior when selecting node in TinyMCE document

Roadmap :
	- Fill the CSS class dropdown from an Array of stylesheets defined in editor_plugin_src.js (deprecated as Tiny do the trick already)
	- Allowing nested DIV's or not in editor_plugin_src.js
	- Adding Apply button to have some kind of preview without closing TinyMCE Window 
	- Wrap all inline CSS properties inside a class
	- (Obviously we should need a CSS class reader and writer)
	- Adding padding and margin UI to easily define if you want padding (margin) -left, right but not bottom, etc...
	- Ask the team to release it in the next tinyMCE release, I hope they'll give me a credit for this !!

Release notes :
	- This should be the final beta before version 1.0RC1
	- Please report any bugs before RC1 !!


05-01-06	Christophe Ebl
-------------------------------
Release : Beta 2.2

Updates : 
	- * insertdiv.js * the script now sets attributes like id, class, etc
	at first insertion
	- * insertdiv.js * Removed default padding, now if you want some padding you have to set it (reported by unfold)	

ToDo :
	- Test and debug on other browsers than IE and MOZ (Safari, KDE, Opera)
	- Cleanup and optimize code (Remove french comments)
	- Make a combobox widget with prototype methods in JS to replace dirty border combobox
	- Fix strange button behavior when selecting node in TinyMCE document

Roadmap :
	- Handle visual aids to reveal invisible edges of the div (reported by frankblack)	
	- Fill the CSS class dropdown from an Array of stylesheets defined in editor_plugin_src.js
	- Allowing nested DIV's or not in editor_plugin_src.js
	- Adding Apply button to have some kind of preview without closing TinyMCE Window 
	- Adding Position abilities (absolute position X, Y, Z)
	- Wrap all inline CSS properties inside a class
	- (Obviously we should need a CSS class reader and writer)
	- Adding padding and margin UI to easily define if you want padding (margin) -left, right but not bottom, etc...
	- Display color picker inside a DHTML layer so no more annoying popup window...
	- Ask the team to release it in the next tinyMCE release, I hope they'll give me a credit for this !!

Release notes :
	- This should be the final beta before version 1.0RC1
	- Please report any bugs before RC1 !!


04-01-06	Christophe Ebl
-------------------------------
Release : Beta 2.1

Updates : 
	- * editor_plugin_src.js * Changed nodeType check to type and value comparison, must be equal to 1 (element_node)
	- * insertdiv.js * font combos don't have default values anymore (thanks to unfold for reporting)
	
	- * insertdiv.js * the script now works with IE 6.0 SP2 (not tested on previous versions)
	IE doesn't match Range 2.0 specifications and cannot interact with DOM as Moz does
	so the code is pretty dirty to remove the range from the DOM Tree (sorry for that)

	- * cleanup * 	Image folder is now empty of unnecessary icon files
	- * design * Changed button icon (looks better now)

ToDo :
	- Test and debug on other browsers than IE and MOZ (Safari, KDE, Opera)
	- Cleanup and optimize code (Remove french comments)
	- Make a combobox widget with prototype methods in JS to replace dirty border combobox
	- Fix strange button behavior when selecting node in TinyMCE document

Roadmap :
	- Fill the CSS class dropdown from an Array of stylesheets defined in editor_plugin_src.js
	- Allowing nested DIV's or not in editor_plugin_src.js
	- Adding Apply button to have some kind of preview without closing TinyMCE Window 
	- Adding Position abilities (absolute position X, Y, Z)
	- Wrap all inline CSS properties inside a class
	- (Obviously we should need a CSS class reader and writer)
	- Adding padding and margin UI to easily define if you want padding (margin) -left, right but not bottom, etc...
	- Display color picker inside a DHTML layer so no more annoying popup window...
	- Ask the team to release it in the next tinyMCE release, I hope they'll give me a credit for this !!

Tip (update) :
	- For border editing, Ex (Border-left)
	  click the border left square on the preview DIV, turns to black
	  update properties (Ex : set width to 2px instead of 1px) and click (two-times !!) on the border-left button
	  It will replace old values by new values.


03-01-06	Christophe Ebl
-------------------------------
Release : Beta 2.0

Updates : 
	- Now supports any language file
	- Loops the DOM to get the nearest parent node if DIV is not defined (supports HTML element without node)
	- if DIV is defined, looping the DOM until it finds the wrapper DIV of the current node
	- Replaced "surroundContents" with classic DOM approach (After insertion, the start point of the Range includes DIV element)
	- Added the missing function (popCombo) to get the border styles combobox (needs to be updated but works like a charm for the moment)
	- Now default padding is 2 pixels
	- Added (en.js) language file for english users
	- Removed silly border caps when editing any border (NOW DIV and CSS), no more french

ToDo :
	- Test and debug on several browsers (Tested on Moz 1.0.7)

Roadmap :
	- Adding Position abilities (absolute position X, Y, Z)
	- Wrap all inline CSS properties inside a class
	- (Obviously we should need a CSS class reader)
	- Adding padding and margin UI to easily define if you want padding (margin) -left, right but not bottom, etc...
	- Display color picker inside a DHTML layer so no more annoying popup window...
	- Ask the team to release it in the next tinyMCE release, I hope they'll give me a credit for this !!

Tip :
	- For border editing, Ex (Border-left)
	  click the border left square on the preview DIV, turns to black
	  update properties (Ex : set width to 2px instead of 1px) and click on the border-left button
	  It will replace old values by new values.