Skip to content

Commit 7810ee5

Browse files
Todo App (CLI) v0.2.1
1 parent 8181f57 commit 7810ee5

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2024, A.A. Suvorov
3+
Copyright (c) 2024-2025, A.A. Suvorov
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Console ToDo app <sup>v0.2.0</sup>
1+
# Console TODo App <sup>v0.2.1</sup>
22

33
Console TODO app.
44

55
---
66

77
## Other ToDO apps:
88

9-
- [Desktop ToDo app](https://github.com/smartlegionlab/todo_app_desktop)
10-
- [Telegram Bot ToDo app](https://github.com/smartlegionlab/todo_app_tg_bot) | [Use](https://t.me/smarttodoappbot)
11-
- [Web ToDo app](https://github.com/smartlegionlab/todo_app_web_django)
9+
- [Desktop ToDo app](https://github.com/smartlegionlab/smart-todo-app-desktop)
10+
- [Telegram Bot ToDo app](https://github.com/smartlegionlab/todo-app-tg-bot) | [Use](https://t.me/smarttodoappbot)
11+
- [Web ToDo app](https://github.com/smartlegionlab/todo-app-django)
1212

1313
---
1414

@@ -37,7 +37,7 @@ Console TODO app.
3737

3838
## Images:
3939

40-
![logo](https://github.com/smartlegionlab/todo_app_cli/raw/master/data/images/todo_app_cli.png)
40+
![logo](https://github.com/smartlegionlab/todo-app-cli/raw/master/data/images/todo_app_cli.png)
4141

4242
---
4343

@@ -60,7 +60,7 @@ Console TODO app.
6060
--------------------------------------------------------
6161
Licensed under the terms of the BSD 3-Clause License
6262
(see LICENSE for details).
63-
Copyright © 2024, A.A. Suvorov
63+
Copyright © 2024-2025, A.A. Suvorov
6464
All rights reserved.
6565
--------------------------------------------------------
6666

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/app_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/
@@ -11,5 +11,5 @@
1111
class Config:
1212
name = 'Console ToDO App'
1313
url = 'https://github.com/smartlegionlab/'
14-
copyright_ = 'Copyright © 2024, A.A. Suvorov'
14+
copyright_ = 'Copyright © 2024-2025, A.A. Suvorov'
1515
help_url = 'https://github.com/smartlegionlab/todo_app_cli/'

smartlib/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

smartlib/printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2024, A.A. Suvorov
4+
# Copyright © 2024-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab/

0 commit comments

Comments
 (0)