- Large images seem to scale wrong, far above where it should be (potentially fixed needs more testing)
- Color buffer doesnt restore to previous state ~50% of the time (Tag ending order is not preserved)
- Finish settings tab on chatbox
- /me duplicates
- DM selector doesn't close when chatbox is closed
- The noparse tag is implemented moronicly and just sticks the text at the FRONT of the block
- The noparse tag is ignored by quick_parse
- Pretag parsing is AWEFULY implemented and doesn't match nested tags
- < is removed even if it isnt a tag start/end
- Pretags are still wonky when nested
- Height calculation is STILL broken (see notes)
- Matrix translation tags move it to the top of the screen
- Rotation is relative to start of markup
- Multiple matrices
- Add link parsing back to chatbox
- Save last 5 lines of text and upon re-opening (eg rejoin) print them in grey
- Avatar tag
- Custom font tag
- Add
<code>
tag (and re-implement lua command syntax parsing as a chat feature not an addon) - Preserve randomness across states
[11:15 AM] Q2F2: @Ghosty Potentially tracked down the issue with the Y autism
[11:16 AM] Q2F2: seems to arise from hights being calculated before being adjusted
[11:16 AM] Q2F2: this can be demonstrated with an image that changes size
[11:16 AM] Q2F2: every time a message is sent, causing height recalc
[11:16 AM] Q2F2: the image size is 'taken' as the current size of the image
[11:16 AM] Q2F2: even though it changes
[11:16 AM] Q2F2: ill demonstrate
[11:17 AM] Q2F2: https://my.mixtape.moe/owebwl.mp4
[12:23 AM] Orbitei: there is never more than ONE newline wrapped
[12:24 AM] Orbitei: across a buffer
[12:24 AM] Orbitei: because every TEXT BLOCK
[12:24 AM] Orbitei: holds its own height
[12:24 AM] Orbitei: then the buffer is calculated like this
if h > height then
height = h
end