Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into visit_mod_page

This commit is contained in:
Trial97
2023-06-25 10:12:29 +03:00
106 changed files with 2512 additions and 975 deletions

View File

@ -55,6 +55,8 @@ class InfoFrame : public QFrame {
void setName(QString text = {}, QString toolTip = {});
void setDescription(QString text = {});
void setImage(QPixmap img = {});
void setLicense(QString text = {});
void setIssueTracker(QString text = {});
void clear();
@ -67,6 +69,7 @@ class InfoFrame : public QFrame {
public slots:
void descriptionEllipsisHandler(QString link);
void licenseEllipsisHandler(QString link);
void boxClosed(int result);
private:
@ -75,5 +78,6 @@ class InfoFrame : public QFrame {
private:
Ui::InfoFrame* ui;
QString m_description;
QString m_license;
class QMessageBox* m_current_box = nullptr;
};