-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpkhex.yml
More file actions
39 lines (36 loc) · 1.17 KB
/
pkhex.yml
File metadata and controls
39 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Name: pkhex
Description: A Pokémon core series save editor. After installation, add environment variable DOTNET_SYSTEM_GLOBALIZATION_USENLS=true in bottle settings to fix search functionality.
Grade: Silver
Arch: win64
Dependencies:
- courie32
- arial32
Executable:
name: PKHeX
icon: pkhex.ico
file: PKHeX.exe
path: PKHeX/PKHeX.exe
arguments: ""
Steps:
- action: install_exe
file_name: windowsdesktop-runtime-10.0.5-win-x64.exe
url: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.5/windowsdesktop-runtime-10.0.5-win-x64.exe
file_checksum: false
arguments: /install /quiet /norestart
- action: run_script
script: |
mkdir -p drive_c/PKHeX
- action: install_exe
file_name: PKHeX.exe
url: local
file_checksum: false
arguments: ""
- action: run_script
script: |
PKHEX_SRC=$(find ~ -maxdepth 5 -name "PKHeX.exe" -not -path "*/bottles/*" -not -path "*/.net/*" -type f 2>/dev/null | head -1)
if [ -n "$PKHEX_SRC" ]; then
cp "$PKHEX_SRC" drive_c/PKHeX/
fi
- action: run_script
script: |
wine reg add "HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "C:\PKHeX\PKHeX.exe" /t REG_SZ /d "~ DPIUNAWARE" /f