Skip to content

Commit

Permalink
Monks compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
saif-ellafi committed Oct 27, 2023
1 parent 2ef04ac commit b413ab6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.6.8
* Compatibility: Monk's Hotbar Extension

### 1.6.7
* Enhancement: Improved setting change detection
* Bugfix: Fixed broken hotbar and navigation custom positioning (Thanks @GambetTV)
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"description": "Minimal UI allows customizing Foundry interface, by hiding, collapsing or resizing specific parts.",
"version": "1.6.7",
"version": "1.6.8",
"compatibility": {
"minimum": "10",
"verified": "11.313",
Expand Down Expand Up @@ -49,7 +49,7 @@
],
"url": "https://github.com/saif-ellafi/foundryvtt-minimal-ui.git",
"manifest": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/latest/download/module.json",
"download": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/download/1.6.7/foundryvtt-minimal-ui_1.6.7.zip",
"download": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/download/1.6.8/foundryvtt-minimal-ui_1.6.8.zip",
"readme": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/blob/main/README.md",
"license": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/blob/main/LICENSE.md",
"changelog": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/blob/main/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion modules/component/hotbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default class MinimalUIHotbar {
$("#hotbar").css('margin-bottom', '-5px');
}
if (game.modules.get('monks-hotbar-expansion')?.active) {
$("#hotbar").css('position', 'absolute');
$("#hotbar").css('position', 'fixed');
}
});

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foundryvtt-minimal-ui",
"version": "1.6.7",
"version": "1.6.8",
"description": "Minimal UI allows customizing Foundry interface, by hiding, collapsing or resizing specific parts.",
"main": "minimalui.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions styles/component/players.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
--playerbennies: none;
--playerh3w: unset;
--playerbot: 5px;
--playerleft: -5px;
--playerpingdisplay: initial;
}

#players {
margin-bottom: var(--playerbot);
left: var(--playerleft);
font-size: var(--playerfsize);
visibility: var(--playervis);
opacity: var(--opacity);
Expand Down

0 comments on commit b413ab6

Please sign in to comment.