Skip to content

Commit 1abec6c

Browse files
committed
Added WTAP
1 parent 76071e0 commit 1abec6c

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

src/assets/content.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
{
33
"name": "C3 Effects Concat",
4+
"hasRepo": true,
45
"repo": "https://github.com/ConstructFund/c3-effects-concat",
56
"hasWebsite": true,
67
"url": "https://constructfund.github.io/c3-effects-concat/",
@@ -9,6 +10,7 @@
910
},
1011
{
1112
"name": "Made With Construct",
13+
"hasRepo": true,
1214
"repo": "https://github.com/ConstructFund/madewithconstructwebsite",
1315
"hasWebsite": true,
1416
"url": "https://www.madewithconstruct.com/",
@@ -17,6 +19,7 @@
1719
},
1820
{
1921
"name": "Color addon generator",
22+
"hasRepo": true,
2023
"repo": "https://github.com/ConstructFund/color-addon-generator",
2124
"hasWebsite": true,
2225
"url": "https://constructfund.github.io/color-addon-generator",
@@ -25,16 +28,26 @@
2528
},
2629
{
2730
"name": "C3IDE 2",
31+
"hasRepo": true,
2832
"repo": "https://github.com/ConstructFund/c3ide2",
2933
"hasWebsite": false,
3034
"description": "A spiritual successor to c3ide",
3135
"status": "In Development"
3236
},
3337
{
3438
"name": "Web Game Template",
39+
"hasRepo": true,
3540
"repo": "https://github.com/ConstructFund/web-game-template",
3641
"hasWebsite": false,
3742
"description": "A Construct 3 template that implements the basics for making web games, including the biggest web platform SDKs",
3843
"status": "Maintenance"
44+
},
45+
{
46+
"name": "Was That Addon Ported",
47+
"hasRepo": false,
48+
"hasWebsite": true,
49+
"url": "https://wasthataddonported.surge.sh/",
50+
"description": "A website that references commonly used Construct 2 addons and wether they have been ported yet or not",
51+
"status": "Legacy"
3952
}
4053
]

src/components/Card.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
{{ content.status }}
4646
</v-chip>
4747
</div>
48-
<div style="display: flex; flex-wrap: nowrap">
48+
<div style="display: flex; flex-wrap: nowrap" v-if="content.hasRepo">
4949
<v-btn @click="openRepo">Open Repo</v-btn>
5050
<v-icon>mdi-github</v-icon>
5151
</div>
@@ -67,7 +67,7 @@ const chipColor = computed(() => {
6767
"In Development": "success",
6868
Maintenance: "warning",
6969
"On Hiatus": "warning",
70-
Abandonned: "error",
70+
Legacy: "error",
7171
Shipped: "info",
7272
}[props.content.status];
7373
});

0 commit comments

Comments
 (0)