diff --git a/module.json b/module.json index 275a478..e8d0db0 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "name": "compendium-browser", "title": "Compendium Browser", "description": "

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

Verified with Foundry 9 and 10 only

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.8.2", + "version": "0.9.0", "author": "Spetzel#0103", "authors": [ { @@ -57,13 +57,13 @@ "path": "lang/de.json" } ], - "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.8.2/compendium-browser.zip", + "url": "https://github.com/ZoltanTheDM/compendium-browser", + "manifest": "https://raw.githubusercontent.com/ZoltanTheDM/compendium-browser/v0.9.0-beta0/module.json", + "download": "https://github.com/ZoltanTheDM/compendium-browser/archive/v0.9.0-beta0.zip", "minimumCoreVersion": "0.9.266", "compatibleCoreVersion": "10", "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/Patchnotes.md" + "bugs": "https://github.com/ZoltanTheDM/compendium-browser/issues", + "readme": "https://github.com/ZoltanTheDM/compendium-browser/blob/master/README.md", + "changelog": "https://github.com/ZoltanTheDM/compendium-browser/blob/master/Patchnotes.md" } diff --git a/template/feat-browser.html b/template/feat-browser.html index 2d55f48..f6fd47e 100644 --- a/template/feat-browser.html +++ b/template/feat-browser.html @@ -12,7 +12,7 @@ - + {{> "modules/compendium-browser/template/filter-container.html" filters=featFilters}} diff --git a/template/item-browser.html b/template/item-browser.html index eb8b44d..844f4e0 100644 --- a/template/item-browser.html +++ b/template/item-browser.html @@ -12,7 +12,7 @@ - + {{> "modules/compendium-browser/template/filter-container.html" filters=itemFilters}} diff --git a/template/npc-browser.html b/template/npc-browser.html index 45b0758..6968f1a 100644 --- a/template/npc-browser.html +++ b/template/npc-browser.html @@ -13,7 +13,7 @@ - + {{> "modules/compendium-browser/template/filter-container.html" filters=npcFilters}} diff --git a/template/spell-browser.html b/template/spell-browser.html index eecb07d..7e652a4 100644 --- a/template/spell-browser.html +++ b/template/spell-browser.html @@ -12,7 +12,7 @@ - + {{> "modules/compendium-browser/template/filter-container.html" filters=spellFilters}}