1
1
Changelog
2
2
================
3
3
4
- ## Version 0.1.0 (2013-06-05) ##
5
- * First Version.
4
+ ## Version 0.3.3 (2013-07-??) ##
5
+ * Support dragging of SVG elements (Issue #7 ). Dragging of SVG elements uses the
6
+ emulated mode in all browsers.
7
+ * Add tests for dragging SVG elements.
6
8
7
- ## Version 0.2.0 (2013-06-10) ##
8
- * Changed API to using groups of Draggables/Dropzones/Sortables. Now options
9
- and event listeners are set on a group instead of individual elements.
10
- * Ability to install/uninstall elements. Adds/Removes event subscriptions on
11
- an element.
12
- * SortableEvent now carries information about the original group of the
13
- dragged element and the new group it was dragged to. This enables
14
- uninstalling in the previous group and installing in the new group.
15
- * Other minor improvements in Sortable.
16
-
17
- ## Version 0.2.1 (2013-06-17) ##
18
- * Fix Issue #6 : Bug in Firefox when dragging over nested elements
19
- * Fix Issue #1 : overClass (.dnd-over) stays after drag ended
20
- * Fix Issue #4 : Support any HTML Element as drag image
21
- * Fix Issue #5 : Always use Drag Image Polyfill for IE9 drags
9
+ ## Version 0.3.2 (2013-06-28) ##
10
+ * Support 'cancel' query String to prevent dragging: A 'cancel' query String
11
+ may be supplied for draggables to prevent starting a drag on specific elements.
12
+ * Improve clearing of selection when drag starts.
13
+ * Fix some bugs in touch support.
14
+ * Firing sortUpdate events after dragEnd events: Firing sortUpdate at the end
15
+ makes sure that the listener of update events can uninstall/install involved
16
+ draggables without side-effects
17
+ * Add some additional test examples.
18
+
19
+ ## Version 0.3.1 (2013-06-26) ##
20
+ * Touch Event support (Issue #3 ): Uses touchStart, touchMove, and touchEnd
21
+ events to emulate HTML5 drag and drop behaviour.
22
+ * Reorganized some parts. Now only html5_dnd.dart needs to be imported and
23
+ sortable is imported automatically. If some functionality like sortable isn't
24
+ used, Dart's treeshaking will make sure no unnecessary code is added.
25
+ * Add extended usage documentation to readme.
22
26
23
27
## Version 0.3.0 (2013-06-25) ##
24
28
* Completely emulating drag and drop in IE9 and partly in IE10 (when custom drag
@@ -35,21 +39,22 @@ Changelog
35
39
dragOverElements in a list, the related target of the event is used to
36
40
determine if it is an event that happened on the main element or bubbled
37
41
up from child elements.
38
-
39
- ## Version 0.3.1 (2013-06-26) ##
40
- * Touch Event support (Issue #3 ): Uses touchStart, touchMove, and touchEnd
41
- events to emulate HTML5 drag and drop behaviour.
42
- * Reorganized some parts. Now only html5_dnd.dart needs to be imported and
43
- sortable is imported automatically. If some functionality like sortable isn't
44
- used, Dart's treeshaking will make sure no unnecessary code is added.
45
- * Add extended usage documentation to readme.
46
42
47
- ## Version 0.3.2 (2013-06-28) ##
48
- * Support 'cancel' query String to prevent dragging: A 'cancel' query String
49
- may be supplied for draggables to prevent starting a drag on specific elements.
50
- * Improve clearing of selection when drag starts.
51
- * Fix some bugs in touch support.
52
- * Firing sortUpdate events after dragEnd events: Firing sortUpdate at the end
53
- makes sure that the listener of update events can uninstall/install involved
54
- draggables without side-effects
55
- * Add some additional test examples.
43
+ ## Version 0.2.1 (2013-06-17) ##
44
+ * Fix Issue #6 : Bug in Firefox when dragging over nested elements
45
+ * Fix Issue #1 : overClass (.dnd-over) stays after drag ended
46
+ * Fix Issue #4 : Support any HTML Element as drag image
47
+ * Fix Issue #5 : Always use Drag Image Polyfill for IE9 drags
48
+
49
+ ## Version 0.2.0 (2013-06-10) ##
50
+ * Changed API to using groups of Draggables/Dropzones/Sortables. Now options
51
+ and event listeners are set on a group instead of individual elements.
52
+ * Ability to install/uninstall elements. Adds/Removes event subscriptions on
53
+ an element.
54
+ * SortableEvent now carries information about the original group of the
55
+ dragged element and the new group it was dragged to. This enables
56
+ uninstalling in the previous group and installing in the new group.
57
+ * Other minor improvements in Sortable.
58
+
59
+ ## Version 0.1.0 (2013-06-05) ##
60
+ * First Version.
0 commit comments