Add issue template for missing base roms

This commit is contained in:
Jared Schoeny 2026-01-10 15:22:00 -10:00
parent 4af2207b2b
commit 03ca6758ee
2 changed files with 73 additions and 0 deletions

61
.github/ISSUE_TEMPLATE/add-base-rom.yml vendored Normal file
View File

@ -0,0 +1,61 @@
name: Add Base Rom
description: >-
Use this form if the base rom for the romhack you want to upload is missing.
Note: If you are requesting a DS game, make sure the provided hashes are for the
**decrypted** rom.
title: '[Base Rom]: '
body:
- type: dropdown
id: platform
attributes:
label: Platform
description: The game console this game was made for.
options:
- GB
- GBC
- GBA
- NDS
validations:
required: true
- type: input
id: name
attributes:
label: Name
description: The full title of the game this base rom is for
placeholder: 'e.g. Pokémon Mystery Dungeon: Red Rescue Team'
validations:
required: true
- type: dropdown
id: region
attributes:
label: Region
description: The region(s) associated with the specific rom
multiple: true
options:
- USA
- Europe
- Australia
- Japan
- Other
- type: input
id: region_other
attributes:
label: Other Region(s)
description: If "Other" was selected above.
placeholder: e.g. Germany, Korea
- type: input
id: crc32
attributes:
label: CRC32
description: >-
The verified crc32 hash of the required base rom. Can be found at
https://datomatic.no-intro.org/index.php
placeholder: e.g. dd0ac86c
- type: input
id: sha1
attributes:
label: SHA-1
description: >-
The verified sha-1 hash of the required base rom. Can be found at
https://datomatic.no-intro.org/index.php
placeholder: e.g. 9f4cfc5b5f4859d17169a485462e977c7aac2b89

View File

@ -803,6 +803,18 @@ export default function HackSubmitForm({
) : (
<div className="h-11 rounded-md bg-[var(--surface-2)] px-3 text-sm ring-1 ring-inset ring-[var(--border)] flex items-center text-foreground/60 select-none">{baseRoms.find(r=>r.id===baseRom)?.name || baseRom}</div>
)}
<p className="text-xs text-foreground/60">
Missing a base ROM?{" "}
<a
href="https://github.com/Hackdex-App/hackdex-website/issues/new?template=add-base-rom.yml"
target="_blank"
rel="noopener noreferrer"
className="underline underline-offset-2 hover:text-foreground/80 transition-colors"
>
Request it on GitHub
<FiExternalLink className="inline-block h-3 w-3 ml-1" />
</a>
</p>
</div>
<div className="grid gap-2">