Compare commits

..

No commits in common. "master" and "1.12.4" have entirely different histories.

6 changed files with 451 additions and 525 deletions

View file

@ -169,7 +169,6 @@ publish-to-foundry-admin:
variables:
FVTT_MANIFEST_PATH: ds4/system.json
FVTT_MANIFEST_URL: ${CI_PROJECT_URL}/-/releases/${CI_COMMIT_TAG}/downloads/system.json
FVTT_DELETE_OBSOLETE_VERSIONS: "true"
script: foundry-publish
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'

View file

@ -2,7 +2,7 @@
"private": true,
"name": "dungeonslayers4",
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
"version": "1.12.6",
"version": "1.12.4",
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
"repository": {
@ -61,31 +61,31 @@
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@guanghechen/rollup-plugin-copy": "1.8.6",
"@league-of-foundry-developers/foundry-vtt-types": "9.249.0",
"@league-of-foundry-developers/foundry-vtt-types": "9.242.0",
"@rollup/plugin-typescript": "8.3.0",
"@seald-io/nedb": "2.2.1",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"conventional-changelog-cli": "2.2.2",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-prettier": "4.0.0",
"fs-extra": "10.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest": "27.4.7",
"jest-junit": "13.0.0",
"lint-staged": "12.3.3",
"lint-staged": "12.3.2",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"rollup": "2.67.2",
"rollup": "2.66.1",
"rollup-plugin-styles": "4.0.0",
"rollup-plugin-terser": "7.0.2",
"sass": "1.49.7",
"sass": "1.49.0",
"semver": "7.3.5",
"ts-jest": "27.1.3",
"tslib": "2.3.1",

View file

@ -29,11 +29,11 @@
}
],
"url": "https://git.f3l.de/dungeonslayers/ds4",
"license": "https://git.f3l.de/dungeonslayers/ds4/-/raw/1.12.6/LICENSE.md",
"readme": "https://git.f3l.de/dungeonslayers/ds4/-/raw/1.12.6/README.md",
"license": "./LICENSE.md",
"readme": "./README.md",
"bugs": "https://git.f3l.de/dungeonslayers/ds4/-/issues",
"changelog": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.6",
"version": "1.12.6",
"changelog": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.4",
"version": "1.12.4",
"minimumCoreVersion": "9.238",
"compatibleCoreVersion": "9",
"esmodules": ["ds4.js"],
@ -101,7 +101,7 @@
}
],
"manifest": "https://git.f3l.de/api/v4/projects/dungeonslayers%2Fds4/packages/generic/ds4/latest/system.json",
"download": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.6/downloads/ds4.zip",
"download": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.4/downloads/ds4.zip",
"initiative": "@combatValues.initiative.total",
"gridDistance": 1,
"gridUnits": "m",

View file

@ -7,14 +7,8 @@ import semver from "semver";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
const repository = "dungeonslayers/ds4";
const gitlabURL = "https://git.f3l.de";
const getLicenseURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/LICENSE.md`;
const getReadmeURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/README.md`;
const getChangelogURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}`;
const getDownloadURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}/downloads/ds4.zip`;
const getDownloadURL = (version) => `https://git.f3l.de/dungeonslayers/ds4/-/releases/${version}/downloads/ds4.zip`;
const getChangelogURL = (version) => `https://git.f3l.de/dungeonslayers/ds4/-/releases/${version}`;
const manifestPath = "./system.json";
/**
@ -67,11 +61,9 @@ function bumpVersion(release) {
console.log(`Bumping version number to '${targetVersion}'`);
packageJson.version = targetVersion;
fs.writeJSONSync("package.json", packageJson, { spaces: 4 });
manifest.license = getLicenseURL(targetVersion);
manifest.readme = getReadmeURL(targetVersion);
manifest.changelog = getChangelogURL(targetVersion);
manifest.version = targetVersion;
manifest.download = getDownloadURL(targetVersion);
manifest.changelog = getChangelogURL(targetVersion);
fs.writeJSONSync(manifestPath, manifest, { spaces: 4 });
}

View file

@ -7,7 +7,7 @@ import path from "node:path";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { destinationDirectory, distDirectory, foundryconfigFile, name } from "./const.js";
import { destinationDirectory, distDirectory, foundryconfigFile, name, sourceDirectory } from "./const.js";
/**
* Get the data path of Foundry VTT based on what is configured in the {@link foundryconfigFile}.
@ -29,7 +29,7 @@ function getDataPath() {
* @param {boolean} clean Whether to remove the link instead of creating it
*/
async function linkPackage(clean) {
if (!fs.existsSync(path.resolve("system.json"))) {
if (!fs.existsSync(path.resolve(sourceDirectory, "system.json"))) {
throw new Error("Could not find system.json");
}

929
yarn.lock

File diff suppressed because it is too large Load diff