diff --git a/Patchnotes.md b/Patchnotes.md index 74ae19b..8d5b3d8 100644 --- a/Patchnotes.md +++ b/Patchnotes.md @@ -1,3 +1,7 @@ +#v0.7.0 (only Foundry 0.8+) +- Merged PR #24 (performance speed ups) +- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#19](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/19) + #v0.6.0 - Merged PR #14, #8 (classes for new spells and Optional Class Features in Tasha's) - Manually merged PR #3 (German and Spanish translations) diff --git a/README.md b/README.md index 4bd9248..bb5fc5d 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,19 @@ # Compendium Browser -## NEW in v0.6: +## v0.7: +- Only supports Foundry 0.8.x +- Faster searches using Foundry 0.8.x queries (thanks ZoltantheDM!) +## v0.6: - Additional and Optional Features spells from Tasha's - Spanish, German translations -## v0.5 -- Support for Foundry 0.8.x Tired of scrolling compendia? Easily browse and filter for spells, feats, items, and NPCs using Compendium Browser. Compendium Browser is faster and better-behaved; **it no longer loads all the compendia into memory on start-up** (which sometimes hung servers because of memory or CPU requirements). Instead, it filters and loads on-demand, as well as giving you a Module Setting to control how many rows are loaded at a time. ## Summary -* **Authors**: Discord: Spetzel#0103; Felix (felix.mueller.86@web.de) -* **Version**: 0.6.0 -* **Foundry VTT Compatibility**: 0.7.2-0.8.9 +* **Authors**: Discord: Spetzel#0103; Felix (felix.mueller.86@web.de); ZoltantheDM +* **Version**: 0.7.0 +* **Foundry VTT Compatibility**: 0.8.6-0.8.9 * **System Compatibility (If applicable)**: dnd5e * **Translation Support**: en, de (thanks https://github.com/CarnVanBeck), es (thanks https://github.com/JJBocanegra), fr, ja, pt-BR diff --git a/module.json b/module.json index bb74b3d..0632a56 100644 --- a/module.json +++ b/module.json @@ -1,14 +1,18 @@ { "name": "compendium-browser", "title": "Compendium Browser", - "description": "

Easily browse and filter spells, feats, items, and npcs loaded from compendia!

NEW! Compendium Browser is faster and better-behaved; it no longer loads all the compendia into memory on start-up (which sometimes hung servers because of memory or CPU requirements). Instead, it filters and loads on-demand, as well as giving you a Module Setting to control how many rows are loaded at a time.
Changes in 0.6.0:", - "version": "0.6.0", + "description": "

Easily browse and filter spells, feats, items, and npcs loaded from compendia!

NEW! Compendium Browser is faster and better-behaved; it no longer loads all the compendia into memory on start-up (which sometimes hung servers because of memory or CPU requirements). Instead, it filters and loads on-demand, as well as giving you a Module Setting to control how many rows are loaded at a time.
Changes in 0.7.0: Supports Foundry 0.8+ only; faster searches using Foundry 0.8 queries!", + "version": "0.7.0", "author": "Spetzel#0103", "authors": [ { "name": "Spetzel#0103", "url": "https://github.com/spetzel2020" }, + { + "name": "ZoltanDM", + "url": "https://github.com/ZoltanTheDM" + }, { "name": "Felix#6196" } @@ -51,11 +55,11 @@ ], "url": "https://github.com/League-of-Foundry-Developers/compendium-browser", "manifest": "https://github.com/League-of-Foundry-Developers/compendium-browser/releases/latest/download/module.json", - "download": "https://github.com/League-of-Foundry-Developers/compendium-browser/releases/download/v0.6.0/compendium-browser.zip", - "minimumCoreVersion": "0.6.2", + "download": "https://github.com/League-of-Foundry-Developers/compendium-browser/releases/download/v0.7.0/compendium-browser.zip", + "minimumCoreVersion": "0.8.6", "compatibleCoreVersion": "0.8.9", "allowBugReporter": true, "bugs": "https://github.com/League-of-Foundry-Developers/compendium-browser/issues", "readme": "https://github.com/League-of-Foundry-Developers/compendium-browser/blob/master/README.md", - "changelog": "https://github.com/League-of-Foundry-Developers/compendium-browser/blob/master/CHANGELOG.md" + "changelog": "https://github.com/League-of-Foundry-Developers/compendium-browser/blob/master/Patchnotes.md" }