mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-25 11:45:38 +00:00
Fix update loop between release (#1465)
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions
This commit is contained in:
parent
b7fe08519f
commit
7b16085c59
1 changed files with 3 additions and 1 deletions
|
@ -145,7 +145,9 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString currentRev = QString::fromStdString(Common::g_scm_rev).left(7);
|
QString currentRev = (updateChannel == "Nightly")
|
||||||
|
? QString::fromStdString(Common::g_scm_rev).left(7)
|
||||||
|
: "v." + QString::fromStdString(Common::VERSION);
|
||||||
QString currentDate = Common::g_scm_date;
|
QString currentDate = Common::g_scm_date;
|
||||||
|
|
||||||
QDateTime dateTime = QDateTime::fromString(latestDate, Qt::ISODate);
|
QDateTime dateTime = QDateTime::fromString(latestDate, Qt::ISODate);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue