{"id":24328627,"url":"https://github.com/qantrex/todo-ek","last_synced_at":"2026-03-07T20:32:13.377Z","repository":{"id":272166828,"uuid":"915712944","full_name":"Qantrex/ToDo-EK","owner":"Qantrex","description":"Ek für SEW (ToDo App)","archived":false,"fork":false,"pushed_at":"2025-01-12T16:03:28.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T09:18:07.681Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Qantrex.png","metadata":{"files":{"readme":"README-dev.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-12T15:59:19.000Z","updated_at":"2025-01-12T16:03:31.000Z","dependencies_parsed_at":"2025-01-12T17:18:49.254Z","dependency_job_id":"0efafdc1-07d5-40d8-9532-bdfb0b3cf8a6","html_url":"https://github.com/Qantrex/ToDo-EK","commit_stats":null,"previous_names":["qantrex/todo-ek"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Qantrex/ToDo-EK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qantrex%2FToDo-EK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qantrex%2FToDo-EK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qantrex%2FToDo-EK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qantrex%2FToDo-EK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Qantrex","download_url":"https://codeload.github.com/Qantrex/ToDo-EK/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qantrex%2FToDo-EK/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30229744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-17T23:29:52.111Z","updated_at":"2026-03-07T20:32:13.324Z","avatar_url":"https://github.com/Qantrex.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Manager Application - Developer Guide\n\n## 🔧 Overview\n\nThe **Task Manager Application** is a Java-based project that uses **Swing** for the GUI, implements file-based persistence with `.csv`, and provides task management features such as adding, editing, deleting, and categorizing tasks. It is designed for simplicity and efficiency.\n\n---\n\n## 📂 Project Structure\n\nThe project is organized as follows:\n\n```\nsrc/\n├── Task.java          // Represents a single task\n├── TaskCategory.java  // Enum for task categories (WORK, PERSONAL, OTHER)\n├── TaskManager.java   // Handles the task list and task operations\n├── FileManager.java   // Manages saving/loading tasks to/from a CSV file\n├── TaskManagerUI.java // Swing-based GUI for the application\n└── TaskManagerApp.java// Main entry point of the application\n```\n\n---\n\n## ✨ Key Features\n\n### 1. **Task Management**\n   - Each task is represented by the `Task` class with attributes:\n     - `String title`\n     - `boolean isComplete`\n     - `TaskCategory category`\n   - Task status toggling and edits update the in-memory task list and UI.\n\n### 2. **Persistence**\n   - Tasks are saved to and loaded from a `.csv` file (`tasks.csv`).\n   - Each line in the file represents a task with the format: `title,isComplete,category`.\n   - File operations are handled by the `FileManager` class using `BufferedReader` and `BufferedWriter`.\n\n### 3. **GUI**\n   - Built using Java Swing.\n   - Features include:\n     - `JList` for displaying tasks.\n     - Buttons for Add, Edit, Delete, and Toggle Complete.\n     - Keyboard support for navigation (`Arrow Keys`) and toggling task status (`Spacebar`).\n   - Styled using a Catppuccin-inspired theme with custom colors.\n\n---\n\n## 🔧 How to Build and Run\n\n### 1. **Prerequisites**\n   - Java Development Kit (JDK) version 8 or higher.\n   - A Java IDE (e.g., IntelliJ IDEA, Eclipse) or a terminal with `javac`.\n\n### 2. **Building the Project**\n   - Clone the repository:\n     ```bash\n     git clone https://github.com/your-repo-link\n     cd task-manager\n     ```\n   - Compile the source files:\n     ```bash\n     javac src/*.java -d out\n     ```\n   - Create an executable JAR:\n     ```bash\n     jar cfe TaskManagerApp.jar TaskManagerApp -C out .\n     ```\n\n### 3. **Running the Program**\n   - Run the program with:\n     ```bash\n     java -jar TaskManagerApp.jar\n     ```\n\n---\n\n## 🖒 Testing\n\n### 1. **Manual Testing**\n   - Verify basic operations:\n     - Add, edit, delete tasks.\n     - Toggle task status.\n     - Navigation with arrow keys and spacebar.\n   - Check `.csv` file contents after closing the application.\n\n### 2. **Unit Testing**\n   - Add JUnit tests for:\n     - Task creation and status toggling.\n     - File read/write operations in `FileManager`.\n     - TaskManager methods like `addTask` and `deleteTask`.\n\n---\n\n## 🎨 Catppuccin Theme Implementation\n\n### Theme Colors:\n   - **Background**: `#1E272E`\n   - **Foreground**: `#DFE4EA`\n   - **Highlight**: `#FF9F43`\n   - **Button**: `#636E72`\n\n### Applying the Theme:\n   - Background and foreground colors are set for `JList`, buttons, and panels.\n   - Fonts are customized for a modern, aesthetic look.\n\n---\n\n## 🔗 Contributions\n\nContributions are welcome! Follow these steps:\n\n1. Fork the repository.\n2. Create a feature branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Commit your changes:\n   ```bash\n   git commit -m \"Add feature description\"\n   ```\n4. Push the branch:\n   ```bash\n   git push origin feature-name\n   ```\n5. Open a pull request.\n\n---\n\n## 🐜 License\n\nThis project is licensed under the [MIT License](LICENSE).\n\nFor more details or issues, contact [konstantin@wbauer.com](mailto:konstantin@wbauer.com).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqantrex%2Ftodo-ek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqantrex%2Ftodo-ek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqantrex%2Ftodo-ek/lists"}