Skip to content

Commit

Permalink
Corrected minor typo bug and updated to v12
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrodrig committed Nov 22, 2024
1 parent bc3ad46 commit 157f5d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
18 changes: 8 additions & 10 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "split-join-journal",
"title": "Split-Join Journal",
"description": "Split and Join pages within a Journal or Journals within a folder.",
"version": "1.0.0",
"version": "1.0.1",
"url": "https://github.com/toastygm/split-join-journal",
"bugs": "https://github.com/toastygm/split-join-journal/issues",
"license": "LICENSE",
Expand All @@ -16,29 +16,27 @@
],
"flags": {
"allowBugReporter": true,
"fvttdevleague": { "package-jam": 2022 }
"fvttdevleague": {
"package-jam": 2022
}
},
"compatibility": {
"minimum": "10",
"verified": "10"
"verified": "12.331"
},
"scripts": [
"scripts/split-html.js",
"scripts/split-join-journal.js"
],
"esmodules": [],
"styles": [],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
"path": "lang/en.json",
"flags": {}
}
],
"packs": [],
"system": [],
"dependencies": [],
"socket": true,
"manifest": "https://github.com/toastygm/split-join-journal/releases/latest/download/module.json",
"download": "https://github.com/toastygm/split-join-journal/releases/download/v1.0.0/module.zip"
"download": "https://github.com/toastygm/split-join-journal/releases/download/v1.0.1/module.zip"
}
2 changes: 1 addition & 1 deletion scripts/split-join-journal.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async function splitJournalPagesIntoSeparateJournals(journal, newFolderName) {
let folder = journal.folder;

if (!journal.pages.size) {
ui.notification.info(`Journal ${journal.name} has no pages`);
ui.notifications.info(`Journal ${journal.name} has no pages`);
return;
}

Expand Down

0 comments on commit 157f5d5

Please sign in to comment.