Add new contributions

This commit is contained in:
Joshua Goins 2023-02-09 12:47:04 -05:00
parent b3f9a46563
commit d6c7d8d633
3 changed files with 22 additions and 0 deletions

View file

@ -22,6 +22,7 @@ params:
invent_username: "redstrate" invent_username: "redstrate"
isso_url: "comments.redstrate.com" isso_url: "comments.redstrate.com"
geekring_site_id: 227 geekring_site_id: 227
gitlab_username: "redstrate"
author: author:
name: 'redstrate' name: 'redstrate'

View file

@ -18,6 +18,18 @@
"description": "Added About KDE page, misc fixes.", "description": "Added About KDE page, misc fixes.",
"type": "kde" "type": "kde"
}, },
{
"id": "knockout-community/knockout-front",
"name": "Knockout Web Client",
"description": "Improved embedded content warnings.",
"type": "gitlab"
},
{
"id": "systemd/systemd",
"name": "systemd",
"description": "Reworked tablet detection logic.",
"type": "github"
},
{ {
"id": "plasma/kwin", "id": "plasma/kwin",
"name": "KWin", "name": "KWin",

View file

@ -58,6 +58,15 @@
<li> <li>
<a href="https://github.com/{{ .id }}/pulls?q=is%3Apr+author%3A{{ $.Site.Params.github_username }}+">PRs</a> <a href="https://github.com/{{ .id }}/pulls?q=is%3Apr+author%3A{{ $.Site.Params.github_username }}+">PRs</a>
</li> </li>
{{ else }}
{{ if eq .type "gitlab" }}
<li>
<a href="https://gitlab.com/{{ .id }}/-/commits/master?author={{ $.Site.Params.gitlab_username }}">Commits</a>
</li>
<li>
<a href="https://gitlab.com/{{ .id }}/merge_requests?scope=all&utf8=%E2%9C%93&state=all&author_username={{ $.Site.Params.gitlab_username }}">MRs</a>
</li>
{{ end }}
{{ end }} {{ end }}
{{ end }} {{ end }}
</ul> </ul>