debian: moved note about lack of sync support to README.Debian
[barry.git] / KnownBugs
blob024a085617fe323580495b359f5cf81944f1eec6
1 No support for BlackBerry Z10 and newer devices
2 -----------------------------------------------
3         I don't have one of these devices, and from what I understand,
4         the protocol is completely different.  User reports
5         would be appreciated.
8 Tasks database self-corrupts on many devices
9 --------------------------------------------
10         If you extract a Tasks record, and then write it back via
11         SetRecordByIndex(), on many devices that I tested, it ends up
12         corrupting the record on the device, and the GUI on the device
13         appears messed up.  (It shows the first few fields twice)
14         Such a corrupt record also loses the due date.
16         This appears to be a bug in the device firmware.
18         The workaround, when working with the Tasks database, is to
19         first DeleteByIndex() and then AddRecord() via the Desktop mode class,
20         using the same record ID.  This works, but is unfortunately
21         cumbersome.
23         See the Desktop GUI and the opensync plugins for examples of this
24         workaround.
26         Ideally, we should test a Tasks sync on Windows, and see how
27         the Windows software handles this.  There may be some protocol
28         changes that will be needed in future Barry versions.
31 Dates before 2007/01/01 use modern DST rules
32 --------------------------------------------
33         This is a device firmware issue.  Most devices that I've tested
34         use modern DST rules (i.e. DST begins second Sunday in March)
35         for all dates, even though these new rules only came into effect
36         in 2007.  So dates in 2006 and earlier have a window of innaccuracy,
37         since dates are given to Barry in UTC, converted to time_t, and most
38         computer systems will then convert that time_t to local time using
39         the old DST rules, and be an hour off.
41         Barry does nothing to workaround this bug, since most dates
42         are used in Calendar and Task apps, which usually only matter
43         for modern dates.  In other words, you use the Task and Calendar
44         apps to remind yourself of future appointments, not the past.
45         This appears to be the logic that RIM used as well, since the
46         device seems to only have one DST rule, and doesn't care about
47         historical rules.