1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-27 17:00:59 +01:00

Added link to artifacts in release notes

This commit is contained in:
Valentin Radu 2021-11-15 03:45:38 +02:00
parent 2b2a449ba0
commit 62ff17f25e
5 changed files with 14 additions and 18 deletions

View File

@ -147,7 +147,7 @@ jobs:
working-directory: build/Release working-directory: build/Release
if: github.ref == 'refs/heads/master' && github.event.inputs.ref == '' if: github.ref == 'refs/heads/master' && github.event.inputs.ref == ''
run: | run: |
MY_STRING=$(./ep_generate_release_description.exe ${{ steps.vars.outputs.sha_short }} ${{ steps.vars.outputs.branch }}) MY_STRING=$(./ep_generate_release_description.exe ${{ steps.vars.outputs.sha_short }} ${{ steps.vars.outputs.branch }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
MY_STRING="${MY_STRING//'%'/'%25'}" MY_STRING="${MY_STRING//'%'/'%25'}"
MY_STRING="${MY_STRING//$'\n'/'%0A'}" MY_STRING="${MY_STRING//$'\n'/'%0A'}"
MY_STRING="${MY_STRING//$'\r'/'%0D'}" MY_STRING="${MY_STRING//$'\r'/'%0D'}"

View File

@ -57,12 +57,14 @@ int main(int argc, char** argv)
free(line); free(line);
printf( printf(
"Please consult the [README](https://github.com/valinet/ExplorerPatcher/blob/master/README.md) for more details.\n" "Please consult the [README](https://github.com/valinet/ExplorerPatcher/blob/master/README.md) for more details.\n"
"A detailed change log is available [here](https://github.com/valinet/ExplorerPatcher/blob/master/CHANGELOG.md).\n\n" "A detailed change log is available [here](https://github.com/valinet/ExplorerPatcher/blob/master/CHANGELOG.md).\n"
"An archive containing all the files generated during the build process (including `dxgi.dll` and symbol files) is available [here](%s).\n\n"
"*This release has been published automatically from %s %s in branch [%s](https://github.com/valinet/ExplorerPatcher/tree/%s/).*", "*This release has been published automatically from %s %s in branch [%s](https://github.com/valinet/ExplorerPatcher/tree/%s/).*",
argc == 3 ? "commits up to and including" : "the latest commits", argv == 4 ? argv[3] : "https://github.com/valinet/ExplorerPatcher/actions",
argc == 3 ? argv[1] : "", argc == 4 ? "commits up to and including" : "the latest commits",
argc == 3 ? argv[2] : "master", argc == 4 ? argv[1] : "",
argc == 3 ? argv[2] : "master" argc == 4 ? argv[2] : "master",
argc == 4 ? argv[2] : "master"
); );
fclose(f); fclose(f);
} }

View File

@ -157,9 +157,6 @@
<ItemGroup> <ItemGroup>
<ResourceCompile Include="..\ExplorerPatcher\ExplorerPatcher.rc" /> <ResourceCompile Include="..\ExplorerPatcher\ExplorerPatcher.rc" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="..\ExplorerPatcher\settings.reg" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">
</ImportGroup> </ImportGroup>

View File

@ -35,7 +35,4 @@
<Filter>Resource Files</Filter> <Filter>Resource Files</Filter>
</ResourceCompile> </ResourceCompile>
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="..\ExplorerPatcher\settings.reg" />
</ItemGroup>
</Project> </Project>

View File

@ -502,14 +502,14 @@ int WINAPI wWinMain(
{ {
MessageBoxW( MessageBoxW(
NULL, NULL,
L"An error has occured while servicing this product.\n" L"An error has occurred while servicing this product.\n"
L"Most likely, this is caused by one or more of the backup files still being in use (from" L"This is most likely caused by one or more of the backup files from a previous update still being in use. "
L"a previous update). Unlocking the files will most likely fix this issue.\n\n" L"Unlocking the files will most likely fix this issue.\n\n"
L"Troubleshooting steps:\n" L"Troubleshooting steps:\n"
L"* Close and reopen the \"Properties\" dialog, if you have it currently open.\n" L"* Close and reopen the \"Properties\" dialog if it is currently open.\n"
L"* Kill and restart all \"explorer.exe\" processes.\n" L"* Kill and restart all \"explorer.exe\" processes.\n"
L"* If you have registered this as shell extension, restarting the computer will probably fix this.\n" L"* If you have registered this application as a shell extension, then restarting the computer will probably fix this.\n"
L"* After everything else, reboot the computer and try again.", L"* Lastly, reboot the computer and try this operation again.",
_T(PRODUCT_NAME), _T(PRODUCT_NAME),
MB_ICONERROR | MB_OK | MB_DEFBUTTON1 MB_ICONERROR | MB_OK | MB_DEFBUTTON1
); );