This project was developed as part of a university project for the Multimedia Technologies course.
The Task Management System is a powerful and intuitive Java application designed to streamline your task organization. With features like task categorization, reminders, priorities, and status tracking, this tool helps you managing your daily responsibilities.
- Create, update, and delete tasks with ease.
- Assign tasks to categories and priorities.
- Track deadlines and statuses for better organization.
- Clear reminders automatically when tasks are marked "Completed."
- Manage task categories:
- Add new categories.
- Rename existing categories.
- Delete categories (removes associated tasks as well).
- Customize priorities for tasks:
- Add or rename priority levels.
- Delete priorities (tasks revert to "Default").
- Add and manage reminders for tasks:
- Options for reminders:
One day before,One week before,One month before, or custom dates. - Automatically delete reminders for completed tasks.
- Prevent reminders for tasks marked "Completed."
- Options for reminders:
- Search for tasks by title, category, or priority.
- View task summaries:
- Total tasks.
- Completed tasks.
- Delayed tasks.
- Tasks due within a week.
- Automatically saves and retrieves data from JSON files located in the
<medialab/>folder. - Ensures the application state is preserved across sessions.
Ensure you have:
- JDK 17 or later installed.
- JavaFX 17 SDK downloaded and configured.
- Clone the Repository
git clone https://github.com/ntua-el20441/Task-Management-System.git cd Task-Management-System javac --module-path <path-to-javafx-sdk>/lib --add-modules javafx.controls -cp "lib/*" -d bin src/models/*.java src/application/*.java src/storage/*.java src/components/*.java java --module-path <path-to-javafx-sdk>/lib --add-modules javafx.controls -cp "bin:lib/*" application.Main ./run.sh