From c53cab6a018b583c5f1003586aca8a127b735eef Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 2 Feb 2021 14:44:16 -0600 Subject: [PATCH] =?UTF-8?q?Make=20unsupported=20icon=20to=20be=20closer=20?= =?UTF-8?q?to=20=E2=80=98not=20native=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helpers/app-files-scanner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/app-files-scanner.js b/helpers/app-files-scanner.js index 1a0f535..d66f7d2 100644 --- a/helpers/app-files-scanner.js +++ b/helpers/app-files-scanner.js @@ -352,7 +352,7 @@ export default class AppFilesScanner { if (supportedBinaries !== 0 && unsupportedBinaries !== 0) { file.statusMessage = `🔶 App has some support. ` } else if ( unsupportedBinaries !== 0 ) { - file.statusMessage = `🚫 This app is not natively compatible with Apple Silicon and may only run via Rosetta 2 translation, however, software vendors will sometimes will ship separate install files for Intel and ARM instead of a single one. You can try submitting the download page link for an app and we'll scan that. You can request a manual review to determine the current status of the app on Rosetta 2. ` + file.statusMessage = `🔶 This app is not natively compatible with Apple Silicon and may only run via Rosetta 2 translation, however, software vendors will sometimes will ship separate install files for Intel and ARM instead of a single one. You can try submitting the download page link for an app and we'll scan that. You can request a manual review to determine the current status of the app on Rosetta 2. ` } else if ( supportedBinaries !== 0 ) { file.statusMessage = '✅ This app is natively compatible with Apple Silicon!' }