I am not sure if splitting the status into multiple files is the optimal solution, e.g. the config is saved as one single file
Yeah this is not perfect.
talking of TimeLimit, I count the used times in a sqlite table which stores the time per day number (days since 1970) and relevant time slot (e.g. from 6 to 9 o clock); old entries are deleted after some time; maybe to complex for this use case, but maybe some aspects of this can be useful
I don't think that sqlite is a good option here because we try to keep the dependencys as low as possible....
Then I think putting all variables into a file (like the config file) would be a good idea
> I am not sure if splitting the status into multiple files is the optimal solution, e.g. the config is saved as one single file
> Yeah this is not perfect.
> talking of TimeLimit, I count the used times in a sqlite table which stores the time per day number (days since 1970) and relevant time slot (e.g. from 6 to 9 o clock); old entries are deleted after some time; maybe to complex for this use case, but maybe some aspects of this can be useful
> I don't think that sqlite is a good option here because we try to keep the dependencys as low as possible....
Then I think putting all variables into a file (like the config file) would be a good idea