mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Update Games List references
This commit is contained in:
parent
fb34473a98
commit
d460de538b
4 changed files with 33 additions and 37 deletions
|
|
@ -269,7 +269,7 @@ Any comments, suggestions? [Let us know!](https://github.com/ThatGuySam/doesitar
|
|||
|
||||
## More Apple Silicon Lists
|
||||
* [Is Apple silicon ready?](https://isapplesiliconready.com/) - Great list with detailed app status
|
||||
* [Games on Apple Silicon](https://twitter.com/__tosh/status/1329099180476928002) - List of reported Games support including performance info.
|
||||
* [Apple Silicon Games](https://applesilicongames.com/) - List of reported Games support including performance info.
|
||||
* [MacRumors List](https://forums.macrumors.com/threads/universal-and-native-apple-silicon-apps.2267176/) - List of Universal and Native Apple Silicon Apps
|
||||
* [RoaringApps](https://roaringapps.com/collections/list-of-apple-silicon-native-apps) - List of apps ready for Apple Silicon M1 chip Macs
|
||||
* [Official Apple List](https://apps.apple.com/us/story/id1540024103) - Apple is a small tech company in Cupertino, CA
|
||||
|
|
|
|||
20
components/thomas-credit.vue
Normal file
20
components/thomas-credit.vue
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<template>
|
||||
|
||||
<small class="data-credit text-sm opacity-75 text-center mb-4">
|
||||
<span>Data generously provided by </span>
|
||||
<span>
|
||||
<a
|
||||
href="https://twitter.com/__tosh"
|
||||
class="font-bold"
|
||||
>Thomas Schranz</a>
|
||||
</span>
|
||||
<span>via</span>
|
||||
<span>
|
||||
<a
|
||||
href="https://applesilicongames.com/"
|
||||
class="font-bold"
|
||||
>Apple Silicon Games</a>
|
||||
</span>
|
||||
</small>
|
||||
|
||||
</template>
|
||||
|
|
@ -14,22 +14,7 @@
|
|||
/>
|
||||
</div> -->
|
||||
|
||||
<small class="text-sm data-credit opacity-75 text-center mb-4">
|
||||
<span>Data generously provided by </span>
|
||||
<span>
|
||||
<a
|
||||
href="https://twitter.com/__tosh"
|
||||
class="font-bold"
|
||||
>Thomas Schranz</a>
|
||||
</span>
|
||||
<span>via</span>
|
||||
<span>
|
||||
<a
|
||||
href="https://twitter.com/__tosh/status/1329099180476928002"
|
||||
class="font-bold"
|
||||
>Games and Apps on Apple Silicon</a>
|
||||
</span>
|
||||
</small>
|
||||
<ThomasCredit />
|
||||
|
||||
<div class="links space-y-6 sm:space-x-6 mb-8">
|
||||
<LinkButton
|
||||
|
|
@ -105,7 +90,7 @@
|
|||
<div class="report-links py-24 shadow-none">
|
||||
<!-- https://eric.blog/2016/01/08/prefilling-github-issues/ -->
|
||||
<a
|
||||
:href="`https://twitter.com/__tosh/status/1329099180476928002`"
|
||||
:href="`https://forms.gle/29GWt85i1G1L7Ttj8`"
|
||||
target="_blank"
|
||||
class="text-xs"
|
||||
rel="noopener"
|
||||
|
|
@ -118,13 +103,17 @@
|
|||
<script>
|
||||
import LinkButton from '~/components/link-button.vue'
|
||||
import EmailSubscribe from '~/components/email-subscribe.vue'
|
||||
import ThomasCredit from '~/components/thomas-credit.vue'
|
||||
|
||||
import gameList from '~/static/game-list.json'
|
||||
|
||||
// import buildAppList from '~/helpers/build-app-list'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
LinkButton,
|
||||
EmailSubscribe
|
||||
EmailSubscribe,
|
||||
ThomasCredit
|
||||
},
|
||||
async asyncData ({ params: { slug } }) {
|
||||
|
||||
|
|
|
|||
|
|
@ -8,22 +8,7 @@
|
|||
Games that are reported to support Apple Silicon
|
||||
</h2>
|
||||
|
||||
<small class="data-credit opacity-75 text-center">
|
||||
<span>Data generously provided by </span>
|
||||
<span>
|
||||
<a
|
||||
href="https://twitter.com/__tosh"
|
||||
class="font-bold"
|
||||
>Thomas Schranz</a>
|
||||
</span>
|
||||
<span>via</span>
|
||||
<span>
|
||||
<a
|
||||
href="https://twitter.com/__tosh/status/1329099180476928002"
|
||||
class="font-bold"
|
||||
>Games and Apps on Apple Silicon</a>
|
||||
</span>
|
||||
</small>
|
||||
<ThomasCredit />
|
||||
|
||||
<Search
|
||||
:app-list="gameList"
|
||||
|
|
@ -33,7 +18,7 @@
|
|||
/>
|
||||
|
||||
<LinkButton
|
||||
:href="`https://twitter.com/__tosh/status/1329099180476928002`"
|
||||
:href="`https://forms.gle/29GWt85i1G1L7Ttj8`"
|
||||
>
|
||||
Report a Game
|
||||
</LinkButton>
|
||||
|
|
@ -44,13 +29,15 @@
|
|||
<script>
|
||||
import Search from '~/components/search.vue'
|
||||
import LinkButton from '~/components/link-button.vue'
|
||||
import ThomasCredit from '~/components/thomas-credit.vue'
|
||||
|
||||
import gameList from '~/static/game-list.json'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Search,
|
||||
LinkButton
|
||||
LinkButton,
|
||||
ThomasCredit
|
||||
},
|
||||
data: function () {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue