Update readme to reflect changes

This commit is contained in:
encode42 2024-05-24 22:49:10 -04:00
parent 8e1ed47f4b
commit 20fe6b225a
No known key found for this signature in database
GPG Key ID: 7E6D1008AC19B80B

View File

@ -2,14 +2,21 @@
# bandcamp-fetch
This fork removes Node dependencies to work with Cloudflare Pages. It might work in other environments that provide `fetch` as well.
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.
- `EOL` has been replaced with `\\n`. Development outside of Linux might not be supported!
- `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.
This fork will likely not be maintained outside of my own interest!
Additionally, some quality-of-life changes have been made.
- `description` field has been added to `Track`.
- 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!
This fork will likely not be maintained outside my own interest!
---