Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions docs/contributors.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
<style>
a.contributorlink:hover {
text-decoration-style: solid;
text-decoration-line: underline;
text-decoration-color: white;
}
</style>

<script type="text/javascript">
fetch('https://api.github.com/repos/codeoverflow-org/nodecg-io/contributors').then(response => {
response.json().then(data => {
let idx = 1
data.forEach(entry => {
const div = document.createElement('div')
div.style = `grid-column: 1; grid-row: ${idx}; display: inline-block `
div.style = `grid-column: 1; grid-row: ${idx}; display: inline-block; padding-bottom: 10px`
if ('avatar_url' in entry) {
div.innerHTML = `
<img src="${entry.avatar_url}" width="64" height="64" style="float: left; margin-top: 0">
<div style="float:left; margin-top: 0">
<span style="font-size: 16pt; font-weight: bold; margin-left: 1em;"><a href="${entry.html_url}" style="color: black;">${entry.login}</a></span><br>
<span style="font-size: 12pt; margin-left: 1em;"><a href="https://github.com/codeoverflow-org/nodecg-io/commits?author=${entry.login}" style="color: black;">${entry.contributions} contributions</a></p>
<span style="font-size: 16pt; font-weight: bold; margin-left: 1em; color: white;">
<a style="color: white;" class="contributorlink" href="${entry.html_url}">${entry.login}</a>
</span><br>
<span style="font-size: 12pt; margin-left: 1em; color: white;">
<a style="color: white;" class="contributorlink" href="https://github.com/codeoverflow-org/nodecg-io/commits?author=${entry.login}">${entry.contributions} contributions</a>
</span>
</div>
`
} else {
div.innerHTML = `
<span style="font-size: 16pt; font-weight: bold; margin-left: 1em;">${entry.login}</span><br>
<span style="font-size: 12pt; margin-left: 1em;">${entry.contributions} contributions</p>
<span style="font-size: 16pt; font-weight: bold; margin-left: 1em; color: white;">${entry.login}</span><br>
<span style="font-size: 12pt; margin-left: 1em; color: white;">${entry.contributions} contributions</span>
`
}
document.getElementById('contributorview').appendChild(div)
Expand Down
9 changes: 5 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,18 @@ If that's no problem you can had over to the [Installation Guide](install.md) an

## Implemented Services and Interfaces

- [ ] AHK
- [x] Discord
- [x] AHK
- [x] Discord
- [x] IntelliJ IDEs
- [ ] IRC (Internet Relay Chat)
- [ ] MIDI
- [x] RCON
- [ ] Serial Port (Arduino)
- [ ] Spotify
- [x] Spotify
- [ ] StreamElements
- [ ] TipeeeStream
- [x] Twitch Chat
- [ ] Twitter
- [x] Twitter
- [X] WebSocket Client & Server
- [ ] Youtube

Expand Down