Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jtljac committed Jul 25, 2023
2 parents d8a4848 + b6bd58f commit f494c2c
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 13 deletions.
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Foundry Information
Foundry version: [[Version]]
SW5e version: [[Version]]
OS: [[OS Information (Windows, macos, linux, etc)]]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: Feature Request
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/other-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Other Issue
about: For anything else
title: ''
labels: ''
assignees: ''

---


10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
with:
files: static/system.json
env:
version: ${{ steps.get-version.outputs.version }}
manifest: https://github.com/sw5e-foundry/sw5e/releases/download/${{ steps.get-version.outputs.version }}/system.json
download: https://github.com/sw5e-foundry/sw5e/releases/download/${{ steps.get-version.outputs.version }}/system.zip
version: ${{ steps.get_version.outputs.version }}
manifest: https://github.com/sw5e-foundry/sw5e/releases/download/${{ steps.get_version.outputs.version }}/system.json
download: https://github.com/sw5e-foundry/sw5e/releases/download/${{ steps.get_version.outputs.version }}/system.zip

- name: Cache NPM
id: cache-npm
Expand All @@ -57,10 +57,10 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
name: ${{ steps.get-version.outputs.version }}
name: ${{ steps.get_version.outputs.version }}
draft: false
prerelease: false
token: ${{secrets.GITHUB_TOKEN}}
artifacts: "./system.zip, ./static/system.json"
generateReleaseNotes: true
tag: ${{ steps.get-version.outputs.version }}
tag: ${{ steps.get_version.outputs.version }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ The software component of this system is distributed under the GNUv3 license.
To install and use the SW5e system for Foundry Virtual Tabletop, simply paste the following URL into the
**Install System** dialog on the Setup menu of the application.

https://raw.githubusercontent.com/unrealkakeman89/sw5e/master/system.json
https://github.com/sw5e-foundry/sw5e/releases/latest/download/system.json

If you wish to manually install the system, you must clone or extract it into the `Data/systems/sw5e` folder. You
may do this by cloning the repository or downloading a zip archive from the
[Releases Page]([https://github.com/unrealkakeman89/sw5e](https://github.com/sw5e-foundry/sw5e/releases)).
[Releases Page](https://github.com/sw5e-foundry/sw5e/releases).

## Community Contribution

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f494c2c

Please sign in to comment.