We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25673a6 commit c881b91Copy full SHA for c881b91
plugins/Updater/page5.c
@@ -222,16 +222,15 @@ PPH_STRING UpdaterGetLatestVersionText(
222
if (commit && commit->Length > 4)
223
{
224
version = PhFormatString(
225
- L"Process Hacker %lu.%lu.%lu (%s)",
+ L"%lu.%lu.%lu (%s)",
226
majorVersion,
227
minorVersion,
228
revisionVersion,
229
PhGetString(commit)
230
);
231
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)
+ L"%s\r\n\r\n<A HREF=\"changelog.txt\">View changelog</A>",
+ PhGetStringOrEmpty(version)
235
));
236
}
237
else
0 commit comments