Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.ini
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION="3.17.1"
VERSION="3.17.2"
2 changes: 2 additions & 0 deletions skyscraper.pro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ CONFIG += release
# set std-C++17 for clang and gcc
CONFIG += c++1z
QT += core network sql xml
# for GCC8 (RetroPie Buster)
LIBS += -lstdc++fs

# Installation prefix path for bin/Skyscraper and etc/skyscraper/*
PREFIX=$$(PREFIX)
Expand Down
2 changes: 1 addition & 1 deletion src/zxinfodk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <QStringBuilder>

static const QList<QPair<QString, QString>>
headers({QPair("User-Agent", "Skyscraper / " VERSION)});
headers({QPair(QString("User-Agent"), QString("Skyscraper / ").append(VERSION))});
static const QString mediaUrl = "https://zxinfo.dk/media";

ZxInfoDk::ZxInfoDk(Settings *config, QSharedPointer<NetManager> manager)
Expand Down
Loading