~lutostag/ubuntu/utopic/maas/1.5.2

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/releasenotes/HISTORY.slider.md

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-03-15 18:14:08 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120315181408-zgl94hzo0x4n99an
Tags: 0.1+bzr295+dfsg-0ubuntu2
* debian/patches:
  - 01-fix-database-settings.patch: Update to set PSERV_URL.
  - 02-pserv-config.patch: Set port to 8001.
* debian/maas.postinst: Run maas-import-isos on install.
* debian/control: Depends on rabbitmq-server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Slider Change History
 
2
=====================
 
3
 
 
4
3.4.1
 
5
-----
 
6
 
 
7
  * No changes.
 
8
 
 
9
3.4.0
 
10
-----
 
11
 
 
12
  * No changes.
 
13
 
 
14
3.3.0
 
15
-----
 
16
 
 
17
  * Default `thumbUrl` no longer broken when using the seed file from the combo
 
18
    service.
 
19
 
 
20
3.2.0
 
21
-----
 
22
 
 
23
  * Leverages touch events when the UA supports them.
 
24
 
 
25
  * (un)Swapped skin files for `audio` and `audio-light` skins.
 
26
 
 
27
3.1.1
 
28
-----
 
29
 
 
30
  * No changes.
 
31
 
 
32
3.1.0
 
33
-----
 
34
 
 
35
  * [!] Major refactoring. Broken into `SliderBase`, `ClickableRail`, and
 
36
    `SliderValueRange` classes, and `Y.Slider` is the product of
 
37
    `Y.Base.build(…)` of these. `SliderBase` is responsible for rendering the UI
 
38
    and broadcasting `slideStart`, `slideEnd`, and `thumbMove` events.
 
39
    `ClickableRail` adds support for clicking on the `rail` to move the `thumb`.
 
40
    `SliderValueRange` adds support for `min`, `max`, and `value` attributes.
 
41
    Values are integers ranging from 0 to 100 by default. `Base.build()` in
 
42
    different value algorithms or extensions to specialize from `SliderBase`.
 
43
 
 
44
  * [!] `railSize` attribute renamed to `length`.
 
45
 
 
46
  * [!] `maxGutter` and `minGutter` attributes removed. Use CSS and/or apply
 
47
    manually via `slider._dd.con.set('gutter', …);`.
 
48
 
 
49
  * [!] `rail`, `thumb`, `thumbImg` `Node` attributes removed, as well as
 
50
    `HTML_PARSER` support. Progressive enhancement stems from a value source,
 
51
    not a markup source. Various progressive enhancement extensions will arrive
 
52
    in future versions.
 
53
 
 
54
  * Sam skin updated and 7 new skins added (`sam-dark`, `round`, `round-dark`,
 
55
    `capsule`, `capsule-dark`, `audio`, `audio-light`).
 
56
 
 
57
  * New markup and CSS structure including separate shadow image (set to same
 
58
    image as thumb, positioned via CSS ala sprite.
 
59
 
 
60
  * Thumb placement method changed from `setXY()` and `DD` positioning methods
 
61
    to simpler `setStyle('left', x)` or `top` for vertical Sliders. Allows
 
62
    rendering and modifying in hidden containers without the need to `syncUI()`
 
63
    when making visible. Still recommended to call `syncUI()` if rendered off
 
64
    DOM, but may not be necessary if using Sam skin. YMMV.
 
65
 
 
66
3.0.0
 
67
-----
 
68
 
 
69
  * Removed noop `_setValueFn()` and the setter config for the `value`
 
70
    attribute.
 
71
 
 
72
  * Renamed static protected `AXIS_KEYS` to `_AXIS_KEYS`.
 
73
 
 
74
  * Renamed `_defUpdateValueFromDD` to `_defThumbDragFn` per naming conventions.
 
75
 
 
76
  * Added `_convertOffsetToValue` to mirror `_convertValueToOffset`.
 
77
 
 
78
3.0.0beta1
 
79
----------
 
80
 
 
81
  * Renamed the `valueSet` custom event to `positionThumb` and rejiggered the
 
82
    logic of the default function and support methods.
 
83
 
 
84
  * renamed `_defSyncUI` to `_defSyncFn` for library nomenclature consistency.
 
85
 
 
86
  * Added protected `_convertValueToOffset` to help position the thumb.
 
87
 
 
88
  * Set `bubble: false` on the `DD.Drag` instance.
 
89
 
 
90
3.0.0pr2
 
91
--------
 
92
 
 
93
  * Initial release.