Skip to content

2024.1

Compare
Choose a tag to compare
@FredHappyface FredHappyface released this 07 Jan 22:41
· 15 commits to master since this release

2024.1 - 2024/01/07

  • Breaking Change to ansiTo.* functions removing wide= option

    Note:

      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 only ansiText and a fileName will result in a 49 char wide image compared to the previous 89 char wide image to match the command line behaviour.