From 1e2cfd949fb38e0016373899b281e08fc40636dc Mon Sep 17 00:00:00 2001 From: zurdi Date: Fri, 27 Oct 2023 13:53:40 +0200 Subject: [PATCH] IGDB_CLIENT_ID and IGDB_CLIENT_SECRET added to docker-compose example --- CHANGELOG.md | 26 ++++++++++++++++++++++++-- examples/docker-compose.example.yml | 4 ++-- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea0c27d0..16aadf20c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# v2.0.0 (_27-10-2023_) + +## Added + - User management system. Closes [#24](https://github.com/zurdi15/romm/issues/24) + - Gallery bulk selection. Closes [#50](https://github.com/zurdi15/romm/issues/50) + - Roms upload feature. + - Custom cover art. + - Custom name for `roms` folder throught the `ROMS_FOLDER_NAME` environment variable. Closes [#356](https://github.com/zurdi15/romm/issues/356) + - Added `IGDB_CLIENT_ID` and `IGDB_CLIENT_SECRET` as environment variables. `CLIENT_ID` and `CLIENT_ID` are deprecated and will be removed in future versions. + - Added icons for more platforms: CD-i, 3DO, Neo Geo Pocket Color, Nintendo 64DD, Satellaview, Playdia, Pippin, Mac + +## Fixed + - Fixed some checks before renaming a rom to avoid breaking names. Closes [#348](https://github.com/zurdi15/romm/issues/348) + - A lot of other minor bugs. + +## Changed + - RomM internal port changed from `80` to `8080. + - RomM docker image size reduced significantly. + - Improved scanning and IGDB requests returning first the exact match. + - Scan now times out at 4 hours to improve scans for larger libraries. + - Other minimal changes in platform icons. + +
+ # v1.10 (_15-08-2023_) ## Added @@ -12,8 +36,6 @@ - Improved scanning and IGDB requests logs. Fixes [#317](https://github.com/zurdi15/romm/issues/317) - Improved downloading process. Fixes [#332](https://github.com/zurdi15/romm/issues/332) - -
diff --git a/examples/docker-compose.example.yml b/examples/docker-compose.example.yml index e13fc6bd9..e8d6f9c9a 100644 --- a/examples/docker-compose.example.yml +++ b/examples/docker-compose.example.yml @@ -14,8 +14,8 @@ services: - DB_NAME=romm # Should match the MYSQL_DATABASE value in the mariadb container - DB_PASSWD= # [Optional] Used to fetch metadata from IGDB - - CLIENT_ID= - - CLIENT_SECRET= + - IGDB_CLIENT_ID= + - IGDB_CLIENT_SECRET= # [Optional] Use SteamGridDB as a source for covers - STEAMGRIDDB_API_KEY= # [Optional] Will enable user management and require authentication to access the interface (default to false)