Compare commits

3 Commits
v1.0 ... master

Author SHA1 Message Date
Sem van der Hoeven
9323c781b9 edit line fix #1 2021-05-12 11:22:05 +02:00
Sem van der Hoeven
aabaf72e46 edit readme 2021-05-12 11:21:27 +02:00
Sem van der Hoeven
022f19a459 [EDIT] add line to readme 2021-03-10 22:01:06 +01:00
2 changed files with 4 additions and 2 deletions

View File

@@ -15,12 +15,13 @@ by Sem van der Hoeven
This is a project management tool straight from your terminal!
It is written in python using the [curses library](https://docs.python.org/3/library/curses.html).
It gives a neat presentation of all your projects, which you can assign tasks to, which all have a unique status and description. This gives you an overview of the project's progress at a glance.
It shows you a neat presentation of all your projects, which you can assign tasks to, which all have a unique status and description. This gives you an overview of the project's progress at a glance.
# Installation
### requirements:
- python 3.x
- curses (install with `pip install windows-curses`)
Download the file from the [releases page](https://github.com/SemvdH/terminal-project-management/releases) and run `python tpm.py`

3
tpm.py
View File

@@ -22,7 +22,6 @@ menu_width = 27
controls_lines = 9
editing = False
STATUS_DONE = WHITE_GREEN
STATUS_WORKING = WHITE_CYAN
STATUS_IDLE = WHITE_MAGENTA
@@ -281,6 +280,8 @@ def create_task(projects: list,project_index: int, stdscr):
window.refresh()
textpad = Textbox(scr2, insert_mode=True)
task_name = textpad.edit()
task_name = task_name[:-1]