diff --git a/RoboFile.php b/RoboFile.php index 6a98e8f8..bb2958ef 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -127,7 +127,7 @@ class RoboFile extends Tasks { { $files = $this->getAllSourceFiles(); - $chunks = array_chunk($files, 12); + $chunks = array_chunk($files, (int)shell_exec('getconf _NPROCESSORS_ONLN')); foreach($chunks as $chunk) { diff --git a/composer.json b/composer.json index e2431b49..0e45c808 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,14 @@ "name": "aviat/hummingbird-anime-client", "description": "A self-hosted anime/manga client for Kitsu.", "license": "MIT", + "authors": [ + { + "name": "Timothy J. Warren", + "email": "tim@timshomepage.net", + "homepage": "https://timshomepage.net", + "role": "Developer" + } + ], "autoload": { "files": [ "src/Ion/functions.php", @@ -20,6 +28,7 @@ } }, "config": { + "lock": false, "platform": { "php": "7.3" } diff --git a/src/AnimeClient/Helper/Picture.php b/src/AnimeClient/Helper/Picture.php index 86fd3cdf..d4741fb2 100644 --- a/src/AnimeClient/Helper/Picture.php +++ b/src/AnimeClient/Helper/Picture.php @@ -62,6 +62,9 @@ final class Picture { $urlGenerator = $this->container->get('url-generator'); $helper = $this->container->get('html-helper'); + $imgAttrs['loading'] = 'lazy'; + $picAttrs['loading'] = 'lazy'; + // If it is a placeholder image, make the // fallback a png, not a jpg if (strpos($uri, 'placeholder') !== FALSE)