Results 138 comments of Mark Janssen

One big issue with all these proposals (except maybe the newline escaping one) is that it makes the parsing of tasks context sensitive. You can't parse line by line anymore...

If you want the position of a task to become semantically important, this will have a big impact on parsing a todo file. If you like this approach, it already...

For line endings I would allow `\r` `\n` and `\r\n`.

BOM is really only needed for broken windows tools (such as Excel) but it would mean any todo.txt file is not a valid ASCII file anymore (even when only characters...

What I have done in simpletask seems to work well. Automatically pull the remote file every 5 minutes and when creating or updating a task, only push.

Sorry, pull every 5 minutes means check if there is a new revision and if so download it. I think atm. Todo.txt checks every time the main window is recreated....

I agree that doing an automatic pull every couple of minutes is a bit a battery drain. However it is not implemented as a service so it wont wake up...

@ConnorRigby I am sure I have data in the table (2 million records). I will get a timeout when executing the query. So I think the sqlite_ecto adapter tries to...

Change was introduced in https://github.com/splitbrain/dokuwiki/commit/8b1b81be965547272e7d20de20c2783fa59178cd

Seems the problem is cause by onStop almost immediately being called after onStart. Don't know why this happens though.