From b21dfd36cdafd76b5538383279d28b003188fa19 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Wed, 25 Mar 2026 06:05:21 +0000 Subject: Provide more information in About page - Downstream version and the upstream revision it's based on (commit and date) - URL to our modified source code. - miniaudio and libsodium versions. - Build profile (release, dev, or debug). Also, stop checking for updates. --- src/aoapplication.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/aoapplication.cpp') diff --git a/src/aoapplication.cpp b/src/aoapplication.cpp index f253a5a..490c60e 100644 --- a/src/aoapplication.cpp +++ b/src/aoapplication.cpp @@ -126,6 +126,16 @@ QString AOApplication::get_version_string() return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." + QString::number(MINOR_VERSION); } +QString AOApplication::get_revision_string() +{ + return "1176bb5f 2026-02-06"; +} + +QString AOApplication::get_sof_version_string() +{ + return "SoF-6"; +} + QString AOApplication::find_image(QStringList p_list) { QString image_path; -- cgit