Skip to content

Commit c881b91

Browse files
committed
Updater: Fix version winsiderss#689
1 parent 25673a6 commit c881b91

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

plugins/Updater/page5.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,16 +222,15 @@ PPH_STRING UpdaterGetLatestVersionText(
222222
if (commit && commit->Length > 4)
223223
{
224224
version = PhFormatString(
225-
L"Process Hacker %lu.%lu.%lu (%s)",
225+
L"%lu.%lu.%lu (%s)",
226226
majorVersion,
227227
minorVersion,
228228
revisionVersion,
229229
PhGetString(commit)
230230
);
231231
PhMoveReference(&version, PhFormatString(
232-
L"%s\r\nCompiled: %s\r\n\r\n<A HREF=\"changelog.txt\">View changelog</A>",
233-
PhGetStringOrEmpty(version),
234-
PhGetStringOrEmpty(commit)
232+
L"%s\r\n\r\n<A HREF=\"changelog.txt\">View changelog</A>",
233+
PhGetStringOrEmpty(version)
235234
));
236235
}
237236
else

0 commit comments

Comments
 (0)