Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Character Sheet Development/Bugs & Quirks"

From Roll20 Wiki

Jump to: navigation, search
m (General)
m (General: move "banned words"-behavior to CSD/Restrictions)
Line 15: Line 15:
 
Sheet code/editing bugs that doesn't fit other categories.
 
Sheet code/editing bugs that doesn't fit other categories.
  
* '''Using the word <code>eval</code> anywhere in the sheet code will stop everything from working.''' Roll20 have put is as a security measure to prevent eval to be used even in a roundabout way. You cant have attribute or class names that includes it.
 
** this also prevent you from import google fonts that happen to have "eval" as part of the name
 
** Known list of forbidden words: {{code|data:}}, {{code|eval}}, {{code|cookie}}, {{code|window}}, {{code|parent}}, {{code|this}}, {{code|behaviour}}, {{code|behavior}}, {{code|expression}}, {{code|moz-binding}}
 
 
* '''using [[BCS#Dropdown_menu|optgroup]] in <code><nowiki><select></nowiki></code> doesn't work on custom sheets''', even though it works on existing sheets like [[Free Spacer]]
 
* '''using [[BCS#Dropdown_menu|optgroup]] in <code><nowiki><select></nowiki></code> doesn't work on custom sheets''', even though it works on existing sheets like [[Free Spacer]]
 
** {{fpl|10017485/ discussion}} May 2021
 
** {{fpl|10017485/ discussion}} May 2021
Line 29: Line 26:
 
* {{fpl|10308595/ Unicode character in CSS "content" breaks roll templates}} [[User:1223200|1223200]] ([[User talk:1223200|talk]]) 14:49, 12 August 2021 (UTC)
 
* {{fpl|10308595/ Unicode character in CSS "content" breaks roll templates}} [[User:1223200|1223200]] ([[User talk:1223200|talk]]) 14:49, 12 August 2021 (UTC)
 
* [https://app.roll20.net/forum/post/10576120/cant-appear-to-use-certain-emojis-in-a-character-sheet certain emojis & unicode characters are removed] from character sheets, so can't be reliably used. Use images instead. Dec 2021
 
* [https://app.roll20.net/forum/post/10576120/cant-appear-to-use-certain-emojis-in-a-character-sheet certain emojis & unicode characters are removed] from character sheets, so can't be reliably used. Use images instead. Dec 2021
* '''translation'''
+
* '''[[i18n|translation]]'''
 
** '''translation special character bug''' {{fpl|10111515 discussion}} May 2021
 
** '''translation special character bug''' {{fpl|10111515 discussion}} May 2021
*** avoid placing symbols & special characters in translations
+
*** avoid placing symbols & special characters in translations. Could[[HTML Entities]] be used instead?
 
** language-dependent sheet changes doesn't seem to work. See [https://github.com/Roll20/roll20-character-sheets/issues/9053 #9053] for details. Summer 2021
 
** language-dependent sheet changes doesn't seem to work. See [https://github.com/Roll20/roll20-character-sheets/issues/9053 #9053] for details. Summer 2021
  

Revision as of 11:21, 16 February 2022


This page lists observed Bugs and odd quirks of the Character Sheet-system, especially those related to coding, editing & updating character sheets.


Note: The "Month Year" mention at end is a guaranteed last observation of the bug.

Contents

Bugs

General

Sheet code/editing bugs that doesn't fit other categories.

Repeating Sections

Sheetworkers

Bugs in how sheetworkers function.

JavaScript Restrictions

CSE

Bugs related to Character Sheet Enhancement(CSE).

  • 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.
    • Only appears to happen in CSE-mode. reported by Ayethin & Vince
    • Workaround: since nested quotes and/or queries that include special characters may break in CSE-mode, try substituting the ampersand character as well. ie &quot; should be changed to &amp;quot;.
    • Roll20 have under testing(Forum) improvements to make html characters redundant
  • 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 of span{ width: 150px;}
  • Asterisks disappearing from CSS comments. examples & discussion(Forum)
    • Chris D. may have uncovered strange behavior with CSS comments using multiple asterisk characters. eg /******/
    • Scott C. notes that this may be an older bug and suggests to use # instead. eg /*######*/
  • details & summary-element styling is inconsistent between browsers/versions details(Forum) April 2021

Legacy Sheet

Bugs that only affect Legacy Character Sheets(LCS).

  • In legacy mode, the number comparison functions stop working if the number you are comparing is below zero. mention June 2021(Forum)

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 to logo2.jpg.


See Also