Skip to content

Commit

Permalink
Roll twice in meaning tables, and resizable vertically panels
Browse files Browse the repository at this point in the history
  • Loading branch information
saif-ellafi committed Apr 5, 2023
1 parent 1ce5b01 commit 5163f3f
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 51 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.7.1
* Enhancement: Mythic 2nd Edition and PUM panels now vertically resizable
* Bugfix: Event meaning tables of Mythic 2nd edition rolls twice now
* Community: Thank you Thessius for the feedback

### 2.7.0
* Enhancement: Support for Mythic GM Emulator 2nd Edition
* Enhancement: Included all meaning tables from Mythic 2nd Edition
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"ko-fi": "https://ko-fi.com/jeansenvaars"
}
],
"version": "2.7.0",
"version": "2.7.1",
"url": "https://github.com/saif-ellafi/foundryvtt-mythic-gme.git",
"manifest": "https://github.com/saif-ellafi/foundryvtt-mythic-gme/releases/latest/download/module.json",
"download": "https://github.com/saif-ellafi/foundryvtt-mythic-gme/releases/download/2.7.0/foundryvtt-mythic-gme_2.7.0.zip",
"download": "https://github.com/saif-ellafi/foundryvtt-mythic-gme/releases/download/2.7.1/foundryvtt-mythic-gme_2.7.1.zip",
"changelog": "https://github.com/saif-ellafi/foundryvtt-mythic-gme/blob/master/CHANGELOG.md",
"compatibility": {
"minimum": "10",
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-mythic-gme",
"version": "2.7.0",
"version": "2.7.1",
"description": "A set of Macros and Random Tables for playing with the Mythic Game Master Emulator",
"main": "mythic-gme-tools.js",
"scripts": {
Expand Down
90 changes: 45 additions & 45 deletions src/app/panel-mythic-gme-2e.js

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

3 changes: 2 additions & 1 deletion src/mgme-macros.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ export default class MGMEMacroAPI {
width: winWidth,
left: (canvas.app.screen.width - ui.sidebar.element.width() - winWidth - 20),
top: canvas.app.screen.height - minHeight,
height: maxHeight
height: maxHeight,
resizable: true
});
api.win = win;
}
Expand Down
4 changes: 4 additions & 0 deletions src/style/panel-mythic.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,8 @@
height: 100%;
font-size: x-large;
padding-right: 15px;
}

#m2e_panel_window, #pum_panel_window {
min-width: 400px;
}

0 comments on commit 5163f3f

Please sign in to comment.