Skip to content

Commit

Permalink
update: v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZOASR committed Jan 8, 2024
1 parent 5dc1b7f commit da32cdd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

## [unreleased]

### Bug Fixes

- Fixed wrong number formatting when displaying track length

### Refactor

- Used a simpler array method to display past tracks

### Styling

- Changed album cover shadow to hsla color for better browser compatibility

## [2.1.5] - 2024-01-04

### Dev

- Moved all utility functions and types to the util package
Expand All @@ -12,6 +26,7 @@ All notable changes to this project will be documented in this file.
### Update

- V2.1.3
- V2.1.5

## [2.1.3] - 2024-01-03

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lastfm-viewer/solid",
"private": false,
"version": "2.1.5",
"version": "2.2.0",
"description": "A solidjs component to view recent scrobbles for a last.fm user",
"keywords": [
"lastfm",
Expand Down
3 changes: 2 additions & 1 deletion src/components/useLastfmViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export const useLastfmViewer: ({}: Props) => lfmvHook = ({
colors: {
primary: "",
secondary: "",
accent: ""
accent: "",
coverShadowColor: ""
},
pastTracks: [],
duration: 0
Expand Down

0 comments on commit da32cdd

Please sign in to comment.