Skip to content

Commit

Permalink
Fix uuid, updated module.js
Browse files Browse the repository at this point in the history
  • Loading branch information
emdant committed Mar 10, 2024
1 parent 5a59418 commit da70885
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion easy-artwork.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function addSheetButton(sheet, buttons) {
label: 'Show Artwork',
onclick: (e) => {
const doc = sheet.document;
new ImagePopout(doc.img, { title: doc.name, uuid: doc.uui }).render(true);
new ImagePopout(doc.img, { title: doc.name, uuid: doc.uuid }).render(true);
}
});
}
Expand Down
10 changes: 8 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
"description": "Allows to easily display the artwork of any Item or Actor from within their own sheet.",
"authors": [
{
"name": "emdant"
"name": "emdant",
"discord": "emdant",
"url": "https://github.com/emdant"
},
{
"name": "alessiocali",
"url": "https://github.com/alessiocali"
}
],
"url": "https://github.com/emdant/easy-artwork",
Expand All @@ -14,7 +20,7 @@
"easy-artwork.js"
],
"socket": true,
"download": "https://github.com/emdant/easy-artwork/releases/download/v1.0.2/module.zip",
"download": "https://github.com/emdant/easy-artwork/releases/download/v1.1.0/module.zip",
"manifest": "https://github.com/emdant/easy-artwork/releases/latest/download/module.json",
"compatibility": {
"minimum": "10",
Expand Down

0 comments on commit da70885

Please sign in to comment.