~ubuntu-branches/ubuntu/raring/maas/raring-updates

« 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-07-03 17:42:37 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120703174237-p8l0keuuznfg721k
Tags: 0.1+bzr709+dfsg-0ubuntu1
* New Upstream release
* debian/control:
  - Depends on python-celery, python-tempita, libjs-yui3-{full,min},
    libjs-raphael
* debian/maas.install:
  - Install apiclient, celeryconfig.py, maas-import-pxe-files, preseeds_v2.
  - Update to install various files from chroot, rather tha manually copy
    them from the source.
* debian/maas.links: symlink celeryconfig.py
* debian/maas.maas-celery.upstart: Add job.
* debian/rules:
  - Install celery upstart job.
  - Do not install jslibs as packages are now used.
  - Drop copying of maas_local_settings_sample.py as source now ships
    a maas_local_settings.py
* debian/patches:
  - 04-maas-http-fix.patch: Drop. Merged upstream.
  - 01-fix-database-settings.patch: Refreshed.
  - 99_enums_js.patch: Added until creation of enum.js / build process
    is fixed.
* debian/maas.postinst: Update bzr version to correctly handle upgrades.

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.