With the latest connectiq 1.1.3 I have:
var now = Time.now();
var info = Greg.info(now, Time.FORMAT_SHORT);
Sys.println("Month (SHORT): " + info.month);
Sys.println("Day of week (SHORT): " + info.day_of_week);
info = Greg.info(now, Time.FORMAT_MEDIUM);
Sys.println("Month (MEDIUM): " + info.month);
Sys.println("Day of week (MEDIUM): " + info.day_of_week);
info = Greg.info(now, Time.FORMAT_LONG);
Sys.println("Month (LONG): " + info.month);
Sys.println("Day of week (LONG): " + info.day_of_week);
giving:
Month (SHORT): 8
Day of week (SHORT): 4
Month (MEDIUM): Aug
Day of week (MEDIUM): Wed
Month (LONG): Aug
Day of week (LONG): Wed
Shouldn't FORMAT_LONG give August and Wednesday? If not what is the difference between medium and long? Or is this a bug?