Skip to content

Commit

Permalink
update module.json for 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zarmstrong committed Jun 30, 2021
1 parent 34cdcbd commit bd9fa02
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.3 (Jun 30, 2021)

* change relative paths to absolute for imports

## 0.3.2 (Jun 30, 2021)

* fixed the delete all to actually delete all
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "Pathbuilder 2e Import",
"description": "This module allows players and GMs to import player characters built in Pathbuilder 2e",
"author": "slate",
"version": "0.3.2",
"version": "0.3.3",
"minimumCoreVersion": "0.8.6",
"compatibleCoreVersion": "0.8.8",
"esmodules": [
Expand All @@ -14,7 +14,7 @@
"license": "MIT",
"url": "https://github.com/zarmstrong/foundry-pathbuilder2e-import",
"manifest": "https://raw.githubusercontent.com/zarmstrong/foundry-pathbuilder2e-import/master/module.json",
"download": "https://github.com/zarmstrong/foundry-pathbuilder2e-import/releases/download/foundry-pathbuilder2e-import-0.3.2/foundry-pathbuilder2e-import-0.3.2.zip",
"download": "https://github.com/zarmstrong/foundry-pathbuilder2e-import/releases/download/foundry-pathbuilder2e-import-0.3.3/foundry-pathbuilder2e-import-0.3.3.zip",
"changelog": "https://github.com/zarmstrong/foundry-pathbuilder2e-import/blob/master/CHANGELOG.md",
"bugs": "https://github.com/zarmstrong/herovau.lt-foundry/issues",
"flags": {
Expand Down
4 changes: 2 additions & 2 deletions pathbuilder-import-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pathbuilder-import.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fbpiDebug=true;
const fpbi="0.3.2";
const fpbi="0.3.3";

var applyChanges = false;
var finishedFeats = false;
Expand All @@ -23,7 +23,7 @@ let isHV=false;

async function doHV() {
if (game.modules.get('herovaultfoundry')?.active){
let {supportCheck} = await import('../herovaultfoundry/herovault-min.js');
let {supportCheck} = await import('/modules/herovaultfoundry/herovault-min.js');
if (typeof supportCheck !== "undefined")
isHV=supportCheck();
if (fbpiDebug)
Expand All @@ -33,7 +33,7 @@ async function doHV() {

async function doHVExport(hero,act) {
if (game.modules.get('herovaultfoundry')?.active){
let {exportToHVFromPBHLO} = await import('../herovaultfoundry/herovault-min.js');
let {exportToHVFromPBHLO} = await import('/modules/herovaultfoundry/herovault-min.js');
if (typeof exportToHVFromPBHLO !== "undefined") {
exportToHVFromPBHLO(hero,act);
}
Expand Down

0 comments on commit bd9fa02

Please sign in to comment.