Skip to content

Commit 3d4aaa8

Browse files
authored
Merge pull request #10 from Tim-ats-d/dev
Fix typo.
2 parents 759b8f9 + 89430a8 commit 3d4aaa8

File tree

13 files changed

+33
-98
lines changed

13 files changed

+33
-98
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
# Visual-dialog
3+
24
<p align="center">
35
<a href="#features">Features</a> •
46
<a href="#installation">Installation</a> •
@@ -10,14 +12,13 @@
1012
</p>
1113

1214
<p align="center">
13-
<img width="300" src="https://user-images.githubusercontent.com/59396366/100594532-188c6900-32fa-11eb-8372-4796f53b122f.png" alt="Visual-dialog">
14-
<br>
15-
Library to make easier dialog box in terminal.
15+
<img width="400" src="https://user-images.githubusercontent.com/59396366/100594532-188c6900-32fa-11eb-8372-4796f53b122f.png" alt="Visual-dialog">
1616
<br>
17-
This library is still under development.
18-
API can change.
17+
A library to make easier dialog box in terminal.
1918
</p>
2019

20+
This library is still under development. API can change.
21+
2122
## Features
2223

2324
📃 Automatic text scrolling.
@@ -46,7 +47,7 @@ python3 -m pip install git+git://github.com/Tim-ats-d/Visual-dialog --upgrade
4647
```sh
4748
git clone https://github.com/Tim-ats-d/Visual-dialog.git
4849
cd Visual-dialog
49-
pip install .
50+
python3 -m pip install .
5051
```
5152

5253
## Requirements

examples/confrontation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# confrontation.py
1+
# confrontation.py
22
#
3-
A concrete example exploiting the possibilities of Visual-dialog.
3+
# A concrete example exploiting the possibilities of Visual-dialog.
44

55
import curses
66

examples/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# context.py
1+
# context.py
22
#
3-
# An example of how to use a text box as a context manager.
3+
# An example of how to use a text box as a context manager.
44

55
import curses
66

examples/monologue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# monologue.py
1+
# monologue.py
22
#
3-
A simple example of how to use Visual-dialog.
3+
# A simple example of how to use Visual-dialog.
44

55
import curses
66

examples/text_attributes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# text_attributes.py
1+
# text_attributes.py
22
#
3-
# An example showing the possibilities of text formatting.
3+
# An example showing the possibilities of text formatting.
44

55
import curses
66

examples/word.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# words.py
1+
# words.py
22
#
3-
An example of using the word_by_word method from text boxes.
3+
# An example of using the word_by_word method from text boxes.
44

55
import curses
66

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
from setuptools import find_packages, setup
23

34
from visualdialog import __author__, __version__

tests/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# test.py
1+
# test.py
22
#
3-
This file contains the tests used to debug the library.
3+
# This file contains the tests used to debug the library.
44

55
import curses
66

visualdialog/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
"""
23
A library to make easier dialog box in terminal.
34
"""

visualdialog/box.py

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,6 @@
1-
# box.py
2-
#
3-
# 2020 Timéo Arnouts <[email protected]>
4-
#
5-
# This program is free software; you can redistribute it and/or modify
6-
# it under the terms of the GNU General Public License as published by
7-
# the Free Software Foundation; either version 2 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU General Public License
16-
# along with this program; if not, write to the Free Software
17-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18-
# MA 02110-1301, USA.
19-
#
1+
# box.py
202
#
3+
# 2020 Timéo Arnouts <[email protected]>
214

225
__all__ = ["BaseTextBox"]
236

0 commit comments

Comments
 (0)