From f3b8fcdc092dda4d0c5b24e6d77ec1c233cd7312 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 2 Feb 2021 23:18:04 -0600 Subject: [PATCH] Specify app file is not native --- 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 a6b6132..f4773b1 100644 --- a/helpers/app-files-scanner.js +++ b/helpers/app-files-scanner.js @@ -496,7 +496,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. ` + file.statusMessage = `🔶 This app file 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. ` } else if ( supportedBinaries !== 0 ) { file.statusMessage = '✅ This app is natively compatible with Apple Silicon!'