Skip to content

Commit d5b8db6

Browse files
committed
update 1.8.2
1 parent dcac3d6 commit d5b8db6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
## ... `v1.8.2`
1818
* the client command `xulbux-help` now tells you that there's a newer version of the library available, if you're not using the latest version
1919
* added two new params to `Console.input()`:
20-
- <code>default_val: *Optional[T]* = None</code> the default value to return if the input is empty
21-
- <code>output_type: *T* = str</code> the type (*class*) to convert the input to before returning it
20+
- <code>default_val: Optional[T] = None</code> the default value to return if the input is empty
21+
- <code>output_type: type[T] = *str*</code> the type (*class*) to convert the input to before returning it
2222

2323
## 20.08.2025 `v1.8.1`
2424
* **fixed a critical bug which caused the package to not install properly and make the whole library not work**
@@ -227,7 +227,7 @@
227227
* added methods to get the width and height of the console (*in characters and lines*):<br>
228228
<code>Cmd.w() -> *int*</code> how many text characters the console is wide<br>
229229
<code>Cmd.h() -> *int*</code> how many lines the console is high<br>
230-
<code>Cmd.wh() -> *tuple[int,int]*</code> a tuple with width and height
230+
<code>Cmd.wh() -> tuple[*int*, *int*]</code> a tuple with width and height
231231
* added the method <code>split_count(*string*, *count*) -> list[*str*]</code> to `xx_string`
232232
* added doc-strings to every method in `xx_string`
233233
* updated the `Cmd.restricted_input()` method:

0 commit comments

Comments
 (0)