Update docs and changelog

This commit is contained in:
ConfusedPolarBear 2022-07-12 01:16:41 -05:00
parent 2266bfbc1c
commit 4bed522dad
2 changed files with 19 additions and 5 deletions

View File

@ -1,8 +1,23 @@
# Changelog
## v0.1.6.0 (unreleased)
* Write EDL files with intro timestamps
* Restore per season status updates
* New features
* Generate EDL files with intro timestamps ([documentation](docs/edl.md))
* Support selecting which libraries are analyzed
* Support customizing [introduction requirements](README.md#introduction-requirements)
* Changing these settings will increase episode analysis times
* Report how CPU time is being spent while analyzing episodes
* CPU time reports can be viewed under "Analysis Statistics (experimental)" in the plugin configuration page
* Sped up fingerprint analysis (not including fingerprint generation time) by 40%
* Support erasing discovered introductions by season
* Suggest potential shifts in the fingerprint visualizer
* Fixes
* Ensure episode analysis queue matches the current filesystem and library state
* Fixes a bug where renamed or deleted episodes were being analyzed
* Restore per season status updates in the log
* Prevent null key in `/Intros/Shows` endpoint
* Fix positioning of skip intro button on mobile devices
## v0.1.5.0 (2022-06-17)
* Use `ffmpeg` to generate audio fingerprints instead of `fpcalc`

View File

@ -18,8 +18,8 @@ services:
ports:
- '8096:8096'
volumes:
- '/full/path/to/extracted/archive/dist:/jellyfin/jellyfin-web:ro' # <== add this line if using the official docker image
- '/full/path/to/extracted/archive/dist:/usr/share/jellyfin/web' # <== add this line if using the linuxserver docker image
- '/full/path/to/extracted/dist:/jellyfin/jellyfin-web:ro' # <== add this line if using the official container
- '/full/path/to/extracted/dist:/usr/share/jellyfin/web:ro' # <== add this line if using the linuxserver container
- '/config:/config'
- '/media:/media:ro'
image: 'jellyfin/jellyfin:10.8.0'
@ -31,4 +31,3 @@ services:
1. If you reuse the configuration data from another container, **make sure to create a backup first**.
The Dockerfile which builds this container can be viewed [here](../docker/Dockerfile).