mirror of
https://github.com/YACReader/yacreader
synced 2026-02-12 18:13:01 -05:00
Merge pull request #490 from YACReader/develop
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
9.16.1
This commit is contained in:
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
Version counting is based on semantic versioning (Major.Feature.Patch)
|
Version counting is based on semantic versioning (Major.Feature.Patch)
|
||||||
|
|
||||||
|
## 9.16.1
|
||||||
|
|
||||||
|
### YACReaderLibrary
|
||||||
|
* Fix cover loading in Comic Vine scraper.
|
||||||
|
|
||||||
## 9.16.0
|
## 9.16.0
|
||||||
|
|
||||||
### YACReader
|
### YACReader
|
||||||
|
|||||||
@ -46,7 +46,13 @@ void HttpWorker::run()
|
|||||||
tT.setSingleShot(true);
|
tT.setSingleShot(true);
|
||||||
connect(&tT, &QTimer::timeout, &q, &QEventLoop::quit);
|
connect(&tT, &QTimer::timeout, &q, &QEventLoop::quit);
|
||||||
connect(&manager, &QNetworkAccessManager::finished, &q, &QEventLoop::quit);
|
connect(&manager, &QNetworkAccessManager::finished, &q, &QEventLoop::quit);
|
||||||
QNetworkReply *reply = manager.get(QNetworkRequest(url));
|
|
||||||
|
auto request = QNetworkRequest(url);
|
||||||
|
|
||||||
|
request.setHeader(QNetworkRequest::UserAgentHeader,
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/122.0 Safari/537.36");
|
||||||
|
|
||||||
|
QNetworkReply *reply = manager.get(request);
|
||||||
|
|
||||||
tT.start(5000); // 5s timeout
|
tT.start(5000); // 5s timeout
|
||||||
q.exec();
|
q.exec();
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
class QLibrary;
|
class QLibrary;
|
||||||
|
|
||||||
#define VERSION "9.16.0"
|
#define VERSION "9.16.1"
|
||||||
|
|
||||||
// Used to check if the database needs to be updated, the version is stored in the database.
|
// Used to check if the database needs to be updated, the version is stored in the database.
|
||||||
// This value is only incremented when the database structure changes.
|
// This value is only incremented when the database structure changes.
|
||||||
|
|||||||
@ -67,6 +67,7 @@ YACReader::WhatsNewDialog::WhatsNewDialog(QWidget *parent)
|
|||||||
" • Covers can be set in bulk for various comics at once<br/>"
|
" • Covers can be set in bulk for various comics at once<br/>"
|
||||||
" • New button to reset to the default cover of a comic<br/>"
|
" • New button to reset to the default cover of a comic<br/>"
|
||||||
" • Support for storing the new image filters from iOS and Android apps<br/>"
|
" • Support for storing the new image filters from iOS and Android apps<br/>"
|
||||||
|
" • Fixed cover loading in Comic Vine scraper (new in 9.16.1)<br/>"
|
||||||
"<br/>"
|
"<br/>"
|
||||||
"<span style=\"font-weight:600\">YACReaderLibraryServer</span><br/>"
|
"<span style=\"font-weight:600\">YACReaderLibraryServer</span><br/>"
|
||||||
" • Log libraries validation when the app starts<br/>"
|
" • Log libraries validation when the app starts<br/>"
|
||||||
|
|||||||
Reference in New Issue
Block a user