-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e53f6d4
commit 820e2af
Showing
4 changed files
with
94 additions
and
31 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# exclude .gitignore and similar from the generated tarball | ||
.git* export-ignore | ||
/screenshots export-ignore |
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,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. |
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,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. |
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 |
---|---|---|
@@ -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" | ||
} |