+3
Completed

Display time and date format

pjw65 6 years ago updated by James 6 years ago 5

I miss the Date format: dd.mm.yyyy

I also miss the 24h time format HH:MM:SS


Or use the local settings toLocaleString/toLocaleDateString/toLocaleTimeString in Javascript:


d = new Date();
d.setUTCFullYear(2004);
d.setUTCMonth(1);
d.setUTCDate(29);
d.setUTCHours(2);
d.setUTCMinutes(45);
d.setUTCSeconds(26);
console.log(d);                        // -> Sat Feb 28 2004 23:45:26 GMT-0300 (BRT)
console.log(d.toLocaleString());       // -> Sat Feb 28 23:45:26 2004
console.log(d.toLocaleDateString());   // -> 02/28/2004
console.log(d.toLocaleTimeString());   // -> 23:45:26

My local settings gives the following output:

"2004-02-29T02:45:26.660Z"
29.2.2004, 03:45:26
29.2.2004
03:45:26


Yes it did, thank you very much.


Some Settings are still in AM/PM Format (Token Created/Expires, Dropboxes Nighttime Sleep Start/End, Dropboxes Deep Sleep Start/End), but that's not important for me.

These should be changed now.

Thanks, I like it.

Please add it also to SLEEPING :



Completed

24 hour time format and decimal separated dates have been added as an option in settings.  Please let me know if you see any issues.

I highly request 24H time display! :)

Should be an easy feature i guess?