diff --git a/README.md b/README.md index c7c65ca..57df372 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This fork removes Node dependencies to work with Cloudflare Pages. It might work in other environments that provide `fetch` as well! - `node-cache` has been replaced with a simple in-memory record store. -- `URL` has been replaced with a barebones implementation. +- `URL` has been replaced with a bare-bones implementation. - `EOL` has been replaced with `\\n`. * Development outside of Linux might not be supported! - `node-fetch` has been removed, falling back to the environment's native `fetch` functions. @@ -15,6 +15,8 @@ Additionally, some quality-of-life changes have been made. - Both the above and `Album`'s `description` will use Linux newlines. - `url` option to replace `albumUrl` and `trackUrl`. * The original fields will still take priority! +- `slug` field on `Album` and `Track`. +- `Track`'s `streamUrl` will be overridden by `streamUrlHQ` if available. This fork will likely not be maintained outside my own interest! diff --git a/package-lock.json b/package-lock.json index 3e71d45..b135a80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@encode42/bandcamp-fetch", - "version": "1.2.1", + "version": "1.2.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@encode42/bandcamp-fetch", - "version": "1.2.1", + "version": "1.2.4", "license": "MIT", "dependencies": { "bottleneck": "^2.19.5", diff --git a/package.json b/package.json index bf59a55..de1cbf3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@encode42/bandcamp-fetch", - "version": "1.2.3", + "version": "1.2.4", "description": "Scrape Bandcamp content (supports Cloudflare Pages)", "scripts": { "build": "npm run prepare",