Skip to content

Commit

Permalink
print version with release
Browse files Browse the repository at this point in the history
  • Loading branch information
surfzoid committed Jul 30, 2023
1 parent 213aa39 commit 5d7ed45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qtvsplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ QtVsPlayer::QtVsPlayer(QWidget *parent)

ui->statusbar->addPermanentWidget(ui->SatusLbl,1);

printf("---QtVsPlayer %s\r\n",APP_VERSION);
QString Vers = APP_VERSION;
Vers += "-";
Vers += APP_RELEASE;
printf("---QtVsPlayer %s\r\n",Vers.toUtf8().data());

QString CpuArch = QSysInfo::buildCpuArchitecture();
printf("---buildCpuArchitecture :%s\r\n",CpuArch.toUtf8().data());
Expand Down

0 comments on commit 5d7ed45

Please sign in to comment.