Skip to content

Commit f5d1866

Browse files
committed
Merge branch 'main' of github.com:Yellow-Dog-Man/go.resonite.com
2 parents 5c0f7c5 + e57f0f5 commit f5d1866

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-5
lines changed

.all-contributorsrc

+15-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,22 @@
2828
"contributions": [
2929
"code"
3030
]
31+
},
32+
{
33+
"login": "bredo228",
34+
"name": "bredo",
35+
"avatar_url": "https://avatars.githubusercontent.com/u/29470709?v=4",
36+
"profile": "http://bredo.tech",
37+
"contributions": [
38+
"code"
39+
]
3140
}
3241
],
3342
"repoType": "github",
34-
"commitConvention": "angular"
43+
"commitConvention": "angular",
44+
"files": [
45+
"README.md"
46+
],
47+
"commitType": "docs",
48+
"contributorsPerLine": 7
3549
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This was put together quite quickly, to fix the needs of go.resonite.com not wor
2727
<td align="center" valign="top" width="14.28%"><a href="http://probableprime.co.uk/"><img src="https://avatars.githubusercontent.com/u/8791132?v=4?s=100" width="100px;" alt="ProbablePrime"/><br /><sub><b>ProbablePrime</b></sub></a><br /><a href="https://github.com/Yellow-Dog-Man/go.resonite.com/commits?author=ProbablePrime" title="Code">💻</a></td>
2828
<td align="center" valign="top" width="14.28%"><a href="https://github.com/stiefeljackal"><img src="https://avatars.githubusercontent.com/u/20023996?v=4?s=100" width="100px;" alt="Stiefel Jackal"/><br /><sub><b>Stiefel Jackal</b></sub></a><br /><a href="https://github.com/Yellow-Dog-Man/go.resonite.com/commits?author=stiefeljackal" title="Code">💻</a></td>
2929
<td align="center" valign="top" width="14.28%"><a href="https://j4.lc/"><img src="https://avatars.githubusercontent.com/u/76598503?v=4?s=100" width="100px;" alt="Jae Lo Presti"/><br /><sub><b>Jae Lo Presti</b></sub></a><br /><a href="https://github.com/Yellow-Dog-Man/go.resonite.com/commits?author=jae1911" title="Code">💻</a></td>
30+
<td align="center" valign="top" width="14.28%"><a href="http://bredo.tech"><img src="https://avatars.githubusercontent.com/u/29470709?v=4?s=100" width="100px;" alt="bredo"/><br /><sub><b>bredo</b></sub></a><br /><a href="https://github.com/Yellow-Dog-Man/go.resonite.com/commits?author=bredo228" title="Code">💻</a></td>
3031
</tr>
3132
</tbody>
3233
</table>

helpers/preprocessing.js

+5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ function preProcessWorld(json) {
7171
json.thumbnailUri = "/images/noThumbnail.png";
7272
}
7373

74+
// Convert to UTC to have a standard timezone
75+
// This also helps people document worlds on the wiki
76+
json.firstPublishTime = new Date(json.firstPublishTime).toUTCString();
77+
json.lastModificationTime = new Date(json.lastModificationTime).toUTCString();
78+
7479
return json;
7580
}
7681

views/credits.pug

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ block head
66
block content
77
h1 Credits
88

9-
p go.resonite.com, is
9+
p go.resonite.com is
1010
a(href="https://github.com/Yellow-Dog-Man/go.resonite.com") open source.
11-
| It was made by the following people!
11+
| It was made by the following people:
1212

1313
div(class="grid")
1414
each person in contributors

views/index.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ extends layout
22

33
block content
44
h1 go.resonite.com
5-
p go.resonite.com is used to link to worlds and sessions from the web. It's home page doesn't have any functionality at the moment.
5+
p go.resonite.com is used to link to worlds and sessions from the web. Its home page doesn't have any functionality at the moment.
66

77
p Would you like to
88
ul

views/world.pug

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ block content
2020
.row
2121
dt Description:
2222
dd #{description}
23+
.row
24+
dt First published on:
25+
dd #{firstPublishTime}
26+
.row
27+
dt Last modified on:
28+
dd #{lastModificationTime}
2329
.row
2430
dt Tags:
2531
dd #{tags.join(", ")}
@@ -29,4 +35,4 @@ block content
2935
a(href="https://wiki.resonite.com/go.resonite.com") Need Help?
3036
h2.subheading Alternative URLs
3137
ul
32-
li #[strong Record Url:] #{`resrec:///${ownerId}/${id}`}
38+
li #[strong Record Url:] #{`resrec:///${ownerId}/${id}`}

0 commit comments

Comments
 (0)