Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
400c1c16ef
|
|||
|
f321f956f7
|
|||
|
879056f539
|
|||
|
e86ef0a8f3
|
|||
|
1981a69a00
|
|||
|
435744172f
|
|||
|
c916c5ea2d
|
|||
|
80b203a079
|
|||
|
d5489da5f7
|
|||
|
5394ef2046
|
16
README.md
16
README.md
@@ -2,12 +2,16 @@
|
||||
|
||||
## Overview
|
||||
|
||||
This FoundryVTT module allows players to suggest titles for the session, similar to how podcast titles are suggested. In my own sessions, I record every session's audio and make it into a podcast. Many of my favorite podcasts use a random, funny, out-of-context quote from the episode for the title. Inspired by this, I created this module so players can suggest titles and the GM can list them all and choose the best one. Players can use the `/title` or `/t` command to suggest a title. A GM or trusted player can use the `/titles` or `/ts` command to get a list of all the suggestions for the most recent day's session.
|
||||
This FoundryVTT module allows players to suggest titles for the session, similar to how podcast titles are suggested. In my own sessions, I record every session's audio and make it into a podcast. Many of my favorite podcasts use a random, funny, out-of-context quote from the episode for the title. Inspired by this, I created this module so players can suggest titles and the GM can list them all and choose the best one. Players can use the `/title` or `/t` command to suggest a title. The GM (or other configurable role) can use the `/titles` or `/ts` command to get a list of all the suggestions for the most recent day's session.
|
||||
|
||||
## Example
|
||||

|
||||
|
||||
## Features
|
||||
|
||||
- Players can suggest session titles using the `/title`, `/t`, or `t/` command.
|
||||
- GMs or trusted players can view all suggested titles for the most recent session using the `/titles` or `/ts` command.
|
||||
- GMs or trusted players can view all suggested titles for the most recent session using the `/titles` or `/ts` command. (Role is configurable in settings)
|
||||
- Copy the titles using the clipboard icon button next to each suggestion in the list.
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -15,11 +19,9 @@ This module requires the Chat Commander module to be installed and enabled. You
|
||||
|
||||
## Installation
|
||||
|
||||
1. Open FoundryVTT and go to the "Add-on Modules" tab in the "Configuration and Setup" menu.
|
||||
2. Click on "Install Module".
|
||||
3. In the "Manifest URL" field, paste the following URL: `[your-module-manifest-url]`.
|
||||
4. Click "Install" and wait for the installation to complete.
|
||||
5. Enable the module in your game settings.
|
||||
1. In the "Manifest URL" field, paste the following URL: `https://github.com/anthonyscorrea/asc-session-title-suggestions/releases/latest/download/module.json`.
|
||||
2. Click "Install" and wait for the installation to complete.
|
||||
3. Enable the module in your game settings.
|
||||
|
||||
## Usage
|
||||
|
||||
|
||||
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 198 KiB |
4
scripts/zip-for-release.sh
Executable file
4
scripts/zip-for-release.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
echo "version:"$(cat src/module.json|jq .version)
|
||||
echo "download:"$(cat src/module.json|jq .download)
|
||||
git archive --format zip --output dist/module.zip master:src
|
||||
cp src/module.json dist/
|
||||
@@ -4,13 +4,14 @@
|
||||
"description": "A simple module that keeps track of session title suggestions",
|
||||
"authors": [
|
||||
{
|
||||
"name": "lmxsdl"
|
||||
"name": "anthonyscorrea",
|
||||
"url": "https://github.com/anthonyscorrea"
|
||||
}
|
||||
],
|
||||
"version": "0.3",
|
||||
"url": "https://github.com/anthonyscorrea/asc-session-title-suggestions",
|
||||
"compatibility": {
|
||||
"minimum": "11",
|
||||
"verified": ["11","12"]
|
||||
"verified": "12"
|
||||
},
|
||||
"languages": [
|
||||
{
|
||||
@@ -19,8 +20,9 @@
|
||||
"path": "lang/en.json"
|
||||
}
|
||||
],
|
||||
"download": "https://gitea.ascorrea.com/asc/asc-session-title-suggestions/releases/download/0.3/module.zip",
|
||||
"manifest": "https://gitea.ascorrea.com/asc/asc-session-title-suggestions/releases/download/latest/module.json",
|
||||
"download": "https://github.com/anthonyscorrea/asc-session-title-suggestions/releases/download/0.5.1/module.zip",
|
||||
"manifest": "https://github.com/anthonyscorrea/asc-session-title-suggestions/releases/latest/download/module.json",
|
||||
"version": "0.5.1",
|
||||
"scripts": [
|
||||
"scripts/main.js"
|
||||
],
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
const NAME = "/title"
|
||||
|
||||
const template_path = "modules/asc-session-title-suggestions/templates"
|
||||
|
||||
Reference in New Issue
Block a user