From be47bcbe466020e3c0320e08b640b29f5efbb8a0 Mon Sep 17 00:00:00 2001 From: Maxetto Date: Fri, 5 Sep 2025 12:14:05 +0200 Subject: [PATCH] Update Generated page --- rdgenerator/templates/generated.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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(); -{{ ... }} \ No newline at end of file +{{ ... }}