itteerde / fvttconfig

Configuration for our Foundry VTT environments
2 stars 1 forks source link

Modules #256

Closed itteerde closed 1 month ago

itteerde commented 1 month ago
let modulesActive = game.modules.filter(m => m.active);
let reportString = "";

for (i = 0; i < modulesActive.length; i++) {
    m = modulesActive[i];
    reportString = `${reportString}\n1. ${m.title} (version: ${m.version}) : [Project-URL](${m.url})`;
}

console.log({ reportString: reportString });
itteerde commented 1 month ago
  1. Autocomplete Whisper (version: 1.0.6) : Project-URL
  2. Dice Tray (version: 2.2.4) : Project-URL
  3. Dungeons & Dragons Player's Handbook (version: 1.0.0) : Project-URL
  4. Tasha's Cauldron of Everything (version: 1.3.0) : Project-URL
  5. D&D Audio Bundle - Hammer Home (version: 1.9) : Project-URL
  6. Simple Calendar (version: 2.4.18) : Project-URL
  7. Game Audio Bundle 1 (version: 3.4) : Project-URL
  8. Game Audio Bundle 2 (version: 3.4) : Project-URL
  9. Game Audio Bundle 3 (version: 3.2) : Project-URL
  10. Game Audio Bundle 4 (version: 3.5) : Project-URL
  11. Tome of Beasts I (2023 Edition) (version: 12.0.0) : Project-URL
  12. Monk's Bloodsplats (version: 12.01) : Project-URL
  13. Tablerules - FVTT Module (version: 0.12.3) : Project-URL
itteerde commented 1 month ago

fine