forked from League-of-Foundry-Developers/fvtt-module-lmrtfy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Core - An exception will no longer be generated when attempting to load a world with rolls in the log. - If a GM asks themselves to roll, the popup will now properly appear. - Settings for Log Level will now properly show up as a Choice Menu. # Starfinder 1 (sfrpg) - It is now possible to roll Save Checks # Pathfinder 1 (pf1e) - This system is now online and Ceus can now be used with this system.
- Loading branch information
Showing
27 changed files
with
1,059 additions
and
730 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,3 +77,22 @@ jobs: | |
asset_content_type: application/gzip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Commit and Push Updated module.json to deploy branch | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add module.json | ||
git commit -m "Update version in module.json" | ||
git push origin deploy | ||
- name: Create Pull Request to push new version back to master | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: "deploy" | ||
destination_branch: "master" | ||
pr_title: "Deploy to Master" | ||
pr_body: "Auto PR to update version number." | ||
pr_label: "automerge" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* WARNING: When mentioning any changes, all CSS must be prefixed with .game.system-pf1 in this file. If you need to edit Ceus-wide CSS, please edit ceus.css. */ | ||
/* Pathfinder 1 Specific CSS */ | ||
.game.system-pf1 .ceus.ceus-result header, | ||
.game.system-pf1 .ceus.ceus-result .result-body .result-total, | ||
.game.system-pf1 .ceus.ceus-result .result-body .result-breakdown { | ||
background-color: rgba(255,255,255,0.3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.