Skip to content

Commit

Permalink
Change to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcojakob committed Jun 10, 2013
1 parent 4cee2fb commit 10c4b65
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,14 @@ Changelog
================

## Version 0.1.0 (2013-06-05) ##
* First Version.
* First Version.

## Version 0.2.0 (2013-06-10) ##
* Changed API to using groups of Draggables/Dropzones/Sortables. Now options
and event listeners are set on a group instead of individual elements.
* Ability to install/uninstall elements. Adds/Removes event subscriptions on
an element.
* SortableEvent now carries information about the original group of the
dragged element and the new group it was dragged to. This enables
uninstalling in the previous group and installing in the new group.
* Other minor improvements in Sortable.
9 changes: 7 additions & 2 deletions example/html5_dnd_example.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,13 @@ h2 {
width: 306px;
padding: 0;
overflow: hidden;
font-size: 14px;
line-height: 16px;
}

.example-box {
padding: 0;
margin: 0;
}

.example-box li, .example-box div {
Expand Down Expand Up @@ -112,7 +115,7 @@ h2 {
.example-code .menu li {
display: inline;
float: left;
margin-bottom: 6px;
margin-bottom: 3px;
}

.example-code .menu li a {
Expand All @@ -134,7 +137,6 @@ h2 {

.example-code .content {
clear: both;
padding: 10px;
background: #002b36;
float: left;
margin-bottom: 80px;
Expand All @@ -154,6 +156,9 @@ h2 {
white-space: pre;
}

.example-code .content figure {
margin: 0;
}

/* --------------------------------------------------------------------------
* Section: draggable-dropzone
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: html5_dnd
version: 0.1.0
version: 0.2.0
author: Marco Jakob <[email protected]>
description: HTML5 Drag and Drop
homepage: https://github.com/marcojakob/dart-html5-dnd
Expand Down

0 comments on commit 10c4b65

Please sign in to comment.