Skip to content

Commit

Permalink
Adding templates and fixing module
Browse files Browse the repository at this point in the history
  • Loading branch information
ironmonk88 committed Sep 10, 2022
1 parent e53f6d4 commit 820e2af
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 31 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# exclude .gitignore and similar from the generated tarball
.git* export-ignore
/screenshots export-ignore
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] Brief description of your issue"
labels: ''
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.

**Please complete as much of the following information as possible:**
- Browser [e.g. chrome, safari]
- Foundry Version [e.g. v9]
- System [e.g. D&D5e, Pathfinder 2e]
- Module version
- Are there any errors in the console [e.g. press F12 and look for red text]
- Have you tried using `Find the Culprit` to make sure it isn't a module interaction.

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
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.

**Additional context**
Add any other context or screenshots about the feature request here.
70 changes: 39 additions & 31 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,40 @@
{
"name": "monks-hotbar-expansion",
"title": "Monk's Hotbar Expansion",
"description": "Click to show all rows of the Hotbar, so that you can select the row by sight rather than clicking through pages. Drag and Drop on any of the rows, and clear an entire row if needed.",
"version": "1.0.14",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "9",
"author": "IronMonk",
"authors": [{
"name": "IronMonk",
"discord": "ironmonk88#4075",
"patreon": "https://www.patreon.com/ironmonk",
"ko-fi": "https://ko-fi.com/ironmonk88"
}],
"socket": true,
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
}
],
"esmodules": [
"hotbar-expansion.js"
],
"styles": [ "css/hotbar-expansion.css" ],
"url": "https://github.com/ironmonk88/hotbar-expansion",
"download": "https://github.com/ironmonk88/hotbar-expansion/archive/1.0.14.zip",
"manifest": "https://github.com/ironmonk88/hotbar-expansion/releases/latest/download/module.json",
"bugs": "https://github.com/ironmonk88/hotbar-expansion/issues",
"allowBugReporter": true
}
"title": "Monk's Hotbar Expansion",
"description": "Click to show all rows of the Hotbar, so that you can select the row by sight rather than clicking through pages. Drag and Drop on any of the rows, and clear an entire row if needed.",
"version": "1.0.14",
"authors": [
{
"name": "IronMonk",
"discord": "ironmonk88#4075",
"patreon": "https://www.patreon.com/ironmonk",
"ko-fi": "https://ko-fi.com/ironmonk88"
}
],
"socket": true,
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
}
],
"esmodules": [
"hotbar-expansion.js"
],
"styles": [
"css/hotbar-expansion.css"
],
"url": "https://github.com/ironmonk88/hotbar-expansion",
"download": "https://github.com/ironmonk88/hotbar-expansion/archive/1.0.14.zip",
"manifest": "https://github.com/ironmonk88/hotbar-expansion/releases/latest/download/module.json",
"bugs": "https://github.com/ironmonk88/hotbar-expansion/issues",
"allowBugReporter": true,
"id": "monks-hotbar-expansion",
"compatibility": {
"minimum": "9",
"verified": "10"
},
"name": "monks-hotbar-expansion",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "10"
}

0 comments on commit 820e2af

Please sign in to comment.