jkuester / unlauncher

Android minimalistic launcher
https://jkuester.github.io/unlauncher/
MIT License
305 stars 47 forks source link

24-hour binary clock #225

Closed EGYT5453 closed 5 months ago

EGYT5453 commented 6 months ago

Problem?

There are only 4 "hour" bits, which is not enough for encoding 24-hour clock ( (2 ^ 4) - 1 = 15; 15 < 23)

My solution?

Add another bit, like here: A 24-hour binary clock, with 5 bits BBCLCD, CC BY-SA 4.0 https://creativecommons.org/licenses/by-sa/4.0, via Wikimedia Commons

khwolf commented 6 months ago

Setting time format to 24 hours should work...

khwolf commented 6 months ago

... but does not. Sorry and thanks for noticing! Fixed with #229