Code and content contributions are accepted. Please feel free to submit issues to the issue tracker or submit merge requests for code/content changes. Approval for such requests involves code and (if necessary) design review by the Maintainers of this repo.
Please ensure there is an open issue about whatever contribution you are submitting. Please also ensure your contribution does not duplicate an existing one.
Cloning this repository and either placing it in or symlinking it to your Data/systems/marvel-multiverse
user data directory is all that is necessary to run this within Foundry VTT. However, if you want to make changes to either the LESS stylesheets or the compendia, there are some developer tools which will make your life easier.
If your system supports npm
, you can run the following commands from the root of the project to get set up:
Installs all dependencies needed to run developer tooling scripts. Then will compile the necessary CSS and DB files.
Runs all relevant build scripts:
- Converts SCSS -> CSS
- Converts JSON -> DB (compendia)
Converts the SCSS in ./src/scss
to the final css/marvel-multiverse.css
.
Runs the SCSS -> CSS builder in watch mode so that changes made to the SCSS files will automatically compile to CSS.
This repository includes some utilities which allow the Compendia included in the System to be maintained as JSON files. This makes contributions which include changes to the compendia considerably easier to review.
Compile the source JSON files into compendium packs.
npm run build:db
npm run build:db
- Compile all JSON files into their LevelDB files.npm run build:db -- tags
- Only compile the specified pack.
Extract the contents of compendium packs to JSON files.
npm run build:json
npm run build:json
- Extract all compendium LevelDB files into JSON files.npm run build:json -- tags
- Only extract the contents of the specified compendium.npm run build:json -- tags heroic
- Only extract a single item from the specified compendium.
Cleans and formats source JSON files, removing unnecessary permissions and flags and adding the proper spacing.
npm run build:clean
npm run build:clean
- Clean all source JSON files.npm run build:clean -- tags
- Only clean the source files for the specified compendium.npm run build:clean -- tags heroic
- Only clean a single item from the specified compendium.
Check that your Issue isn't a duplicate (also check the closed issues, as sometimes work which has not been released closes an issue). Issues which are assigned to a Milestone are considered "Prioritized." This assignment is not permanent and issues might be pushed out of milestones if the milestone is approaching a releaseable state without that work being done.
- Ensure that the bug is reproducible with no modules active. If the bug only happens when a module is active, report it to the module's author instead.
- Provide hosting details as they might be relevant.
- Provide clear step-by-step reproduction instructions, as well as what you expected to happen during those steps vs what actually happened.
Any feature request should be considered from the lens of "Does this belong in the core system?"
- Do the Rules as Written (RAW) support this feature? If so, provide some examples.
- Is the missing feature in the System Reference Document? If not, it might still be supportable, but it is worth mentioning in the request.
- Does this feature help a GM run a fifth edition game in Foundry VTT?
If there is missing content, please open an issue detailing what is missing.
In general, content contributions will take the shape of fixing typos or bugs in the configuration of the existing items in the included compendia JSON files, which are then compiled into the appropriate db file.
Non-English languages are not contained within the core marvel-multiverse system, but instead they are managed by specialized localization modules.
Instead of opening an PR with translation files, create one of these modules (or contribute to an existing one!).
Here are some guidelines for contributing code to this project.
To contribute code, fork this project and submit a pull request (PR) against the correct development branch.
Please attempt to follow code style present throughout the project. An ESLint profile is included to help with maintaining a consistent code style. All warnings presented by the linter should be resolved before an PR is submitted.
npm run lint
- Run the linter and display any issues found.npm run lint:fix
- Automatically fix any code style issues that can be fixed.
Before (or alongside) submitting an PR, we ask that you open a feature request issue. This will let us discuss the approach and prioritization of the proposed change.
If you want to work on an existing issue, leave a comment saying you're going to work on the issue so that other contributors know not to duplicate work. Similarly, if you see an issue is assigned to someone, that member of the team has made it known they are working on it.
When you open an PR it is recommended to link it to an open issue. Include which issue it resolves by putting something like this in your description:
Closes #32
Please appreciate that reviewing contributions constitutes a substantial amount of effort and our resources are limited. As a result of this, Pull Requests are reviewed with a priority that roughly follows this:
- Bug Fix
- Small Features related to issues assigned to the current milestone
- Large Features related to issues assigned to the current milestone
- Small Features which are out of scope for the current milestone
- Large Features which are out of scope for the current milestone
PRs have a few phases:
- Prioritization. If the PR relates to the current milestone, it is assigned to that milestone.
- Initial Review from the 5e contributor team. This lets us spread out the review work and catch some of the more obvious things that need to be fixed before final review. Generally this talks about code style and some methodology.
- Final Review from the Maintainers. Atropos and Kim have final review and are the only ones with merge permission.
Please understand that large and sprawling PRs are exceptionally difficult to review. As much as possible, break down the work for a large feature into smaller steps. Even if multiple PRs are required for a single Issue, this will make it considerably easier and therefore more likely that your contributions will be reviewed and merged in a timely manner.
This repository includes a GitHub Actions configuration which automates the compilation and bundling required for a release when a Tag is pushed or created with the name release-x.x.x
.
If either of these conditions are not met on the commit that tag points at, the workflow will error out and release assets will not be created.
- The
system.json
file'sversion
must match thex.x.x
part of the tag name. - The
system.json
file'sdownload
url must match the expected outcome of the release CI artifact. This should simply be changing version numbers in the url to match the release version.
https://github.com/mjording/marvel-multiverse/releases/download/release-1.8.5/marvel-multiverse-1.8.5.zip
└─ Tag Name ──┘ └─ V ─┘ (version)
master
is to be kept as the "most recently released" version of the system. All work is done on development branches matching the milestone the work is a part of. Once the work on a milestone is complete, the following steps will create a system release:
- Verify the
NEEDS_MIGRATION_VERSION
is correct. -
system.json
version
anddownload
fields are updated on the development branch (e.g.1.5.x
). - A tag is created at the tip of the development branch with the format
release-x.x.x
, triggering the CI workflow (which takes ~2 mins to complete). - Development Branch is merged to
master
after the workflow is completed. - The foundryvtt.com admin listing is updated with the
manifest
url pointing to thesystem.json
attached to the workflow-created release.