diff --git a/RELEASE NOTES.md b/RELEASE NOTES.md index 479f1cd33..36198a5ef 100755 --- a/RELEASE NOTES.md +++ b/RELEASE NOTES.md @@ -1,5 +1,27 @@ ## RELEASE NOTES +### Version 0.11.0 - Dec 22, 2013 + +### Merry Christmas! + +**Major Updates** + +-**Transition**: Transition has been completely rewritten, performance should be about 10x after first animation due to caching and use of request animation frame + +**New Features** + +-**Transition**: Transitions now work with **any display type** not just display: block, meaning transitions can be used on buttons and other inline elements without affecting display + +**Fixes** + +-**Transition**: Fixes typo in "horizontal flip out" causing opacity to be fading in + +-**Modules**: Fixed error in all modules where calling invoke would modify instance outside of scope, making it impossible to access some data (for instance cached positions) from outside of module. + +-**Modal**: Fixes issues with modal in IE, IE11 can now use CSS animations with modals + + + ### Version 0.10.3 - Dec 22, 2013 **Critical Fixes** diff --git a/package.json b/package.json index 4bff46992..d8a07d5a9 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "semantic", - "version": "0.10.3", + "version": "0.11.0", "title": "Semantic UI", "description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.", "homepage": "http://www.semantic-ui.com", diff --git a/server/documents/index.html.eco b/server/documents/index.html.eco index a2b341068..4599e7136 100755 --- a/server/documents/index.html.eco +++ b/server/documents/index.html.eco @@ -15,7 +15,7 @@ type : 'Semantic'
Semantic empowers designers and developers by creating a language for sharing UI.
View UI diff --git a/server/documents/modules/transition.html.eco b/server/documents/modules/transition.html.eco index 018ef1e47..1232df55e 100755 --- a/server/documents/modules/transition.html.eco +++ b/server/documents/modules/transition.html.eco @@ -166,6 +166,19 @@ type : 'UI Module' ;Animations can be used on any display type not just block level elements. For example you can animate a button while preserving its inline-block status.
+Animations called in sequence will be queued. Any queued animation will automatically determine the transition direction if none is specified.
@@ -194,10 +207,18 @@ type : 'UI Module' +