ORANGE OS X Changelog: v0.01 @Joshisaurio_alt Initial version v0.02 @eskstu_lv Put everything into one sprite & optimisation v0.03 @_vdx Big update! Added time zone/date format changer at the top of the time and made it so there was a clearer gradient that moves when you unlock Orange OS v0.04 @Joshisaurio_alt Fixed the bug where the time does not update, and added an initial window to add buttons to it. v0.05 @eskstu_lv Added ghost effect to the format changer and made it so the arrow and the initial window don't collide v0.06 @_vdx Added get started button and login method screen, made variable naming guide
VARIABLE NAMING FOR ORANGE OS ---- THIS GUIDE ALSO APPLIES FOR BROADCASTS Name your global variables category.nameOfVariable. If the variable could be used anywhere else, name it to a general category. For example, you would name a current date variable time.currentDate instead of lockscreen.currentDate, because you could use the date in the task bar of the desktop or something else. Use camelCase when naming your variables. camelCase means instead of naming your variables LOCKSCREEN.SWIPEPOS, lockscreen.swipe, LockScreen.SWIPEPOS, or LoCKscrEeN.sWIpEpoS, name them lockscreen.swipePos.