Skip to content

Commit

Permalink
rel 2023.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Dec 1, 2023
1 parent 6e36965 commit ee1ced3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).

## 2023.3 - 2023/12/01

- fix command line option "--width" type: https://github.com/FHPythonUtils/AnsiToImg/pull/13,
thank you https://github.com/haochenx

## 2023.3 - 2023/08/30

- add: `--title` option to cli. Thank you https://github.com/ilyagr
Expand Down
3 changes: 1 addition & 2 deletions documentation/reference/ansitoimg/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ Cli entry point.
#### Signature

```python
def cli():
...
def cli(): ...
```


Expand Down
15 changes: 5 additions & 10 deletions documentation/reference/ansitoimg/render.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ def ansiToHTML(
wide: bool = True,
width: int = WIDTH_DEFAULT,
title: str = TITLE,
):
...
): ...
```

#### See also
Expand Down Expand Up @@ -75,8 +74,7 @@ def ansiToHTMLRender(
theme: str | None = None,
wide: bool = True,
width: int = WIDTH_DEFAULT,
):
...
): ...
```

#### See also
Expand Down Expand Up @@ -111,8 +109,7 @@ def ansiToRender(
wide: bool = True,
width: int = WIDTH_DEFAULT,
title: str = TITLE,
):
...
): ...
```

#### See also
Expand Down Expand Up @@ -147,8 +144,7 @@ def ansiToSVG(
wide: bool = True,
width: int = WIDTH_DEFAULT,
title: str = TITLE,
):
...
): ...
```

#### See also
Expand Down Expand Up @@ -184,8 +180,7 @@ def ansiToSVGRender(
wide: bool = True,
width: int = WIDTH_DEFAULT,
title: str = TITLE,
):
...
): ...
```

#### See also
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ansitoimg"
version = "2023.3"
version = "2023.3.1"
license = "mit"
description = "Convert an ANSI string to an image. Great for adding terminal output into a readme."
authors = ["FredHappyface"]
Expand Down

0 comments on commit ee1ced3

Please sign in to comment.