Update software, contributions, add Konqi art

This commit is contained in:
Joshua Goins 2024-04-09 17:27:48 -04:00
parent 00f21b003d
commit 9084841921
6 changed files with 69 additions and 11 deletions

10
art/konqi.json Normal file
View file

@ -0,0 +1,10 @@
{
"alt_text": "Three drawings of KDE's mascot, the dragon Konqi.\n\nThe first Konqi is sitting on the floor, taking a bite out of various forms of media such as DVDs, floppy disks and USB drives. He looks quite pleased with himself.\n\nThe second Konqi is juggling said physical media in the air, somehow not dropping them in the process.\n\nThe third and unfortunately final Konqi is finding DVDs inside of a cardbox box. He's also very pleased.",
"characters": [
"Konqi"
],
"date": "2024-04-09",
"description": "Eating DVDs isn't illegal, right?",
"mastodon_url": "https://mastodon.art/@redstrate/112238971210645004",
"title": "Konqi 📀"
}

12
content/art/2024/konqi.md Normal file
View file

@ -0,0 +1,12 @@
---
title: "Konqi 📀"
date: 2024-04-09
layout: art-detail
filename: /art/konqi.webp
alt_text: "Three drawings of KDE's mascot, the dragon Konqi.The first Konqi is sitting on the floor, taking a bite out of various forms of media such as DVDs, floppy disks and USB drives. He looks quite pleased with himself.The second Konqi is juggling said physical media in the air, somehow not dropping them in the process.The third and unfortunately final Konqi is finding DVDs inside of a cardbox box. He's also very pleased."
slug: konqi
characters:
- Konqi
mastodon_url: https://mastodon.art/@redstrate/112238971210645004
---
Eating DVDs isn't illegal, right?

View file

@ -1,7 +1,7 @@
--- ---
title: Stats title: Stats
layout: art-stats layout: art-stats
total: 227 total: 228
years: years:
- year: 2019 - year: 2019
num: 60 num: 60
@ -14,7 +14,7 @@ years:
- year: 2021 - year: 2021
num: 27 num: 27
- year: 2024 - year: 2024
num: 13 num: 14
- year: 2018 - year: 2018
num: 7 num: 7
- year: 2016 - year: 2016

15
content/software/kensa.md Normal file
View file

@ -0,0 +1,15 @@
---
title: "Kensa"
date: 2024-04-04
draft: false
layout: "project"
projtags:
- C++
- Qt
- KDE
source: "https://invent.kde.org/redstrate/kensa"
license: GPLv2
summary: "View detailed information about a process."
---
Description to be written!

View file

@ -1,5 +1,17 @@
{ {
"contributions": [ "contributions": [
{
"id": "libinput/libinput",
"name": "libinput",
"description": "Added support for tablet dials.",
"type": "xdg"
},
{
"id": "multimedia/plasmatube",
"name": "PlasmaTube",
"description": "Maintainer, and added support for multiple video sources. Also features like Picture-in-Picture.",
"type": "kde"
},
{ {
"id": "network/neochat", "id": "network/neochat",
"name": "NeoChat", "name": "NeoChat",
@ -45,7 +57,7 @@
{ {
"id": "network/tokodon", "id": "network/tokodon",
"name": "Tokodon", "name": "Tokodon",
"description": "Maintainer, added numerous features and fixed bugs.", "description": "Maintainer, added numerous features and fixed lots of bugs.",
"type": "kde" "type": "kde"
}, },
{ {
@ -56,7 +68,7 @@
{ {
"id": "goatcorp/dalamud", "id": "goatcorp/dalamud",
"name": "Dalamud", "name": "Dalamud",
"description": "Fixed searching for plugins by punchline.", "description": "Fixed searching for plugins by punchline and other boring bugfixes.",
"type": "github" "type": "github"
}, },
{ {

View file

@ -41,7 +41,7 @@
{{ .Scratch.Set "header-name" "Contributions" }} {{ .Scratch.Set "header-name" "Contributions" }}
{{ partial "fake-heading.html" . }} {{ partial "fake-heading.html" . }}
<p>I also do plenty of open-source work, here's a list of some of the projects I contributed to!</p> <p>I also do plenty of open-source work, here's a list of some of the projects I contributed to! This is stuff I did in my free time and not part of employment or paid work.</p>
{{ $contrib := (index site.Data "contributions") }} {{ $contrib := (index site.Data "contributions") }}
@ -77,12 +77,21 @@
<a href="https://gitlab.com/{{ .id }}/merge_requests?scope=all&utf8=%E2%9C%93&state=all&author_username={{ $.Site.Params.gitlab_username }}">MRs</a> <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> </li>
{{ else }} {{ else }}
<li> {{ if eq .type "xdg" }}
<a href="https://github.com/search?q=repo%3Agentoo%2Fgentoo+{{ $.Site.Params.github_username }}&type=commits">Commits</a> <li>
</li> <a href="https://gitlab.freedesktop.org/{{ .id }}/-/commits/main?author={{ $.Site.Params.gitlab_username }}">Commits</a>
<li> </li>
<a href="https://github.com/gentoo/gentoo/pulls?q=is%3Apr+is%3Aclosed+author%3A{{ $.Site.Params.github_username }}">PRs</a> <li>
</li> <a href="https://gitlab.freedesktop.org/{{ .id }}/merge_requests?scope=all&utf8=%E2%9C%93&state=all&author_username={{ $.Site.Params.gitlab_username }}">MRs</a>
</li>
{{ else }}
<li>
<a href="https://github.com/search?q=repo%3Agentoo%2Fgentoo+{{ $.Site.Params.github_username }}&type=commits">Commits</a>
</li>
<li>
<a href="https://github.com/gentoo/gentoo/pulls?q=is%3Apr+is%3Aclosed+author%3A{{ $.Site.Params.github_username }}">PRs</a>
</li>
{{ end }}
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ end }} {{ end }}