diff --git a/changelog.md b/changelog.md index 54e33ae5..b86c9b3a 100644 --- a/changelog.md +++ b/changelog.md @@ -10,13 +10,18 @@ Additional Translations generously provided by: Thank you very much! -*Version 0.4.8* -- fix for ability rolls +*Version 0.4.10* + + +*Version 0.4.9* - no more flicker on ability mods - no more errors when opening actors from compendiums - limited sheet now shows correct appearance description - css fix for lists in item description +*Version 0.4.8* +- fix for ability roll errors + *Version 0.4.7* - french translation update and localization fixes thanks Github @Nildran - tried to fix strange hover behaviour of ability mods diff --git a/src/scripts/app/settings.js b/src/scripts/app/settings.js index 77009cb5..53aa0398 100644 --- a/src/scripts/app/settings.js +++ b/src/scripts/app/settings.js @@ -253,7 +253,7 @@ export const tidy5eSettings = function () { }); // PC Sheet Settings -/* + game.settings.register("tidy5e-sheet", "hideClassList", { name: `${game.i18n.localize("TIDY5E.Settings.PcLabel")}: ${game.i18n.localize("TIDY5E.Settings.HideClassList.name")}`, hint: game.i18n.localize("TIDY5E.Settings.HideClassList.hint"), @@ -334,7 +334,6 @@ export const tidy5eSettings = function () { default: false, type: Boolean }); -*/ // NPC Sheet Settings diff --git a/src/scripts/tidy5e-sheet.js b/src/scripts/tidy5e-sheet.js index c928b41a..f0f45374 100644 --- a/src/scripts/tidy5e-sheet.js +++ b/src/scripts/tidy5e-sheet.js @@ -290,11 +290,11 @@ async function editProtection(app, html, data) { } else if(!actor.getFlag('tidy5e-sheet', 'allow-edit')){ - if(game.settings.get("tidy5e-sheet", "totalEditLock")){ - console.log('Sheet is blocked from editing'); - html.find('input, select').prop('disabled', true); - html.find('[contenteditable]').prop('contenteditable', false); - } + // if(game.settings.get("tidy5e-sheet", "totalEditLock")){ + // console.log('Sheet is blocked from editing'); + // html.find('input, select').prop('disabled', true); + // html.find('[contenteditable]').prop('contenteditable', false); + // } let itemContainer = html.find('.inventory-list.items-list, .effects-list.items-list'); html.find('.inventory-list .items-header:not(.spellbook-header), .effects-list .items-header').each(function(){