2024.1
2024.1 - 2024/01/07
-
Breaking Change to
ansiTo.*
functions removingwide=
optionNote:
def ansiToSVG( ansiText: str, fileName: str, theme: str | None = None, width: int = WIDTH_DEFAULT, wide: bool = True, title: str = TITLE, ):
has been replaced by:
def ansiToSVG( ansiText: str, fileName: str, theme: str | None = None, width: int = WIDTH_DEFAULT, title: str = TITLE, ):
meaning that calling
ansiToSVG
with onlyansiText
and afileName
will result in a 49 char wide image compared to the previous 89 char wide image to match the command line behaviour.