source: trunk/prototype/app/plugins/jpicker/ChangeLog.txt @ 5341

Revision 5341, 9.9 KB checked in by wmerlotto, 12 years ago (diff)

Ticket #2434 - Commit inicial do novo módulo de agenda do Expresso - expressoCalendar

Line 
1Change Log
2______________
31.1.6
4  Corrected bug preventing selections inside input values in some browsers - the onselectstart function no longer captures on input boxes.
5  Added support for up/down arrow adjustments of the currently focused input box making the picker more keyboard friendly.
6  Added ticks around the backgroundImage assignments to correct for paths with whitespace.
7
81.1.5
9  Corrected Color object constructor to allow setting of the "alpha" value as per the documentation which previously didn't work.
10  Added support for translucency for quickList colors with checkered background - Only available if "alphaSupport" is enabled.
11  Restricted default color to "alpha" of 255 if "alphaSupport" is disabled - It will now assign an explicit alpha of 255 when disabled.
12  Added new setting variable "alphaPrecision" which indicates the number of decimal points to allow in the alpha percentage display - Now defaults to 0.
13
141.1.4
15  Changed "alpha" range from 0-100 to 0-255 to correct truncating and rounding errors caused by attempting to get an integer percentage that matches a hex value.
16  "alpha" percentage display will now show up to 1 decimal point for more accurate representation of "alpha" value.
17  Color object now accepts "alpha" values in a range of 0-255 and also returns the same when getting the "alpha" value. You will need to run ((alpha * 100) / 255) to retrieve a percentage value.
18  Reworked the table layout and labels to remove the need for the label to reference the radio input box. This reduces injected code and removes the need to generate unique ids on the radio buttons.
19  Transparent/invisible caret on NULL color is now corrected - uses the same caret color as a white color.
20  Setting a binded input value of "" or no value attribute will now create a NULL color on initialization instead of the settings default color.
21  Added a dynamic, invisible "iframe" behind a dialog picker in all browsers that fail jQuery.support.boxModel (currently IE <= 7 Quirks Mode). This prevents "select" box from showing through the picker.
22
231.1.3
24  Now adding popup color pickers to document.body instead of inline with the popup control. This corrects issues with the picker not showing beyond a relative container scope.
25  No longer need to hide popup icon in Internet Explorer for picker elements lower in the DOM than the currently active one since the picker itself is attached to document.body (it is always higher in the DOM now).
26  Popup pickers are now bring-to-front selectable. Clicking on the picker will bring it above all other pickers on the page instead of having to drag one out from underneath another.
27  Corrected jPicker.List/setTimeout bug which allowed an instance to bind to the List in an order other than the order the initialization function was called.
28  Added a updateInputColor option (default true) to allow for a binded input field that does not automatically update its background/text color.
29
301.1.2
31  Reworked the find methods and contexts for element searches. Now using ":first" instead of ".eq(0)" to take advantage of early out searches. Much faster initialization of the picker, on the order of 6 times.
32  Now using setTimeout for calling visual updates. Dramatically improved marker dragging in all browsers. Reduces blocking as re-rendering is internal to the browser and independent of the other javascript still in progress.
33  Marker updates can now cancel a previous valueChanged event when a new mouseMove event comes in. IE8 marker dragging is still slower, much over 5 times faster than it was.
34  Reworked entire quickPick list creation. It now adds up source code and does a single "html" method instead of multiple "append" methods. This is a large part of the speed increase on initialization.
35  The vast majority of all running scripts on both initialization and dragging is now occupied altering the style rules and finding elements (init only) instead of jPicker code.
36  All methods previously called with global context now use the "call" method for using the context of the class running the method. "this" in a callback is now the DOM node (jQuery style) and jPicker instead of "window".
37  Added "effects" section of window settings to allow different show/hide effects and durations.
38  Removed change log and read me from the full source code to separate files (ChangeLog.txt and ReadMe.txt) and an HTML demonstration/documentation page (Example.txt).
39
401.1.1
41  Correct IE exception caused by attempting to set "#transparent" to CSS background-color.
42
431.1.0
44  Reworked nearly the entire plugin including the internal and external event model, bindings, DOM searches, classes, and overall presentation.
45  The Color object now supports a changed event that you can bind to (or just bind to the picker events still included).
46  Event order has been reversed, instead of a change event on the map/bar/text fields updating the display, they now update the Color object which then fires the events that update the display.
47  alphaSupport re-implemented by request - default behavior is off.
48  Hex code now only 6 characters again.
49  Color object can now have its value changed from code, using the "val" method, and it will fire all events necessary to update the display.
50  Removed all "get_*" methods from the color object, instead opting for a single "val" method for getting and setting, more in line with familiar jQuery methods.
51  Better rendering for all IE versions in Quirks mode.
52
531.0.13
54  Updated transparency algorithm for red/green/blue color modes. The algorithm from John Dyers' color picker was close but incorrect. Bar colors are now pixel perfect with the new algorithm.
55  Changed from using "background-position" on the color maps to an element of full height using the "top" attribute for image-map location using "overflow: hidden" to hide overdraw.
56  IE7/8 ignores opacity on elements taller than 4096px. Image maps therefore no longer include a blank first map so the Bar is just under 4096. Blank is now accomplished by setting the "top" setting to below the map display.
57  New colorBar picker image that does not draw outside of the element since the elements now hide overdraw.
58  Added IE5.5/6 support for the picker. This is why it now uses maps of full height and the "top" attribute for map locations.
59  Moved the images in the maps to 4 pixels apart from each other. IE7/8 change the first pixel of the bottom-border of 2px to partially transparent showing a portion of a different color map without this.
60
611.0.12
62  Added minified CSS file.
63  Added IE7/8 Quirks Mode support.
64  Added configurable string constants for all text and tooltips. You can now change the default values for different languages.
65  Privatized the RGBA values in the Color object for better NULL handling. YOU MUST USE THE NEW GET FUNCTIONS TO ACCESS THE COLOR PROPERTIES.
66  Better NULL color handling and an additional "No Color Selected" quick pick color.
67  More consistent behavior across multiple versions of browsers.
68  Added alpha response to the binded color picker icon.
69  Removed "alphaSupport" variable. It is now always supported.
70
711.0.11b
72  Corrected NULL behavior in IE. jQuery was getting an exception when attempting to assign a backgroundColor style of '#'. Now assigns 'transparent' if color is NULL.
73  Can now create new Color object WITH OR WITHOUT the '#' prefix.
74
751.0.11
76  Added ability for NULL colors (delete the hex value). Color will be returned as color.hex == ''. Can set the default color to an empty hex string as well.
77  cancelCallback now returns the original color for use in programming responses.
78
791.0.10
80  Corrected table layout and tweaked display for more consisent presentation. Nice catch from Jonathan Pasquier.
81
821.0.9
83  Added optional title variable for each jPicker window.
84
851.0.8
86  Moved all images into a few sprites - now using backgroundPosition to change color maps and bars instead of changing the image - this should be faster to download and run.
87   
881.0.7
89  RENAMED CSS FILE TO INCLUDE VERSION NUMBER!!! YOU MUST USE THIS VERSIONED CSS FILE!!! There will be no need to do your own CSS version number increments from now on.
90  Added opacity feedback to color preview boxes.
91  Removed reliance on "id" value of containing object. Subobjects are now found by class and container instead of id's. This drastically reduces injected code.
92  Removed (jQuery).jPicker.getListElementById(id) function since "id" is no longer incorporated or required.
93
941.0.6
95  Corrected picker bugs introduced with 1.0.5.
96  Removed alpha slider bar until activated - default behavior for alpha is now OFF.
97  Corrected Color constructor bug not allowing values of 0 for initial value (it was evaluating false and missing the init code - Thanks Pavol).
98  Removed title tags (tooltips) from color maps and bars - They get in the way in some browsers (e.g. IE - dragging marker does NOT prevent or hide the tooltip).
99  THERE WERE CSS FILE CHANGES WITH THIS UPDATE!!! IF YOU USE NEVER-EXPIRE HEADERS, YOU WILL NEED TO INCREMENT YOUR CSS FILE VERSION NUMBER!!!
100
1011.0.5
102  Added opacity support to picker and color/callback methods. New property "a" (alpha - range from 0-100) in all color objects now - defaults to 100% opaque. (Thank you Pavol)
103  Added title attributes to input elements - gives short tooltip directions on what button or field does.
104  Commit callback used to fire on control initialization (twice actually) - This has been corrected, it does not fire on initialization.
105  THERE WERE CSS FILE CHANGES WITH THIS UPDATE!!! IF YOU USE NEVER-EXPIRE HEADERS, YOU WILL NEED TO INCREMENT YOUR CSS FILE VERSION NUMBER!!!
106
1071.0.4
108  Added ability for smaller picker icon with expandable window on any DOM element (not just input).
109  "draggable" property renamed to "expandable" and its scope increased to create small picker icon or large static picker.
110
1111.0.3
112  Added cancelCallback function for registering an external function when user clicks cancel button. (Thank you Jeff and Pavol)
113
1141.0.2
115  Random bug fixes - speed concerns.
116
1171.0.1
118  Corrected closure based memeory leak - there may be others?
119
1201.0.0
121  First Release.
Note: See TracBrowser for help on using the repository browser.