diff --git a/CHANGELOG.md b/CHANGELOG.md index 553cd10..b6f00aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.0.4] - 2022-07-20 + +### Fixed + +- Shadow position bug. + ## [0.0.3] - 2021-10-31 ### Fixed diff --git a/README.md b/README.md index 809fa02..af4eb42 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ window.addEventListener("mousemove", function(event) { https://user-images.githubusercontent.com/31634638/172718758-cb4dca4a-b268-4338-8686-137c33963212.mp4 + +See more usage examples in [examples/](https://github.com/arafatamim/ombro/tree/main/examples) folder. + ## API Reference The full API documentation is available [here](https://arafatamim.github.io/ombro). @@ -62,7 +65,7 @@ Please open a new issue if you discover a bug or want to discuss a feature. If y ## Credits -Forked from the unmaintained library [shine.js](https://github.com/bigspaceship/shine.js) and ported to TypeScript. +Based on the unmaintained library [shine.js](https://github.com/bigspaceship/shine.js), ported to TypeScript and added new features. ## License diff --git a/package.json b/package.json index d006c32..dc9bc93 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ombro", - "version": "0.0.3", + "version": "0.0.4", "description": "Create beautiful, dynamic shadows in JavaScript", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js",