Skip to content

Commit

Permalink
version bump v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
akrigline committed Sep 10, 2020
1 parent 36b0f0b commit 985026f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "foundryvtt-compactBeyondTidy5e",
"version": "0.5.2",
"version": "0.5.3",
"description": "A compact character sheet with similar layout to dndbeyond's.",
"scripts": {
"publish": "gulp publish",
Expand Down
8 changes: 4 additions & 4 deletions src/foundryvtt-compactBeyondTidy5eSheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Handlebars.registerHelper('efcs-isEmpty', (input: Object | Array<any> | Set<any>
return isObjectEmpty(input);
});

export class ElfFriendCharacterSheet5e extends ActorSheet5eCharacter {
export class CompactBeyondTidy5eSheet extends ActorSheet5eCharacter {
get template() {
// if ( !game.user.isGM && this.actor.limited ) return "modules/tidy5e-sheet/templates/tidy5e-sheet-ltd.html";
log(this);
Expand Down Expand Up @@ -188,8 +188,8 @@ Hooks.once('ready', function () {

// Add any additional hooks if necessary

// Register Tidy5e Sheet and make default character sheet
Actors.registerSheet('dnd5e', ElfFriendCharacterSheet5e, {
// Register compactBeyondTidy5eSheet Sheet
Actors.registerSheet('dnd5e', CompactBeyondTidy5eSheet, {
types: ['character'],
makeDefault: true,
makeDefault: false,
});
2 changes: 1 addition & 1 deletion src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "Tidy Compact DnDBeyond 5e Character Sheet",
"description": "A compact 5e character sheet with similar layout and functionality to dndbeyond's.",
"systems": ["dnd5e"],
"version": "0.5.2",
"version": "0.5.3",
"author": "Andrew Krigline (akrigline)",
"scripts": [],
"esmodules": [
Expand Down

0 comments on commit 985026f

Please sign in to comment.