diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a620c..3c6fe55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.0 - 2026-09-15 + +- Renamed the project and user-facing app identity to `h-player`. +- Updated package metadata, browser title, sidebar brand, Basic Auth realm, Docker Compose service/container names, and documentation to reflect the official name. + ## 1.1.1 - 2026-09-15 - Matched the library list and poster treatment more closely to Kaizoku's web theme, using the same purple card gradients, hover states, and cover fallback styling. @@ -7,5 +12,5 @@ ## 1.1.0 - 2026-09-15 - Restyled the web UI to match Kaizoku's dark purple glass-panel design. -- Added a Kaizoku-branded sidebar shell, collection badge, rounded navigation controls, and redesigned detail panels. +- Added a Kaizoku-style sidebar shell, collection badge, rounded navigation controls, and redesigned detail panels. - Changed the server to bind to `127.0.0.1` by default, with `HOST` available for explicit overrides. diff --git a/README.md b/README.md index 757ffb7..f71de30 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Kaizoku-Styled Private Anime Library +# h-player -A small local web app for browsing a folder-based private video collection. The interface follows Kaizoku's dark purple glass-panel design, including the same card gradients, rounded controls, cover fallback treatment, and accent colors. The app remains a standalone private library browser and does not integrate with Plex, Jellyfin, Kodi, or any external metadata provider. +h-player is a small local web app for browsing a folder-based private video collection. The interface follows Kaizoku's dark purple glass-panel design, including the same card gradients, rounded controls, cover fallback treatment, and accent colors. The app remains a standalone private library browser and does not integrate with Plex, Jellyfin, Kodi, or any external metadata provider. ## Folder Layout @@ -25,7 +25,9 @@ docker compose up --build Open http://localhost:3000. -The app binds to `127.0.0.1` by default, so it is only reachable from the same machine unless you explicitly set `HOST`. The compose file publishes the container on `127.0.0.1:3000`. Your library is mounted read-only, while metadata and generated thumbnails are saved in `./data`. +The app binds to `127.0.0.1` by default, so it is only reachable from the same machine unless you explicitly set `HOST`. The compose file publishes the container on `127.0.0.1:3000`. Your library is mounted read-only, while metadata and generated thumbnails are saved in `/data` inside the container. + +The included compose file keeps the existing `/mnt/ssd2/docker_data/h-play` host data path so renaming the app to h-player does not hide metadata from an already-running instance. Move that directory yourself before changing the mount path. To add a browser password prompt, uncomment `AUTH_USERNAME` and `AUTH_PASSWORD` in `docker-compose.yml`. diff --git a/VERSION b/VERSION index 524cb55..26aaba0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.1 +1.2.0 diff --git a/docker-compose.yml b/docker-compose.yml index d06fde4..e1dba03 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ services: - private-library: + h-player: build: . - container_name: private-library + container_name: h-player ports: - "127.0.0.1:3000:3000" environment: diff --git a/package.json b/package.json index c989bdb..ad051e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "private-anime-library", - "version": "1.1.1", + "name": "h-player", + "version": "1.2.0", "private": true, "description": "A small private web app for browsing a folder-based video collection.", "scripts": { diff --git a/public/index.html b/public/index.html index 778caf2..1f55b48 100644 --- a/public/index.html +++ b/public/index.html @@ -3,7 +3,7 @@ - Kaizoku Library + h-player @@ -11,7 +11,7 @@