Added thumbnailing for audio covers and external videos.

This commit is contained in:
flash 2023-01-25 22:27:40 +00:00
parent e81dc14740
commit 413a48e8bb
6 changed files with 73 additions and 4 deletions

View file

@ -14,7 +14,10 @@ define('UIH_SOURCE', UIH_ROOT . '/src');
define('UIH_LIBRARY', UIH_ROOT . '/lib');
define('UIH_VERSION', '20230125');
require_once UIH_LIBRARY . '/index/index.php';
define('UIH_NDX_PATH', UIH_LIBRARY . '/index');
define('UIH_NDX_PATH_DEV', UIH_LIBRARY . '/index-dev');
require_once (UIH_DEBUG && is_dir(UIH_NDX_PATH_DEV) ? UIH_NDX_PATH_DEV : UIH_NDX_PATH) . '/index.php';
Autoloader::addNamespace(__NAMESPACE__, UIH_SOURCE);
Environment::setDebug(UIH_DEBUG);