-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,41 @@ | ||
# Changelog | ||
|
||
## [0.1.0] - 2023-12-26 | ||
## 1.2.1 | ||
|
||
### Patch Changes | ||
|
||
- 64c3a2d: add @changesets/cli for automatic changelog generation | ||
|
||
## 1.2.0 | ||
|
||
- make the scroll event handlers passive for improved performance | ||
- run unit tests in PRs | ||
|
||
## 1.1.0 | ||
|
||
- optimize progress calculation | ||
- introduce unit tests using vitest | ||
- export some helper functions in the module bundle | ||
- new option debug to disable console messages | ||
|
||
## 1.0.0 | ||
|
||
- Feature: Add API to get and set the current scroll progress | ||
- Deprecation: Remove the option to opt out of proportional scrolling | ||
- Chore: Switch from npm to pnpm, well, just because ;) | ||
|
||
## 0.1.0 | ||
|
||
- Allow to mirror the scroll position from and to the `window` | ||
|
||
## [0.0.3] - 2023-11 | ||
## 0.0.3 | ||
|
||
- Fix exported class from cdn build to be uppercase. Before: `new scrollmirror(...)`, after: `new ScrollMirror(...)` | ||
|
||
## [0.0.2] - 2023-11 | ||
## 0.0.2 | ||
|
||
- Testing automated deployment from GitHub releases to npm | ||
|
||
## [0.0.1] - 2023-11 | ||
|
||
- Initial Release | ||
## 0.0.1 | ||
|
||
[0.1.0]: https://github.com/swup/fragment-plugin/releases/tag/0.1.0 | ||
[0.0.3]: https://github.com/swup/fragment-plugin/releases/tag/0.0.3 | ||
[0.0.2]: https://github.com/swup/fragment-plugin/releases/tag/0.0.2 | ||
[0.0.1]: https://github.com/swup/fragment-plugin/releases/tag/0.0.1 | ||
- Initial Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "scrollmirror", | ||
"amdName": "ScrollMirror", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Sync the scroll position of multiple elements on your page", | ||
"packageManager": "[email protected]", | ||
"author": { | ||
|