Skip to content
Merged
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
11 changes: 8 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,20 @@ Docs: https://github.com/M5Devs/OpenROM
run: |
Get-Content SECURITY.md | Out-File -FilePath SECURITY.txt -Encoding utf8

- name: Generate installer images (24-bit BMP for NSIS)
- name: Generate installer images (24-bit BMP + ICO for NSIS)
run: |
magick assets/icons/icon.png `
-resize 164x314 -background "#090910" -gravity center `
-extent 164x314 -type TrueColor -depth 24 `
assets/icons/installer-sidebar.bmp
BMP3:assets/icons/installer-sidebar.bmp

magick assets/icons/OpenROM-Banner.jpeg `
-resize 150x57 -type TrueColor -depth 24 `
assets/icons/installer-header.bmp
BMP3:assets/icons/installer-header.bmp

magick assets/icons/icon.png `
-define icon:auto-resize=256,128,64,48,32,16 `
assets/icons/icon.ico

- name: Build Windows installer
run: |
Expand Down