Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPrimate committed May 4, 2024
1 parent 6c43b5d commit aa3ca0e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.1.2

- Improved debug features for troubleshooting.

# 2.1.1

- Tales from the Yawning Portal is now a singular book download, not individual books for new purchases.
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ function loadMainWindow() {
// eslint-disable-next-line no-unused-vars
ipcMain.on("books", (event, config) => {
logger.info("Fetching books for UI");
ddb.listBooks(config.data.cobalt, allBooks).then((books) => {
ddb.listBooks(config.data.cobalt, allBooks, config.data.ddbNoCheck).then((books) => {
books = _.orderBy(books, ["book.description"], ["asc"]);
mainWindow.webContents.send("books", books);
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ddb-adventure-muncher",
"version": "2.1.1",
"version": "2.1.2",
"description": "D&D Beyond Adventure Muncher for Foundry Virtual Tabletop",
"repository": "https://github.com/MrPrimate/ddb-adventure-muncher",
"main": "main.js",
Expand Down

0 comments on commit aa3ca0e

Please sign in to comment.