diff --git a/rdgenerator/templates/generated.html b/rdgenerator/templates/generated.html
index 609a407..5f7ecce 100644
--- a/rdgenerator/templates/generated.html
+++ b/rdgenerator/templates/generated.html
@@ -129,6 +129,8 @@
{% if platform == 'windows' %}
Download {{filename}}.exe
Download {{filename}}.msi
+ {% elif platform == 'windows-x86' %}
+ Download {{filename}}.exe
{% elif platform == 'linux' %}
Download {{filename}}-x86_64.deb
Download {{filename}}-x86_64.rpm
@@ -177,7 +179,7 @@
platformLogos.macos.style.display = 'block';
platformNote.textContent = 'Note: For macOS, you may need to adjust security settings to run the application.';
platformNote.style.display = 'block';
- } else if (platform === 'windows') {
+ } else if (platform === 'windows' || platform === 'windows-x86') {
document.getElementById('pageTitle').textContent = 'Windows Build Generated';
platformLogos.windows.style.display = 'block';
platformNote.textContent = 'Note: You might need to disable SmartScreen or adjust Windows security settings.';
@@ -199,4 +201,4 @@
updatePlatformUI();