979d33ab83
* Curseforge workarounds This should allow people to use Curseforge without having to manually paste a working key into the settings or change the user agent. Signed-off-by: Lenny McLennington <lenny@sneed.church> * chore: update cf api key api url Sascha says the domain name we're using is not gonna be renewed, so I'm switching it to a domain controlled by me instead so that this won't be a problem in the future. Signed-off-by: Lenny McLennington <lenny@sneed.church> * feat: add ability to disable cf api key fetching by setting the cf api key api url to a blank string Signed-off-by: Lenny McLennington <lenny@sneed.church> * don't ask before fetching key * change polymc mention to pollymc Signed-off-by: Lenny McLennington <lenny@sneed.church> Co-authored-by: Lenny McLennington <lenny@sneed.church>
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* PolyMC - Minecraft Launcher
|
|
* Copyright (C) 2022 Lenny McLennington <lenny@sneed.church>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FETCHFLAMEAPIKEY_H
|
|
#define FETCHFLAMEAPIKEY_H
|
|
|
|
#include <QObject>
|
|
#include <QNetworkReply>
|
|
#include <tasks/Task.h>
|
|
|
|
class FetchFlameAPIKey : public Task
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit FetchFlameAPIKey(QObject *parent = nullptr);
|
|
|
|
QString m_result;
|
|
|
|
public slots:
|
|
void downloadFinished();
|
|
|
|
protected:
|
|
virtual void executeTask();
|
|
|
|
|
|
std::shared_ptr<QNetworkReply> m_reply;
|
|
};
|
|
|
|
#endif // FETCHFLAMEAPIKEY_H
|