You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+22
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,25 @@
1
+
# Version 11.10
2
+
3
+
Updated the objectives display to allow full resizing
4
+
5
+
Changed the available icon to make it clearer what it meant
6
+
7
+
Updated the error message when converting from a journal with multiple pages to a MEJ page that only needs one, to make it clearer that data is about to be deleted.
8
+
9
+
Fixed issues that the latest D&D5e updates introduced.
10
+
11
+
Fixed issue with changing the visiblity of a reward causing player to try and save the journal
12
+
13
+
Fixed issues with players not able to switch between rewards
14
+
15
+
Fixed issues that D&D 5e introduced when trying to edit items in Shops
16
+
17
+
Fixed issues that D&D 5e introduced when droppng an item on a Character sheet.
18
+
19
+
Fixed issue where updating a journal entry that a player had previously viewed was causing ti to open up again.
20
+
21
+
Fixed issue with saving items in a quest not finding the correct items to update
22
+
1
23
# Version 11.09
2
24
3
25
Fixed issue where the header buttons wouldn't refresh when changing between MEJ pages and Foundry pages.
Copy file name to clipboardexpand all lines: module.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"title": "Monk's Enhanced Journal",
3
3
"description": "Treat the journal like it's going to be popped out and used as a digital guide book. Add extra information to summarize an encounter. Show summaries of people and places. Allow for bookmarking of commonly used pages",
Copy file name to clipboardexpand all lines: monks-enhanced-journal.js
+7-9
Original file line number
Diff line number
Diff line change
@@ -1518,7 +1518,7 @@ export class MonksEnhancedJournal {
1518
1518
if(journal.pages.size>1){
1519
1519
isGood=awaitDialog.confirm({
1520
1520
title: "Confirm Page Deletion",
1521
-
content: "This Journal has more than one page. Monk's Enhanced Journal only uses one page, so the additional pages will be deleted and cannot be recovered. <br><br>Are you sure you wish to continue?"
1521
+
content: `<div class="flexrow"><div style="padding: 10px;padding-right: 20px;font-size:40px; color: #ffc107; flex-grow: 0"><i class="fas fa-exclamation-triangle"></i></div><div>This Journal has more than one page. Monk's Enhanced Journal only uses one page, so the additional pages will be deleted and cannot be recovered.</div></div> <br><div style="text-align: center;padding-bottom: 10px;">Are you <b>sure</b> you wish to continue?</div></br>`
1522
1522
});
1523
1523
}
1524
1524
@@ -2720,7 +2720,7 @@ export class MonksEnhancedJournal {
0 commit comments