Skip to content

Commit 14c84d5

Browse files
committed
version 0.2.0:
- `Splitter()` rewrite - `InputField()` rewrite - `widgets/buttons.py` module: + `Button` + `Checkbox` + `Toggle` + `Dropdown` - remove unnecessary widgets - rewrite `cmd.py` module + `WindowManager` based program + all utilities are their own `Application` instances
1 parent 22d4cff commit 14c84d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Current Progress
3636
+ [x] `Checkbox`
3737
+ [x] `Dropdown`
3838

39-
* [ ] `InputField` rewrite:
39+
* [x] `InputField` rewrite:
4040
+ [x] inherit from Label, make use of its `get_lines()` line breaking
4141
+ [x] add `bind()` method, similarly to `WindowManager`
4242
+ [x] better styling, support for syntax highlights

pytermgui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
__all__ += _inspector_all
4141
__all__ += _serializer_all
4242
__all__ += _exceptions_all
43-
__version__ = "0.1.4"
43+
__version__ = "0.2.0"
4444

4545

4646
def _macro_align(item: str) -> str:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="pytermgui",
5-
version="0.1.4",
5+
version="0.2.0",
66
include_package_data=True,
77
packages=["pytermgui", "pytermgui/widgets"],
88
license="MIT",

0 commit comments

Comments
 (0)