From f9a716d9175fd121785946cecd360a778aa43c2e Mon Sep 17 00:00:00 2001 From: chris062689 Date: Mon, 6 Aug 2018 18:44:00 -0400 Subject: [PATCH] Changed from mingw to msvc builds. --- src/js/downloads.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/downloads.js b/src/js/downloads.js index 7bc1e20c..c0c8a9dd 100644 --- a/src/js/downloads.js +++ b/src/js/downloads.js @@ -35,8 +35,8 @@ function releaseCallback(v, count, e) { if (asset.name.includes('.7z')) return; if (asset.name.includes('RELEASES')) return; - /* We only want to provide mingw builds on the downloads page. */ - if (asset.name.includes('-msvc-')) return; + /* We only want to provide the msvc builds on the downloads page for Windows. */ + if (asset.name.includes('-mingw-')) return; var env_icon = 'unknown'; if (asset.name.includes('windows')) env_icon = 'windows';