Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
Spacing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingVanish committed Feb 7, 2022
1 parent ec686b4 commit 0fbd2cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# RELEASE NOTES

## Version 1.2.1 - Spacing Fix

- Add paragrpah tags at the end of all templates so the user can continue to work below them easily.

## Version 1.2.0 - Parchment Setting

- Added a setting to enable/disable the parchment background (Thanks KSMI for the request)
Expand Down
14 changes: 7 additions & 7 deletions scripts/apsj.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,44 +80,44 @@ Hooks.on('ready', () => {
title: 'Panel: Information',
description: 'A stylish panel to provide an informational message.',
content:
'<section class="panel info"><header><b>Information Heading</b></header><main><p>The body of the Informational Message.</p></main></section>',
'<section class="panel info"><header><b>Information Heading</b></header><main><p>The body of the Informational Message.</p></main></section><p></p>',
},
{
title: 'Panel: Note',
description: 'A stylish panel to provide a note.',
content:
'<section class="panel note"><header><b>Note Heading</b></header><main><p>The body of the Note.</p></main></section>',
'<section class="panel note"><header><b>Note Heading</b></header><main><p>The body of the Note.</p></main></section><p></p>',
},
{
title: 'Panel: Warning',
description: 'A stylish panel to provide a warning message.',
content:
'<section class="panel warning"><header><b>Warning Heading</b></header><main><p>The body of the Warning Message.</p></main></section>',
'<section class="panel warning"><header><b>Warning Heading</b></header><main><p>The body of the Warning Message.</p></main></section><p></p>',
},
{
title: 'Panel: Bonus',
description: 'A stylish panel to provide an Bonus message.',
content:
'<section class="panel bonus"><header><b>Bonus Heading</b></header><main><p>The body of the Bonus Message.</p></main></section>',
'<section class="panel bonus"><header><b>Bonus Heading</b></header><main><p>The body of the Bonus Message.</p></main></section><p></p>',
},
{
title: 'Block: Encounter',
description:
'A stylish block for displaying encounter data and descrptions.',
content:
'<section class="block encounter"><header><h1>Encounter!</h1></header><div class="block-contents"><main><h2>Description</h2><p>Enter a detailed description of the environment and scenario here to read to the players.</p><p>Drag Actor tokens from your compendium into the Adversaries list on the right for easy setup of the encounter.</p></main><aside class="red-overlay"><h2>Adversaries</h2><p style="color: #000000; font-family: Scalysans; text-shadow: 1px 1px #ffffff"></p></aside></section>',
'<section class="block encounter"><header><h1>Encounter!</h1></header><div class="block-contents"><main><h2>Description</h2><p>Enter a detailed description of the environment and scenario here to read to the players.</p><p>Drag Actor tokens from your compendium into the Adversaries list on the right for easy setup of the encounter.</p></main><aside class="red-overlay"><h2>Adversaries</h2><p style="color: #000000; font-family: Scalysans; text-shadow: 1px 1px #ffffff"></p></aside></section><p></p>',
},
{
title: 'Block: Magic Item',
description:
"A stylish block to display a magic item's description and stats.",
content: `<section class="block magic-item"><header><h1>Magic Item Name</h1></header><div class="block-contents"><main><h2>Description</h2><p>Description of the item and its abilities.</p><p>Place Stats in the aside to the right, and a link to the item below the divider.</p></main><aside class="blue-overlay"><h2>Stats</h2><p></p><hr><p></p></aside></section>`,
content: `<section class="block magic-item"><header><h1>Magic Item Name</h1></header><div class="block-contents"><main><h2>Description</h2><p>Description of the item and its abilities.</p><p>Place Stats in the aside to the right, and a link to the item below the divider.</p></main><aside class="blue-overlay"><h2>Stats</h2><p></p><hr><p></p></aside></section><p></p>`,
},
{
title: 'Block: Read Aloud',
description:
'A stylish block to denote flavor text to be read aloud to the players.',
content: `<section class="block read-aloud"><main><div class="icon"></div><p>Flavor text to read aloud to the players.</p></main></section>`,
content: `<section class="block read-aloud"><main><div class="icon"></div><p>Flavor text to read aloud to the players.</p></main></section><p></p>`,
}
);
});

0 comments on commit 0fbd2cd

Please sign in to comment.