Initial commit - v0.1.0

This is the initial version of the module, for Foundry v12.

It allows GMs to write and send messages to players via socketlib,
storing an history of those messages, and displaying them on the player's
side, with some potential flair, and some controls in the settings.

This *does not work* with Foundry v13, as the toolbar registration process
has changed.
This commit is contained in:
trotFunky 2025-05-12 21:26:21 +01:00
commit c83122548a
11 changed files with 1143 additions and 0 deletions

53
module.json Normal file
View file

@ -0,0 +1,53 @@
{
"id": "the-mills-messages",
"title": "The Mill's Messages",
"description": "A little message-sending modules for GMs",
"version": "0.1.0",
"compatibility": {
"minimum": "12",
"verified": "12",
"maximum": "12"
},
"relationships": {
"requires": [
{
"id": "socketlib",
"type": "module",
"compatibility": {
"verified": "1.1.2"
}
}
]
},
"authors": [
{
"name": "trotFunky Sparks",
"flags": {}
}
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "fr",
"name": "Français",
"path": "lang/fr.json"
}
],
"esmodules": [
"scripts/mills_messages.mjs"
],
"styles": [
"styles/mills_messages.css"
],
"socket": true,
"license": "LICENSE",
"readme": "README.md",
"url": "https://git.tfk-astrodome.net/trotFunky/TheMillsMessages/src/branch/release",
"manifest": "https://git.tfk-astrodome.net/trotFunky/TheMillsMessages/raw/branch/release/module.json",
"download": "https://git.tfk-astrodome.net/trotFunky/TheMillsMessages/archive/v0.1.0.zip"
}