diff --git a/CHANGELOG.md b/CHANGELOG.md index 13b8771..a907a66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/main.js b/main.js index 50ab692..fd48057 100644 --- a/main.js +++ b/main.js @@ -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); }); diff --git a/package.json b/package.json index fd56e7e..577751a 100644 --- a/package.json +++ b/package.json @@ -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",