Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
612ed7b631 | ||
|
|
fcd74152bb | ||
|
|
3451c86b36 |
@@ -4,7 +4,7 @@ variables:
|
|||||||
|
|
||||||
include:
|
include:
|
||||||
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release'
|
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release'
|
||||||
ref: 1.0.0
|
ref: 1.0.1
|
||||||
file: '/release-common.yml'
|
file: '/release-common.yml'
|
||||||
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release-node'
|
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release-node'
|
||||||
ref: 1.0.2
|
ref: 1.0.2
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "10",
|
"minimum": "10",
|
||||||
"verified": "10.287",
|
"verified": "10.287",
|
||||||
"maximum": "10"
|
"maximum": "11"
|
||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"id": "wfrp4e",
|
"id": "wfrp4e",
|
||||||
"type": "system",
|
"type": "system",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"verified": "6.1.4"
|
"verified": "6.5.9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "3.0.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"local-deploy": "npm run package && sh ./local-deploy.sh"
|
"local-deploy": "npm run package && sh ./local-deploy.sh"
|
||||||
},
|
},
|
||||||
"version": "2.0.0",
|
"version": "3.0.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@league-of-foundry-developers/foundry-vtt-types": "0.8.9-9",
|
"@league-of-foundry-developers/foundry-vtt-types": "0.8.9-9",
|
||||||
"husky": "4.3.7",
|
"husky": "4.3.7",
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ async function generate(actor: Actor & any, docBuilder: AbstractBuilder) {
|
|||||||
let actorImageData: string | null = null;
|
let actorImageData: string | null = null;
|
||||||
if (actorImage != null) {
|
if (actorImage != null) {
|
||||||
const texture = await loadTexture(actorImage);
|
const texture = await loadTexture(actorImage);
|
||||||
actorImageData = ImageHelper.textureToImage(texture);
|
actorImageData = await ImageHelper.textureToImage(texture);
|
||||||
}
|
}
|
||||||
const currentCareer: Item & any = actor.currentCareer;
|
const currentCareer: Item & any = actor.currentCareer;
|
||||||
const careerData: ItemData & any = currentCareer;
|
const careerData: ItemData & any = currentCareer;
|
||||||
|
|||||||
Reference in New Issue
Block a user