It would be great if Basic4android IDE has a ToDo add-on feature integrated in the menus. This feature will be visible when the IDE starts and will enumerate the job list with Id, Description, Insertion date, Completion date, Application version...etc
I still find myself trying to do this quite often even though I know it doesn't work. I suppose by definition that makes me insane, but then aren't most programmer types a little on the insane side or is it just me?
At the moment what I do to fill the gap is using an empty code module, with a todo list and bug list in comments. e.g.
B4X:
'Code module
Sub Process_Globals
End Sub
' TODO LIST:
' ##########
' [T01] (Main)(Splash) Make a timer for the writing in the splash background
' [T02] (ACTmenu) Create main menu. Load it after splash
'
' BUGS LIST:
' ##########
' [B01] (Main)(Splash) The progress bar doesn't ever fill up to 100%
' [B02]
' [B03]
'