Releases: shakrmedia/tuesday
Releases · shakrmedia/tuesday
v1.2.3 Release
v1.2.2 Release
This release is comprised mostly of refactors of code to optimize for advanced imports.
- Adds new keyframes files that only include the keyframes and animation names as mixins. This can be useful when trying to import individual animations and keyframes only when needed.
- Refactors module files to import keyframe files instead of inlining directly. Compiled result will be the same so no risk of breaking backward compatibility.
- Removes .animated.infinite class because Tuesday does not serve any infinite-looping type animations.
Dropping support for legacy webkit browsers:
Starting from this version, the default pre-built CSS file does not include -webkit-
prefixed keyframes and properties anymore. If you need support for older browsers (~Chrome 42, Safari 8, Blackberry Browser 10... See CanIUse for detailed browser chart) change the autoprefixer settings in gruntfile.js
(the part where it says browser: ["last 3 versions", "ie 10"]
) and build again.
v1.2.1
v1.2.0
v1.1.0 Release
Changelog
- Adds 2 new animations: "Stamp", "Plop".
- Existing "Zoom" animation name has been changed to "Expand" and "Shrink" accordingly to better represent the actual motion. If you have used
tdZoom
animation names in your project, you will have to replace the names as below:
Before | After |
---|---|
tdZoomIn |
tdExpandIn |
tdZoomInBounce |
tdExpandInBounce |
tdZoomOut |
tdShrinkOut |
tdZoomOutBounce |
tdShrinkOutBounce |
Additionally, appropriate entrance/exit animation pairs have been added. (tdExpandOut
,tdExpandOutBounce
,tdShrinkIn
,tdShrinkInBounce
)
Initial release
Initial release.