A SailfishOS Qt Quick master-detail todo app for educational purposes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Alexis Drai 4f85b8d669
🚧 WIP
2 years ago
docs 🚧 WIP 2 years ago
icons 🎉 2 years ago
qml 🚧 WIP 2 years ago
rpm 🎉 2 years ago
src 🚧 WIP 2 years ago
translations 💩 Write bad code that crashes then move on to another project 2 years ago
.gitattributes 🎉 2 years ago
.gitignore 🎉 2 years ago
README.md 🚧 WIP 2 years ago
oh_the_things_you_ll_do.desktop 🎉 2 years ago
oh_the_things_you_ll_do.pro 🚧 WIP 2 years ago

README.md

Oh the things you'll do

Auteur

  • Alexis Drai

Descriptif

Oh the things you'll do est une app the choses à faire. Elle affiche une liste de tasks qui appartiennent à un project.

On peut faire des opérations CRUD sur les tasks.

Un projet a un titre et des tasks.

Une task a un titre, une description optionnelle, et un niveau de priorité entre 0 et 3, 0 étant le plus critique.

classDiagram
    class Project {
        +String title
        +List<Task> tasks
    }
    class Task {
        +String title
        +String description
        +int priority
    }

    Project --> "*" Task