ui: Drop xemu branch tracking

This commit is contained in:
Matt Borgerson
2026-01-04 23:04:49 -07:00
committed by mborgerson
parent 3334a76f73
commit e409f7afd9
9 changed files with 6 additions and 19 deletions
-1
View File
@@ -1342,7 +1342,6 @@ int main(int argc, char **argv)
#endif
fprintf(stderr, "xemu_version: %s\n", xemu_version);
fprintf(stderr, "xemu_branch: %s\n", xemu_branch);
fprintf(stderr, "xemu_commit: %s\n", xemu_commit);
fprintf(stderr, "xemu_date: %s\n", xemu_date);
-1
View File
@@ -33,7 +33,6 @@ CompatibilityReporter::CompatibilityReporter()
report.token = "";
report.xemu_version = xemu_version;
report.xemu_branch = xemu_branch;
report.xemu_commit = xemu_commit;
report.xemu_date = xemu_date;
report.os_platform = xemu_get_os_platform();
+4 -3
View File
@@ -1592,9 +1592,10 @@ void MainMenuAboutView::Draw()
static const char *build_info_text = NULL;
if (build_info_text == NULL) {
build_info_text =
g_strdup_printf("Version: %s\nBranch: %s\nCommit: "
"%s\nDate: %s",
xemu_version, xemu_branch, xemu_commit, xemu_date);
g_strdup_printf("Version: %s\n"
"Commit: %s\n"
"Date: %s",
xemu_version, xemu_commit, xemu_date);
}
static const char *sys_info_text = NULL;
+1 -1
View File
@@ -44,7 +44,7 @@ const std::string &CompatibilityReport::GetSerializedReport()
json report = {
{"token", token},
{"xemu_version", xemu_version},
{"xemu_branch", xemu_branch},
{"xemu_branch", ""},
{"xemu_commit", xemu_commit},
{"xemu_date", xemu_date},
{"os_platform", os_platform},
-1
View File
@@ -28,7 +28,6 @@ class CompatibilityReport {
public:
std::string token;
std::string xemu_version;
std::string xemu_branch;
std::string xemu_commit;
std::string xemu_date;
std::string os_platform;