Skip to content

Commit

Permalink
Release ready
Browse files Browse the repository at this point in the history
  • Loading branch information
saif-ellafi committed Jun 20, 2023
1 parent b5e7398 commit 43fa073
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 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.2
* Bugfix: Adjusted hotbar positioning and starfinder support

### 1.6.1
* Bugfix: Fixed auto-hide sliding in V11 (thanks @andy-jones)

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.1",
"version": "1.6.2",
"compatibility": {
"minimum": "10",
"verified": "11.302",
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.1/foundryvtt-minimal-ui_1.6.1.zip",
"download": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/download/1.6.2/foundryvtt-minimal-ui_1.6.2.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
4 changes: 2 additions & 2 deletions modules/component/hotbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ export default class MinimalUIHotbar {
availableWidth >= 1200
) {
if (game.system.id === 'sfrpg')
rootStyle.setProperty('--hotbarxpos', '17px');
rootStyle.setProperty('--hotbarxpos', '-93px');
else
rootStyle.setProperty('--hotbarxpos', '8px');
rootStyle.setProperty('--hotbarxpos', '-102px');
if (!(game.modules.get('sidebar-macros')?.active && game.settings.get('sidebar-macros', 'hideMacroHotbar')))
rootStyle.setProperty('--playerbot', '55px');
}
Expand Down
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.1",
"version": "1.6.2",
"description": "Minimal UI allows customizing Foundry interface, by hiding, collapsing or resizing specific parts.",
"main": "minimalui.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion styles/component/hotbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
visibility: var(--hotbarvis);
transition: 0.5s ease-out 0.5s;
opacity: var(--opacity);
position: fixed;
position: relative;
}

#hotbar .bar-controls {
Expand Down

0 comments on commit 43fa073

Please sign in to comment.