Skip to content
Open
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
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

FLC is a lightweight desktop application for managing and connecting to Foundry Virtual Tabletop servers.

- **Website:** https://foundry.ruleplaying.com/flc
- **Issues**: https://github.com/phenomen/flc/issues
- **Website:** <https://foundry.ruleplaying.com/flc>
- **Issues**: <https://github.com/phenomen/flc/issues>
- **Changelog**: [CHANGELOG.md](CHANGELOG.md)

## Features
Expand Down Expand Up @@ -57,6 +57,22 @@ bun install
bun run tauri dev
```

### Troubleshooting

**Wayland: Protocol error on startup**

If you see `Error 71 (Protocol error) dispatching to Wayland display`, WebKitGTK has a known compositing issue on some Wayland compositors. The `make run` target sets `WEBKIT_DISABLE_COMPOSITING_MODE=1` automatically. If running Tauri directly, prefix the command:

```bash
WEBKIT_DISABLE_COMPOSITING_MODE=1 bun run tauri dev
```

Alternatively, force the X11 backend via XWayland:

```bash
GDK_BACKEND=x11 bun run tauri dev
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE.md) file for details.
Expand Down