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
9 changes: 9 additions & 0 deletions src/components/support.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { onMount } from "solid-js";

export default function Support() {
onMount(() => {
import("@kixelated/hang/support/element");
});

return <hang-support prop:show="full" prop:details={true} />;
}
6 changes: 4 additions & 2 deletions src/pages/issues.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ layout: "@/layouts/global.astro"
title: Issues
---

import Support from "@/components/support"

# Issues

Yeah, so there's a lot of work to do.
Expand All @@ -14,6 +16,8 @@ But if you just want a Google Meet clone and want to do minimal work, then check
This page is a summary of the major issues, updated periodically.
If you want to help, jump in [Discord](https://discord.gg/FCYF3p99mr)!

<Support client:only="solid-js" />

## What works
Before we give into despair, here's what does work:

Expand All @@ -25,8 +29,6 @@ Before we give into despair, here's what does work:
- **On-Demand**: No encoding (JS only) or networking until the first viewer requests a track.
- **Integrations**: Gstreamer and ffmpeg (via stdin).

Now on to the issues.

## Networking

| name | description |
Expand Down
Loading