Call LibrariesUpdateCoordinator::init in YACReaderLibraryServer

This commit is contained in:
Luis Ángel San Martín 2024-12-24 10:44:34 +01:00
parent 9925692d5d
commit 97601282b8
2 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch)
### YACReaderLibraryServer ### YACReaderLibraryServer
* New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app). * New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).
* Fix automatic libraries updates not being triggered.
### All apps ### All apps
* Sorting heuristic to try to find spreads in the content of a comic is now only used for files with less than 1000 pages to avoid false positives. * Sorting heuristic to try to find spreads in the content of a comic is now only used for files with less than 1000 pages to avoid false positives.

View File

@ -245,6 +245,8 @@ int start(QCoreApplication &app, QCommandLineParser &parser, const QStringList &
QLOG_INFO() << "Done updating libraries"; QLOG_INFO() << "Done updating libraries";
}); });
librariesUpdateCoordinator->init();
int ret = app.exec(); int ret = app.exec();
QLOG_INFO() << "YACReaderLibrary closed with exit code :" << ret; QLOG_INFO() << "YACReaderLibrary closed with exit code :" << ret;