From 4be3398dfa9abc573f84a8ec793d66dd679fdc8c Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Mon, 20 Dec 2021 14:40:41 -0800 Subject: [PATCH] About box updated to include Patreon site and to indicate path for stylesheet only as applicable. --- aboutbox.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/aboutbox.cpp b/aboutbox.cpp index dadd943..ba8de0f 100644 --- a/aboutbox.cpp +++ b/aboutbox.cpp @@ -19,10 +19,16 @@ aboutbox::aboutbox(QWidget *parent) : QString nacode = QString("

Networking, audio, rigctl server, and much more written by Phil Taylor, M0VSE"); QString doctest = QString("

Testing, documentation, bug fixes, and development mentorship from
Roeland Jansen, PA3MET, and Jim Nijkamp, PA8E."); - +#if defined(Q_OS_LINUX) QString ssCredit = QString("

Stylesheet qdarkstyle used under MIT license, stored in /usr/share/wfview/stylesheets/."); +#else + QString ssCredit = QString("

Stylesheet qdarkstyle used under MIT license."); +#endif QString website = QString("

Please visit https://wfview.org/ for the latest information."); + + QString donate = QString("

Join us on Patreon for a behind-the-scenes look at wfview development, nightly builds, and to support the software you love."); + QString docs = QString("

Be sure to check the User Manual and the Forum if you have any questions."); QString support = QString("

For support, please visit the official wfview support forum."); QString gitcodelink = QString("").arg(GITSHORT); @@ -78,7 +84,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."); // String it all together: QString aboutText = head + copyright + "\n" + nacode + "\n" + doctest + wfviewcommunityack; - aboutText.append(website + "\n"+ docs + support + contact +"\n"); + aboutText.append(website + "\n" + donate + "\n"+ docs + support + contact +"\n"); aboutText.append("\n" + ssCredit + "\n" + rsCredit + "\n"); #if defined(RTAUDIO)