5 Commits
2.0.0 ... 3.0.1

Author SHA1 Message Date
Gitlab CI
7279b93e4c chore: Release 3.0.1 2024-02-16 14:33:49 +00:00
Matthieu CAILLEAUX
1d940892d7 update manifest 2024-02-16 15:32:22 +01:00
Gitlab CI
612ed7b631 chore: Release 3.0.0 2023-06-26 11:20:06 +00:00
Matthieu CAILLEAUX
fcd74152bb update release version dep 2023-06-26 13:15:39 +02:00
Matthieu CAILLEAUX
3451c86b36 chore: V11 compat 2023-06-26 12:43:35 +02:00
5 changed files with 8 additions and 8 deletions

View File

@@ -4,11 +4,11 @@ variables:
include:
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release'
ref: 1.0.0
ref: 2.0.0
file: '/release-common.yml'
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-release-node'
ref: 1.0.2
file: '/release-node.yml'
- project: '$CI_PROJECT_ROOT_NAMESPACE/ci-tools/pipeline/ci-tools-pipeline-project-foundry-module'
ref: 1.0.1
ref: 1.1.0
file: '/pipeline-foundry-module.yml'

View File

@@ -5,8 +5,8 @@
"version": "${MODULE_VERSION}",
"compatibility": {
"minimum": "10",
"verified": "10.287",
"maximum": "10"
"verified": "11.315",
"maximum": "11"
},
"authors": [
{
@@ -20,7 +20,7 @@
"id": "wfrp4e",
"type": "system",
"compatibility": {
"verified": "6.1.4"
"verified": "6.5.9"
}
}
],

2
package-lock.json generated
View File

@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "3.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -5,7 +5,7 @@
"build": "webpack",
"local-deploy": "npm run package && sh ./local-deploy.sh"
},
"version": "2.0.0",
"version": "3.0.1",
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "0.8.9-9",
"husky": "4.3.7",

View File

@@ -88,7 +88,7 @@ async function generate(actor: Actor & any, docBuilder: AbstractBuilder) {
let actorImageData: string | null = null;
if (actorImage != null) {
const texture = await loadTexture(actorImage);
actorImageData = ImageHelper.textureToImage(texture);
actorImageData = await ImageHelper.textureToImage(texture);
}
const currentCareer: Item & any = actor.currentCareer;
const careerData: ItemData & any = currentCareer;