fvtt-player-client - moved to https://github.com/OmegaRogue/fvtt-player-client
wiki https://wiki.theripper93.com/free/vtt-desktop-client
Feature | theripper93 | omegarogue |
---|---|---|
Back to server select button in setup screen | ✔️ | ✔️ |
Back to server select button in login screen | ✔️ ️ | ✔️ |
Back to server select button in game | ❌ | ✔️ |
You can pre-configure and customize the client by editing the config.json
file.
From where the executable is located,
you can find the config.json
file by navigating to the resources/app
folder.
You can edit the file with any text editor.
Example config:
{
"games": [
{
"name": "This is the name of my game",
"url": "https://www.nintendo.com/games/detail/the-legend-of-zelda-breath-of-the-wild-switch"
}
],
"background": "https://images2.alphacoders.com/123/123862.jpg",
"backgroundColor": "#000000",
"textColor": "white",
"accentColor": "green"
}
JSON.stringify({
...JSON.parse(window.localStorage.getItem("appConfig") || "{}"),
games: JSON.parse(window.localStorage.getItem("gameList") || "[]")
})