Character Sheet Development/Bugs & Quirks
From Roll20 Wiki
Revision as of 13:17, 25 May 2021 by Andreas J. (Talk | contribs)
Main Page: Character Sheet Enhancement
Character Sheet Development
Getting Started
- Using Custom Sheets
- Building Sheets
(Main Page) - Glossary
- Code Restrictions
- Best Practice
- Common Mistakes
- Tutorials
- Examples, Templates
- Pattern Libraries
- HTML & storing data
- CSS & Styling
General
- Updates & Changelog
- Known Bugs
- Character Sheet Enhancement(CSE)
- Custom Roll Parsing
- Legacy Sheet(LCS)
- Beacon SDK
Reference
- Buttons
- Repeating Sections
- Sheetworkers
- Roll Templates
- sheet.json
- Translation
- Auto-Calc
- Advanced
- All SheetDev Pages
Tools & Tips
Other
Listing random quirks of the sheet system, especially those related to issues surrounding the CSE rollout and updated code sanitation on Roll20's part.
Contents |
Bugs
- using optgroups in select doesn't work on custom sheets, even though it works on existing sheets like Free Spacer
- discussion(Forum) May 2021
- "Newly-dropped characters now must fully resolve before closing the window"
CSE
Bugs related to CSE.
- Roll template styling sometimes completely disappears and doesn't work when trying to convert from LCS to CSE. Andreas J. (talk) 12:57, 21 April 2021 (UTC)
- thread discussiong issues.(Forum)
- HTML replacement characters have been observed to sometimes be converted prematurely after the CSE update was made which can cause sheet roll macros to break.
- in some cases,
.charsheet
needs to be added to the CSS classes, which previously worked fine with Legacy Sheet- ex.
.charsheet span{ width: 150px;}
, instead ofspan{ width: 150px;}
- ex.
- Asterisks disappearing from CSS comments. examples & discussion(Forum)
- detail & summary element styling is inconsistent between browsers/versions details(Forum)
- fixed
issues with @importRelease Note for April 27, 2021(Forum)-
if a @import exists, it seems it might result in roll20 ignoring the first instance of the next css class in the file, workaround is to add an empty, "sacrificial" version of the class first that will be eaten up, and the one after will work normally
-
LCS
Bugs that only affect Legacy Sheets.
Sheetworkers
Bugs in how sheetworkers function.
- "Ghost Rows" in repeating sections when a dash '-' is used in the section name full description & reporduction steps(Forum) - found by Peter B. Jan 2021
- api sheetworker interaction persephone pro forum thread
Github
Bug affecting how sheets uploaded to the sheet repo work or function.
- replacing sheet images on github doesn't always update on sheet to make sure images change on sheet when updating/replacing them, change their name/reference in the code, eg.
logo.jpg
tologo2.jpg
.- discussion on the bug
- This minor bug have been observed occasionally since 2019(?) (Andreas J. (talk) 15:39, 5 May 2021 (UTC))
See Also
- Building_Character_Sheets#Restrictions - Documented restrictions on how code is to be written.
- Common_Mistakes - related to sheet coding