Mercurial > minori
comparison src/gui/dialog/about.cc @ 292:ac1451035c85
dialog/about: add utf8proc
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 12 May 2024 18:01:16 -0400 |
parents | 862d0d8619f6 |
children | 99cbc51433e4 |
comparison
equal
deleted
inserted
replaced
291:9a88e1725fd2 | 292:ac1451035c85 |
---|---|
1 #include "gui/dialog/about.h" | 1 #include "gui/dialog/about.h" |
2 #include "core/json.h" | 2 #include "core/json.h" |
3 #include "core/session.h" | 3 #include "core/session.h" |
4 #include "core/strings.h" | 4 #include "core/strings.h" |
5 #include "gui/widgets/text.h" | 5 #include "gui/widgets/text.h" |
6 | |
6 #include "pugixml.hpp" | 7 #include "pugixml.hpp" |
8 | |
9 #include "utf8proc.h" | |
7 | 10 |
8 #include <QCoreApplication> | 11 #include <QCoreApplication> |
9 #include <QFont> | 12 #include <QFont> |
10 #include <QHBoxLayout> | 13 #include <QHBoxLayout> |
11 #include <QTextBrowser> | 14 #include <QTextBrowser> |
76 "<a href=\"https://github.com/pulzed/mINI\">mINI v0.9.14</a>" | 79 "<a href=\"https://github.com/pulzed/mINI\">mINI v0.9.14</a>" |
77 ", " | 80 ", " |
78 "<a href=\"https://github.com/Neargye/semver\">semver v" + | 81 "<a href=\"https://github.com/Neargye/semver\">semver v" + |
79 Strings::ToQString(semver_version.to_string()) + | 82 Strings::ToQString(semver_version.to_string()) + |
80 "</a>" | 83 "</a>" |
84 ", " | |
85 "<a href=\"http://juliastrings.github.io/utf8proc/\">utf8proc v" + | |
86 Strings::ToQString(utf8proc_version()) + | |
87 "</a>" | |
81 ", parts of " | 88 ", parts of " |
82 "<a href=\"https://github.com/erengy/anisthesia\">Anisthesia</a>" | 89 "<a href=\"https://github.com/erengy/anisthesia\">Anisthesia</a>" |
83 " </p>" | 90 " </p>" |
84 "<span>" | 91 "<span>" |
85 "<strong>" + | 92 "<strong>" + |
86 tr("Special thanks:") + | 93 tr("Special thanks:") + |
87 "</strong>" | 94 "</strong>" |
88 "</span>" | 95 "</span>" |
89 " <ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 0px; -qt-list-indent:0;\">" | 96 " <ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 0px; -qt-list-indent:0;\">" |
90 " <li><strong>Eren Okka</strong> " + | 97 " <li><strong>Eren Okka</strong> " + |
91 tr("for creating Taiga") + | 98 tr("for creating <a href=\"https://taiga.moe/\">Taiga</a>") + |
92 "</li>" | 99 "</li>" |
93 " <li><strong>Alex Huszagh</strong> " + | 100 " <li><strong>Alex Huszagh</strong> " + |
94 tr("and") + " <strong>Colin Duquesnoy</strong> " + | 101 tr("and") + " <strong>Colin Duquesnoy</strong> " + |
95 tr("for creating BreezeStyleSheets, on which the dark theme in this program is " | 102 tr("for creating BreezeStyleSheets, on which the dark theme in this program is " |
96 "based off of") + | 103 "based off of") + |