diff src/gui/dialog/about.cpp @ 55:d10b6c6b432e

add xml lib, we will need to use it eventually
author Paper <mrpapersonic@gmail.com>
date Tue, 26 Sep 2023 12:37:08 -0400
parents 0c4138de2ea7
children 3d2decf093bb
line wrap: on
line diff
--- a/src/gui/dialog/about.cpp	Tue Sep 26 11:18:50 2023 -0400
+++ b/src/gui/dialog/about.cpp	Tue Sep 26 12:37:08 2023 -0400
@@ -2,6 +2,7 @@
 #include "gui/widgets/text.h"
 #include "gui/dialog/about.h"
 #include "core/json.h"
+#include "pugixml.hpp"
 #include <curl/curl.h>
 #include <QFont>
 #include <QTextCharFormat>
@@ -111,6 +112,14 @@
 	SET_FORMAT_HYPERLINK(format, cursor, "https://p.yusukekamiyamane.com/");
 	cursor.insertText(tr("Fugue Icons ") + CONCAT_VERSION(3, 5, 6));
 	UNSET_FORMAT_HYPERLINK(format, cursor);
+	cursor.insertText(", ");
+	SET_FORMAT_HYPERLINK(format, cursor, "https://pugixml.org/");
+	cursor.insertText(tr("pugixml v") + QString::number(PUGIXML_VERSION / 1000) + "." + QString::number(PUGIXML_VERSION / 10 % 100) + "." + QString::number(PUGIXML_VERSION % 10));
+	UNSET_FORMAT_HYPERLINK(format, cursor);
+	cursor.insertText(", ");
+	SET_FORMAT_HYPERLINK(format, cursor, "https://github.com/erengy/anitomy");
+	cursor.insertText(tr("Anitomy"));
+	UNSET_FORMAT_HYPERLINK(format, cursor);
 	cursor.insertBlock();
 	cursor.insertBlock();
 	SET_FONT_BOLD(font, format, cursor);