A simple yet effective todo app with a cute aesthetic. Named this way as this app will help you find your 'path' to success in a 'forest' of tasks!
- Add tasks
- Add subtasks (or todo items) to the tasks
- 4 sections to add your tasks to
- A cute interface!
To install, use one of the exe installers (they are self sufficient, so you don't need qt installed to use it) in the releases page.
Ensure cmake is installed. Then, run the following:
mkdir ./build
cd ./build
cmake ../
makeAnd then in the ./build folder, you should see an executable you can run to run the program! Additionally, a .exe file is provided in the Releases.
If this does not work, ensure QT is installed. If it still doesn't work, try building it with QT creator.
If it's too complex (which it probably won't be, but you never know) here are some important words:
section: one of the 4 sections tasks are placed in (coloured for your convenience, but for developer reference here are the numbers:)
Section numbers:
0 | 1
--+--
2 | 3
task: a task (the large papery rectangles in the app). These containsubtaskssub-task(also referred to astodo): the label+checkboxes that tasks are comprised of.
So you have tasks; e.g. 'finish assignment', 'housework', etc. which you can categorise into the sections (which you might decide to be importance, whether it's for the house or for work, etc.). Then, you have subtasks (or todos); which are the things you need to do to finish the task (e.g. with 'finish assignment' you might have 'research', 'write slides', 'peer review', etc.)
More docs are in docs/DOCS.md.