Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
zip: '${{ github.workspace }}/plugins.zip'
zip_glob_path: 'bin/plugins/prx'
zip_glob: '*.prx'
build_tag: b${{ github.run_number }}
build_tag: 'build_${{ github.run_number }}'
hen_path: hen
steps:

Expand Down Expand Up @@ -100,4 +100,4 @@ jobs:
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ env.build_tag }} ${{ env.zip }} ${{ env.hen_path }}/hen.bin --target ${{ github.sha }} -t "Build ${{ env.build_tag }}" -p
run: gh release create ${{ env.build_tag }} ${{ env.zip }} ${{ env.hen_path }}/hen.bin --target ${{ github.sha }} -t "${{ env.build_tag }}" -p
Binary file modified plugin_mono/data/hen_settings_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion plugin_mono/source/shellui_patch/settings_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ extern "C"
#include "../../../common/notify.h"
#include "../../../common/plugin_common.h"
#include "../../../common/stringid.h"
#include "../../../common/path.h"
#include <stdio.h>

#include <dirent.h>
Expand Down Expand Up @@ -138,12 +139,14 @@ static void SetupSettingsRoot(const char* xml)
char buf2[MAX_BUF] = {};
#undef MAX_BUF
memset(buf_fixed, 0, sizeof(buf_fixed));
// clang-format off
str_replace(xml,
"\t\t<link id=\"sandbox\" title=\"Sandbox\" file=\"Sandbox/sandbox.xml\" />\r\n",
"\t\t<link id=\"hen_settings\" title=\"★ HEN Settings\" file=\"hen_settings.xml\" />\r\n",
"\t\t<link id=\"hen_settings\" title=\"★ HEN Settings\" file=\"hen_settings.xml\" icon=\"file://" SHELLUI_HEN_SETTINGS_ICON_PATH "\" />\r\n",
buf,
_countof(buf),
ADD_BEFORE);
// clang-format on
strncat(buf2, buf, strlen(buf));
str_replace(buf,
"initial_focus_to=\"psn\">\r\n",
Expand Down