From 0453d5ca78f114e6b2d9e4cd057531b39e8f7dc8 Mon Sep 17 00:00:00 2001 From: Kevin C Date: Wed, 28 Jun 2023 18:22:00 +0000 Subject: [PATCH 1/2] add default theme to config.toml.example --- app/config/config.toml.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config/config.toml.example b/app/config/config.toml.example index b185050b..4d2d086d 100644 --- a/app/config/config.toml.example +++ b/app/config/config.toml.example @@ -14,6 +14,9 @@ show_anime_collection = true # do you wish to show the manga collection? show_manga_collection = false +# what theme would you like to use? light, dark, or auto +theme = "auto" + ################################################################################ # Default views and paths ################################################################################ From 9f14f17a6bccaf1ffe503285ee4de7bc248fa95d Mon Sep 17 00:00:00 2001 From: Kevin C Date: Wed, 28 Jun 2023 18:37:44 +0000 Subject: [PATCH 2/2] add php extensions required to README.md --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 062c4a97..ef249f9f 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,18 @@ Update your anime/manga list on Kitsu.io and Anilist ### Requirements -* PHP 8 -* PDO SQLite or PDO PostgreSQL (For collection tab) -* GD extension for caching images +* PHP 8.2 + * ext-dom (For editing the DOM) + * ext-gd (For caching images) + * ext-intl (For time localization) + * ext-json + * ext-mbstring + * ext-pdo ### Highly Recommended + * Redis or Memcached for caching +* PDO SQLite or PDO PostgreSQL (For collection tab) ### Installation