-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A United Standard for To-Do Lists #53
base: master
Are you sure you want to change the base?
Conversation
Thanks for the submission! I think that this would require further fleshing out before it should be accepted. For instance, I don't see any provision for subtasks. It also appears that the language used in the standard text would need some editing to match the style used in other standards. Another nice feature might be partial completion states, denoting that some task is some percentage complete, or a fractional representation of a total goal. |
I'd agree with Lyqyd, it's some nice work but does need a little more. Maybe instead of booleans you could use a number between 0 and 1, 0 being not complete, 1 being complete and decimals being partially complete. |
provided for varying levels of completion, now on to subtasks! oh boy...
The MIME should be in the |
see my comment
I've decided to just make this a basic To Do List format. This comes because I can't find a way to make subtasks without it breaking. Are subtasks THAT important? Anyhow, I've renamed it to "Basic To-Do List". |
Why not something like this for subtasks: {
{"Show off how minimalistic this looks.",1,},
{
"Find out the Doctor's name.",
{
{"Track down the Doctor", 1,},
{"Ask the Doctor what their name is", 0,},
},
},
} |
Ooh, that might work. A lot simpler then what I was originally going for when it came to subtasks. |
TDLClient Discontinuation Blurb (ignore if you're not interested, just wanted to say this)
I'm going to update the TDLViewer pastebin to the 0.3.0 TDL standard (now with subtasks!) and update the standard document. |
This may extend off of the
lua/table
format you were working on, but I just spent a night working on this and now it's finished.