mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Change "Full Native" working to just "Native"
This commit is contained in:
parent
36f20f03b0
commit
34e3531f7d
8 changed files with 9 additions and 9 deletions
|
|
@ -231,7 +231,7 @@ export default {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [
|
default: () => [
|
||||||
{
|
{
|
||||||
label: '✅ Full Native Support',
|
label: '✅ Native Support',
|
||||||
query: 'status:native'
|
query: 'status:native'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,7 @@ export default async function () {
|
||||||
// 'native' or 'unreported'
|
// 'native' or 'unreported'
|
||||||
const statusName = getStatusName( appScan['Result'] )
|
const statusName = getStatusName( appScan['Result'] )
|
||||||
|
|
||||||
const statusText = (statusName === 'native') ? `✅ Yes, Full Native Apple Silicon Support reported as of v${appScan['App Version']}` : '🔶 App has not yet been reported to be native to Apple Silicon'
|
const statusText = (statusName === 'native') ? `✅ Yes, Native Apple Silicon Support reported as of v${appScan['App Version']}` : '🔶 App has not yet been reported to be native to Apple Silicon'
|
||||||
|
|
||||||
const appSlug = makeSlug( appName )
|
const appSlug = makeSlug( appName )
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ const statusesTranslations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
const statusesMessages = {
|
const statusesMessages = {
|
||||||
'Native': '✅ Yes, Full Native Apple Silicon Support',
|
'Native': '✅ Yes, Native Apple Silicon Support',
|
||||||
'Rosetta 2': '✳️ Yes, works via Rosetta 2',
|
'Rosetta 2': '✳️ Yes, works via Rosetta 2',
|
||||||
// 'CrossOver': '✳️ Yes, works via Rosetta 2',
|
// 'CrossOver': '✳️ Yes, works via Rosetta 2',
|
||||||
// 'no': '🚫 No, not yet supported only works on Intel-based Macs'
|
// 'no': '🚫 No, not yet supported only works on Intel-based Macs'
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ const statusesTranslations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
const statusesMessages = {
|
const statusesMessages = {
|
||||||
'🥇': '✅ Yes, Full Native Apple Silicon Support',
|
'🥇': '✅ Yes, Native Apple Silicon Support',
|
||||||
'🥈': '✳️ Yes, works via Rosetta 2',
|
'🥈': '✳️ Yes, works via Rosetta 2',
|
||||||
'🥉': '⏹ Known issues on macOS 11, though most features work',
|
'🥉': '⏹ Known issues on macOS 11, though most features work',
|
||||||
'⚠️': '⏹ No, not yet, support is still in progress',
|
'⚠️': '⏹ No, not yet, support is still in progress',
|
||||||
|
|
@ -221,7 +221,7 @@ class MakeHomebrewList {
|
||||||
|
|
||||||
// const isNative = this.hasArm64Formula( formula )
|
// const isNative = this.hasArm64Formula( formula )
|
||||||
// const status = isNative ? 'native' : 'unreported'
|
// const status = isNative ? 'native' : 'unreported'
|
||||||
// const statusText = isNative ? '✅ Yes, Full Native Apple Silicon Support' : '🔶 Formula has not yet been reported to be native to Apple Silicon'
|
// const statusText = isNative ? '✅ Yes, Native Apple Silicon Support' : '🔶 Formula has not yet been reported to be native to Apple Silicon'
|
||||||
// const slug = formula.full_name
|
// const slug = formula.full_name
|
||||||
|
|
||||||
// formulaeList.set(formula.full_name, {
|
// formulaeList.set(formula.full_name, {
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ export function getStatusOfScan ( appScan, includeVersion = true ) {
|
||||||
|
|
||||||
if (statusName === 'native') {
|
if (statusName === 'native') {
|
||||||
return [
|
return [
|
||||||
'✅ Yes, Full Native Apple Silicon Support',
|
'✅ Yes, Native Apple Silicon Support',
|
||||||
includeVersion ? `reported as of v${appScan['App Version']}` : ''
|
includeVersion ? `reported as of v${appScan['App Version']}` : ''
|
||||||
].join('')
|
].join('')
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ export default {
|
||||||
query: '',
|
query: '',
|
||||||
quickButtons: [
|
quickButtons: [
|
||||||
{
|
{
|
||||||
label: '✅ Full Native Support',
|
label: '✅ Native Support',
|
||||||
query: 'status:native'
|
query: 'status:native'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ export default {
|
||||||
fetchedAppList: [],
|
fetchedAppList: [],
|
||||||
quickButtons: [
|
quickButtons: [
|
||||||
{
|
{
|
||||||
label: '✅ Full Native Support',
|
label: '✅ Native Support',
|
||||||
query: 'status:native'
|
query: 'status:native'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ export default {
|
||||||
query: '',
|
query: '',
|
||||||
quickButtons: [
|
quickButtons: [
|
||||||
{
|
{
|
||||||
label: '✅ Full Native Support',
|
label: '✅ Native Support',
|
||||||
query: 'status:native'
|
query: 'status:native'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue