summaryrefslogtreecommitdiffstats
path: root/DOCS/interface-changes/escape-ass.txt
Commit message (Collapse)AuthorAgeFilesLines
* Release 0.38.0v0.38.0release/0.38sfan52024-04-171-1/+0
|
* command: add escape-assGuido Cella2024-03-211-0/+1
This adds a command to escape ASS tags to remove code duplication between sub/osd_libass.c, console.lua, osc.lua, stats.lua and any user script that calls mp.create_osd_overlay(). A command is used instead of scripting functions so that all clients can use this and not just use Lua and JS ones. osd_mangle_ass() also interprets osd-sym-cc and osd-ass-cc/{0,1}, but since they use invalid UTF-8 characters there is no risk of escape-ass users using them by accident, like with any OSD message. Always replacing \n with \\N in mangle_ass() even when it is not called by escape-ass doesn't seem to cause any issue, but I made it conditional anyway to avoid changing how all OSD messages are treated unnecessarily.