diff --git a/README.md b/README.md index a6dfe04..d746898 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ pip install showdialog Opens GTK MessageDialog #### Args -title (`str`): Dialog caption -text (`Union[Tuple[Optional[str], bool], Optional[str]]`): Dialog primary text, str or tuple `(text, use_markup)` -sectext (`Union[Tuple[Optional[str], bool], Optional[str]]`, optional): Dialog secondary text, str or tuple. Defaults to `None`. -btns (`Gtk.ButtonsType`, optional): Dialog buttons. Defaults to `Gtk.ButtonsType.OK`. -msgtype (`Gtk.MessageType`, optional): Dialog message type. Defaults to `Gtk.MessageType.INFO`. +- title (`str`): Dialog caption +- text (`Union[Tuple[Optional[str], bool], Optional[str]]`): Dialog primary text, str or tuple `(text, use_markup)` +- sectext (`Union[Tuple[Optional[str], bool], Optional[str]]`, optional): Dialog secondary text, str or tuple. Defaults to `None`. +- btns (`Gtk.ButtonsType`, optional): Dialog buttons. Defaults to `Gtk.ButtonsType.OK`. +- msgtype (`Gtk.MessageType`, optional): Dialog message type. Defaults to `Gtk.MessageType.INFO`. #### Example: ```python diff --git a/setup.py b/setup.py index de5de0e..f756298 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'rt') as f: setuptools.setup( name='showdialog', - version='1.0.0', + version='1.0.1', author='Chechkenev Andrey (@DarkCat09)', author_email='aacd0709@mail.ru', description='Simple module for showing GTK dialog',