Skip to content
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
1 change: 1 addition & 0 deletions _data/sw_clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,7 @@
#ref https://github.com/ObsidianIRC/ObsidianIRC/blob/609af22ee1c30087e8d9125951f749501398617d/src/store/index.ts#L1035-L1083 (Typing)
#ref https://github.com/ObsidianIRC/ObsidianIRC/blob/609af22ee1c30087e8d9125951f749501398617d/src/lib/ircClient.ts#L450 (SASL)
link: https://github.com/ObsidianIRC/ObsidianIRC
ai: true
support:
stable:
account-notify:
Expand Down
3 changes: 3 additions & 0 deletions _data/validation/sw_list.types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ software:
type: string
link:
type: string
ai:
type: boolean
required: false
Comment thread
sadiepowell marked this conversation as resolved.
ircd-ver:
type: string
required: false
Expand Down
5 changes: 4 additions & 1 deletion _includes/support_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,11 @@
{% if sw.note %}
<div class="sw-note">{{ sw.note | markdownify }}</div>
{% endif %}
{% if sw.os %}
{% if sw.os or sw.ai %}
<div class="os-support">
{% if sw.ai %}
<i title="Development assisted using AI" class="fa-solid fa-robot ai-assisted"></i>
{% endif %}
{% for name in sw.os %}
{% if site.data.os[name] %}
<i title="{{ site.data.os[name]["name"] }}" class="{{ site.data.os[name]["icon"] }} os-support-{{ name | slugify }}"></i>
Expand Down
3 changes: 3 additions & 0 deletions css/partials/_swtable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,9 @@ tr.popup-above .support .hover-popup > div:after {
.os-support-linux {
color: #222;
}
.ai-assisted {
color: #bbb;
}

@media only screen and (max-width: 500px) {
.support-table {
Expand Down