-
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
02a0a09
commit c87181d
Showing
7 changed files
with
141 additions
and
93 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 |
---|---|---|
@@ -1,21 +1,31 @@ | ||
# Version 10.1 | ||
|
||
Fixed issue with the initial opening of the bar when the reverse order setting is on. | ||
|
||
Added a confirmation dialog when the clear entire row is clicked | ||
|
||
Fixed tooltip issue in v10. | ||
|
||
# Version 1.0.14 | ||
|
||
Rebuilt the hotbar so that it should integrate better with Foundry | ||
|
||
Added the option to hit the up and down arrows | ||
|
||
Added the option to have the hotbar open expanded | ||
|
||
Added the option to collapse the hotbar expansion when a row is selected | ||
|
||
Added the option to toggle the Hotbar with key presses | ||
|
||
|
||
# Version 11.01 | ||
|
||
Added a little more padding between rows | ||
|
||
Added keybindings to switch between rows quickly | ||
|
||
Correctly implemented requiresReload in the settings | ||
|
||
Updated the template to be compliant with v11 | ||
|
||
# Version 10.1 | ||
|
||
Fixed issue with the initial opening of the bar when the reverse order setting is on. | ||
|
||
Added a confirmation dialog when the clear entire row is clicked | ||
|
||
Fixed tooltip issue in v10. | ||
|
||
# Version 1.0.14 | ||
|
||
Rebuilt the hotbar so that it should integrate better with Foundry | ||
|
||
Added the option to hit the up and down arrows | ||
|
||
Added the option to have the hotbar open expanded | ||
|
||
Added the option to collapse the hotbar expansion when a row is selected | ||
|
||
Added the option to toggle the Hotbar with key presses | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
{ | ||
"MonksHotbarExpansion.number-rows.name": "Number of rows", | ||
"MonksHotbarExpansion.number-rows.hint": "Number of rows to display when the hotbar number is clicked", | ||
"MonksHotbarExpansion.reverse-row-order.name": "Reverse", | ||
"MonksHotbarExpansion.reverse-row-order.hint": "Reverse the rows order, not duplicating the first row", | ||
"MonksHotbarExpansion.hide-first-row.name": "Hide the first row", | ||
"MonksHotbarExpansion.hide-first-row.hint": "If you like to have all rows open at once, hide the first row to save space", | ||
"MonksHotbarExpansion.collapse-on-select.name": "Collapse on Select", | ||
"MonksHotbarExpansion.collapse-on-select.hint": "Collapse the Expansion when a row is selected", | ||
"MonksHotbarExpansion.toggle-key.name": "Toggle Hotbar", | ||
"MonksHotbarExpansion.toggle-key.hint": "Toggle the hotbar expansion", | ||
"MonksHotbarExpansion.collapse-on-open.name": "Start Collapsed", | ||
"MonksHotbarExpansion.collapse-on-open.hint": "When Foundry first loads start with the Expansion collapsed", | ||
"MonksHotbarExpansion.hide-page-arrows.name": "Hide Page Arrows", | ||
"MonksHotbarExpansion.hide-page-arrows.hint": "In case you don't want the arrows visible", | ||
"MonksHotbarExpansion.clear-row": "Clear Row" | ||
} | ||
{ | ||
"MonksHotbarExpansion.number-rows.name": "Number of rows", | ||
"MonksHotbarExpansion.number-rows.hint": "Number of rows to display when the hotbar number is clicked", | ||
"MonksHotbarExpansion.reverse-row-order.name": "Reverse", | ||
"MonksHotbarExpansion.reverse-row-order.hint": "Reverse the rows order, not duplicating the first row", | ||
"MonksHotbarExpansion.hide-first-row.name": "Hide the first row", | ||
"MonksHotbarExpansion.hide-first-row.hint": "If you like to have all rows open at once, hide the first row to save space", | ||
"MonksHotbarExpansion.collapse-on-select.name": "Collapse on Select", | ||
"MonksHotbarExpansion.collapse-on-select.hint": "Collapse the Expansion when a row is selected", | ||
"MonksHotbarExpansion.toggle-key.name": "Toggle Hotbar", | ||
"MonksHotbarExpansion.toggle-key.hint": "Toggle the hotbar expansion", | ||
"MonksHotbarExpansion.collapse-on-open.name": "Start Collapsed", | ||
"MonksHotbarExpansion.collapse-on-open.hint": "When Foundry first loads start with the Expansion collapsed", | ||
"MonksHotbarExpansion.hide-page-arrows.name": "Hide Page Arrows", | ||
"MonksHotbarExpansion.hide-page-arrows.hint": "In case you don't want the arrows visible", | ||
"MonksHotbarExpansion.switch-row.name": "Switch the Macro row", | ||
|
||
"MonksHotbarExpansion.clear-row": "Clear Row" | ||
} |
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,45 +1,48 @@ | ||
{ | ||
"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": "10.1", | ||
"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" | ||
}, | ||
{ | ||
"lang": "de", | ||
"name": "Deutsch", | ||
"path": "lang/de.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/10.1.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" | ||
{ | ||
"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": "11.01", | ||
"authors": [ | ||
{ | ||
"name": "IronMonk", | ||
"discord": "ironmonk88#4075", | ||
"flags": { | ||
"github": "ironmonk88", | ||
"patreon": "ironmonk", | ||
"ko-fi": "ironmonk88" | ||
} | ||
} | ||
], | ||
"socket": true, | ||
"languages": [ | ||
{ | ||
"lang": "en", | ||
"name": "English", | ||
"path": "lang/en.json" | ||
}, | ||
{ | ||
"lang": "de", | ||
"name": "Deutsch", | ||
"path": "lang/de.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/11.01.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": "11", | ||
"verified": "11" | ||
}, | ||
"name": "monks-hotbar-expansion", | ||
"minimumCoreVersion": "11", | ||
"compatibleCoreVersion": "11" | ||
} |
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