From d133cde88a48925079549e77cd39cce2edef9188 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 28 Jul 2017 12:56:36 +1000 Subject: [PATCH] Hide 7zip files from downloads UI (#38) --- site/themes/citra-bs-theme/static/js/renderDownloads.js | 1 + 1 file changed, 1 insertion(+) diff --git a/site/themes/citra-bs-theme/static/js/renderDownloads.js b/site/themes/citra-bs-theme/static/js/renderDownloads.js index 21acb6b..552bdc8 100644 --- a/site/themes/citra-bs-theme/static/js/renderDownloads.js +++ b/site/themes/citra-bs-theme/static/js/renderDownloads.js @@ -35,6 +35,7 @@ $(document).ready(function() { release.assets.forEach(function(asset) { if (asset.name.includes('nupkg')) return; + if (asset.name.includes('.7z')) return; if (asset.name.includes('RELEASES')) return; let env_icon = './images/icons/file.png';