Updated ChangeLog
[barry.git] / ChangeLog
blobb16bed7525bf4f69c0e1d3cfd8b12993d139e6dd
1 Release: version 0.17 - 2010/01/??
2 ------------------------------------------------------------------------------
3 2010/09/30
4         - merged build fixes from Toby Gray
5         - merged UnroutableReadError exception patch from Toby Gray
6 2010/09/21
7         - merged constant and timeout fixes from Toby Gray
8         - lib: added belt-and-suspenders fix to usb Read functions
9                 This is to avoid the possibility of inappropriate asserts
10 2010/09/20
11         - removed ppa_build.sh per request by Martin Owens
12         - debian: added autopoint to build deps
13                 The new Debian Squeeze and Ubuntu Maverick have split out
14                 the autopoint script from the gettext package.  On systems
15                 with gettext 0.18 or newer, we require autopoint, and hope
16                 that autopoint depends on gettext.
17 2010/09/19
18         - further split up the m4 directories to make the submodules
19                 yet more independent
20         - debian: added back the autoreconf targets, but not cleanup targets
21 2010/09/18
22         - debian: remove all autoreconf and cleanup targets
23                 Having the debian/rules files try to manage their own
24                 autoreconf is too much of a headache.  Binary packages
25                 should start with a valid autoconf and gettext / autopoint
26                 system already in place.
27                 This patch removes any temptation to believe otherwise.
28                 If you have been building source packages from git
29                 already, just add a call to "./buildgen.sh" before your
30                 debian binary build.
31         - maint: overhaul of release / test build scripts
32                 Made scripts configurable by user, in case others have
33                 chroot build systems of their own.
34 2010/09/16
35         - debian: updated rules to allow for building with an external debian/
36         - applied Martin Owens' patch to add a debian directory to
37                 the opensync-plugin-0.4x plugin
38         - debian: moved 0.22 plugin packaging to its own directory
39 2010/09/15
40         - set AC_CONFIG_AUX_DIR to [.] instead of parent directory, to make
41                 the submodules more independent
42         - lib: fixed Makefile.am to install semaphore.h and scoped_lock.h
43                 This is needed for the raw channel code.
44 2010/09/11
45         - added -A option to bjavaloader save
46 2010/09/07
47         - added hardware contribution section to AUTHORS
48 2010/09/03
49         - merged Toby Gray's and Adrian Taylor's RAW channel support code
50         - updated debian binary package with brawchannel and examples and
51                 ppp chat scripts as docs
52         - updated rpm barry.spec with brawchannel and ppp README
53 2010/08/31
54         - os4x: optimized dirty flag clearing
55                 Clearing the dirty flags on newly updated records requires
56                 a reconnect, but it only requires one reconnect, and no
57                 reconnect it needed if nothing is written to the device,
58                 so skip the reconnect whenever possible, which makes syncing
59                 much faster
60 2010/08/30
61         - lib: use thread-safe getpwuid_r() in config file code
62 2010/08/18
63         - fixed build bug, where libbarrysync was still used even if glib2
64                 was not found on the system.  Thanks to Eric Arseneau
65                 for finding this during his Mac build testing.
66         - added LTLIBINTL and LTLIBICONV to tools/Makefile.am for systems
67                 that have separate libraries for these features, such as
68                 the Mac
69         - buildgen.sh calls libtoolize and glibtoolize now (Mac support)
70 2010/08/15
71         - lib: fixed bug in ISO timezone detection... must be in [-+]HH[:]MM
72                 format, with 2 digits for the hours and minutes
73 2010/08/12
74         - lib: added better ISO timestamp support... Now handles timestamps
75                 with dashes and colons, including timestamps with their
76                 own timezone offsets
77         - lib: fixed vsnprintf() error check bug in log.cc... and added
78                 code to allocate memory if message is too long for
79                 static buffer
80 2010/07/29
81         - applied patch from Martin Owens fixing version dependencies in
82                 debian binary packages
83 2010/07/22
84         - gettext: removed autogenerated files and generate them in buildgen.sh
85                 Not sure if the version will matter, but since gettext 0.17
86                 is the only gettext version in common use (Ubuntu 10.04
87                 doesn't even have 0.18 yet) we'll stick with it for now.
88                 Hopefully 0.18's autopoint is smart enough to update things
89                 automatically.  I don't have 0.18 to test with.
90 2010/07/21
91         - applied Nicolas Vivien's compile fix and French translation patches
92 2010/07/20
93         - sync: added 1 second wait during Reconnect() to let firmware settle
94                 This seems to help prevent the firmware hang fixed yesterday,
95                 which ultimately speeds up the whole sync
96         - os4x: reverted run-as-process undo commit... now runs as process
97                 again... I believe the timeout was the firmware issue, not
98                 an opensync issue
99 2010/07/19
100         - lib: added ability to do a USB ClearHalt() from socket level
101         - lib: added ability to override USB default timeout from controller
102         - sync: added workarounds for firmware hang issue
103                 This workaround overrides the timeout due to a firmware
104                 issue: sometimes the firmware will hang during a plugin
105                 Reconnect(), during the shutdown stage when the plugin
106                 attempts to update the device's dirty flags.  When the
107                 device hangs like this, it fails to respond to a
108                 Desktop::Open().  To work around this, we set the default
109                 timeout to 15 seconds so that we find this failure early
110                 enough to fix it within opensync's 30 second timeout.
111                 Then if we get such a timeout, we do the Reconnect again and
112                 hope for the best... this often fixes it.
113 2010/07/17
114         - lib: added tm_to_iso() to tzwrapper functions
115         - lib: vbase now has default implementation of vTimeConverter (was
116                 vTimeZone) with a simpler API, based on TzWrapper underneath
117         - lib: pulled in os4x vbase code, so both plugins are using one
118                 set of vformat code
119         - lib: added vtodo and vjournal vformat support from os4x plugin
120         - deb: added new libbarrysync library to debian binary package
121         - tools: added -V option to btool, to output in the new MIME vformat
122                 mode for records that are supported
123 2010/07/16
124         - lib: added BARRY_GCC_FORMAT_CHECK() for printf() style arg checking
125         - lib: added C-style BarryLogf() function for internal use
126         - libsync: moved vformat-related code from os22 to library
127         - lib: included tzwrapper in Barry and Barrified the namespace
128 2010/07/13
129         - os4x: undo run-as-process setting, since some tests indicate that
130                 sync will timeout
131 2010/07/10
132         - ppp: copied barry-sprint to barry-telus, which also works
133                 Thanks to Matt McGirr who confirmed it works with Telus
134         - os4x: run plugin as process... other opensync plugins seem to run
135                 better with this, and it seems like a good idea to isolate
136                 plugins as much as possible
137 2010/07/08
138         - fixed bug in both opensync plugins where they would attempt to
139                 access a database, even if it was disabled in the config.
140                 Thanks to R. Brent Clements for reporting this bug.
141 2010/06/26
142         - added Pete Zaitcev's usbmon-6, with some minor changes to
143                 remove root requirements and pretty up the hex dump format
144 2010/06/12
145         - applied chat scripts for Orange Spain from Adrian Gibanel
146         - updated debian and rpm packages with new chatscripts
147 2010/06/04
148         - os22: ported Nicolas Vivien's multi-calendar patch to 0.22 plugin
149                 From commit: eb4d68df8d06f734e79e13ea05f7755aa5b0a5f3
150                 This patch is untested with multiple calendars as I don't
151                 have a device for such testing, but is identical to
152                 the 0.4x plugin code.
153 2010/06/03
154         - doc: added wireshark USB capture method to USB-capture.txt
155         - lib: added GetStore() access function to RecordParser template class
156         - lib: Improved the record class operator<() member functions, basing
157                 the sort order on multiple fields in many cases.  This should
158                 produce a fairly stable sort for a given data set, regardless
159                 of RecordId.  This should be useful for scripted tests.
160         - tools: Added -I command line option to make use of new sort order
161         - man: Updated btool manpage
162 2010/05/29
163         - applied 3 patches from Nicolas Vivien that add:
164                 - Calendar - All parser
165                 - special handling for syncing of multiple calendars
166                 - compiler fixes
167         - lib: updated src/s11n-boost.h with new CalendarID and CalendarAll
168         - lib: refactored Calendar*::Dump() functions
169                 note: this introduces a change in my earlier policy that
170                 avoided virtual functions in the record classes...
171                 the duplicate code overhead is just too heavy, and
172                 I think I was wrong to be afraid of virtual functions
173                 in containers anyway... vive la virtual! :-)
174 2010/05/28
175         - rpm: added Fedora 13 support, and cleaned up conditionals
176         - udev: fixed permissions issue, so device shows up in lsusb
177                 output even for users not in plugdev
178         - applied two patches from Nicolas Vivien, one fixing a precision
179                 bug in BuildField() and another adding a 64bit BuildField()
180 2010/05/13
181         - lib: fixed compile error in j_message.h
182                 Thanks to Raymond Blostein for the bug report and the
183                 link to the explanation of the C++ standard change:
184                 https://bugs.launchpad.net/inkscape/+bug/522327/comments/1
185 2010/05/11
186         - ppp: cleaned up ppp options files and put notes in README
187                 Thanks to feedback from Matt Machado for Rogers specific
188                 notes, and for recommendation to have one copy of
189                 comments for the PPP options.
190 2010/04/19
191         - lib: added LDIF mapping support for Contact::Image fields
192         - lib: fixed signed extension bug in base64 encoder
193         - sync: ported Photo support from 0.4x plugin to 0.22 plugin
194 2010/03/30
195         - updated Fedora and Mandriva maintainer info
196 2010/03/18
197         - added chat script for FIDO from Sujay D'Souza
198 2010/03/11
199         - added Probe::Find(), for simple searching of probe results
200 2010/02/09
201         - added message during restore, to let user know that the erased
202                 database was restored (requested by Pierre Pietri)
203 2010/01/29
204         - added product ID 8001 (Pearl Flip) to udev rules
205 2010/01/26
206         - examples: added dbdump.cc example for extracting database data
207         - bumped the copyright dates for 2010
208         - added F12 build target to maintainer scripts
209         - added missing BXEXPORT to src/configfile.h that shows up
210                 on ubuntu 7.10
211         - added headers to sources list in src/Makefile.am, since header
212                 changes didn't always cause a library rebuild
213 2010/01/15
214         - updated barry.spec to install 69-blackberry.rules on Fedora 12
215                 note that this further breaks the opensuse build, but
216                 that is not currently supported anyway, due to lack of time
217         - doc: added notes on tools to use for building RPMs in homedir
218 2010/01/04
219         - udev: added 69-blackberry.rules for Fedora 12 systems. Thanks
220                 to Nathanael Noblet (list email dated 2009/12/30)
221                 for hunting this down!
222 2009/12/15
223         - lib: added operator==() to ProbeResult, and operator!= to Pin
224         - os22: fixed bug while loading opensync config file (may not load
225                 the pin number correctly, or may rely on luck)
226         - added 'addmemo' example, to test newline behaviour
227         - lib: Memo::Dump() now translates \r chars into prettier output
228                 Requested by Michael Brown
229         - doc: added some notes on how to tether via Bluetooth
230 2009/12/04
231         - tools: added libbarry to bdptest build (needed on opensuse?)
232 2009/12/03
233         - lib: added GetKey/SetKey support in GlobalConfigFile
234 2009/12/02
235         - gettextize BarryBackup by Nicolas VIVIEN
236         - lib: added support for a global config file
237                 Barry::ConfigFile now supports a per-device configuration (as
238                 usual) as well as a global config file.  Both are loaded
239                 by default, but they can be saved and loaded separately.
240                 This new global config file is for global defaults,
241                 preferences, etc.
242         - lib: added IsVerbose() API call
243         - lib: added VerboseLogging setting to global config
244         - lib: made Probe results more storage friendly
245 2009/11/27
246         - made Barry::Init() safe to be called multiple times
247         - added Barry::Verbose() for controlling debug output on the fly
248 2009/11/26
249         - moved the Pin and ConfigFile classes from gui/ to the library
250         - Probe now loads ConfigFile's device name if available
251 2009/11/24
252         - added '-P' password option to upldif tool, and updated manpage
253                 including applying Nicolas Vivien's bugfix patch
254         - applied Nicolas Vivien's "NOT_ENOUGH_MEMORY" javaloader patch
255         - added gettext support to RPM and DEB packages
256 2009/11/19  
257         - gettextize by Nicolas VIVIEN
258 2009/10/02
259         - doc: added list of reasons why to submit patches, and notes
260                 on how to create a forked tree on repo.or.cz
261 2009/10/01
262         - removed redundant library dependencies from autoconf build
263         - version bump:
264                 - configure.ac
265                 - src/Makefile.am
266                 - src/version.cc
267                 - gui/src/BackupWindow.cc
268                 - Doxyfile
269                 - rpm/barry.spec
270                 - debian/changelog
271                 - opensync-plugin/src/barry_sync.cc
272                 - opensync-plugin-0.4x/src/barry_sync.cc
274 Release: version 0.16 - 2009/10/01
275 ------------------------------------------------------------------------------
276 2009/09/30
277         - added PNG generated icon based on SVG source files
278         - added barry logo to barrybackup-gui Debian and RPM packages
279         - applied new barry logo and icon from Martin Owens
280         - gui: use short barry URL in About box
281         - gui: fixed bug where actual finished records were overwritten
282                 with the starting total... don't overwrite the actual
283                 with the estimated
284         - gui: added thread state, to determine what operation finished
285                 Also improved status message, specifying exact operation
286         - gui: added code to check that actual # of backed up records
287                 matches the total number reported by the device, and
288                 display a warning to the user if they don't match
289         - www: added known issue about international chars and protocol change
290 2009/09/29
291         - os4x plugin: updated for the pkgconfig libopensync -> libopensync1
292                 rename
293         - added bjdwp.1 manpage
294         - added bjdwp and manpage to rpm and debian packages
295         - added bash and zsh completion scripts to debian & rpm packages
296 2009/09/26
297         - gui: fixed status text during restore (said "Backup" instead
298                 of "Restore")
299 2009/09/24
300         - updated various URLs to point to netdirect.ca
301         - lib: moved vSmartPtr<> from opensync plugin code to main library
302         - lib: fixed memory leaks in vSmartPtr (doh!)
303         - lib: added vLateSmartPtr<> for setting of FreeFunc after construction
304 2009/09/18
305         - updated opensync 0.4x plugin to compile against latest SVN
306                 - removed unneeded osync_error_unref() from get_sync_info()
307                 - updated plugin to support the new OSyncError** arguments
308                         scattered all over the code
309 2009/09/17
310         - added IRC info to contact www doc page
311 2009/09/16
312         - changed all the ancient SYSFS{} keynames into ATTRS{} keynames
313                 in all udev rules files
314         - added udev rule for BB Tour Product ID 8007
315                 Thanks to Theodore Charles III for testing and suggested
316                 rules.
317         - removed obsolete duplicate SUBSYSTEM keynames from udev rules
318         - created new cross-distro udev rules set, with documentation
319                 in udev/README
320         - updated deb and rpm package rules with new udev rules set
321                 note: opensuse needs work
322 2009/09/15
323         - merged Josh Kropf's brimtrans fix: 59abfa6959eb350221fa56a03ba5816
324         - applied bash-completion scripts by Ryan Li
325 2009/09/14
326         - merged Josh Kropf's compile fixes
327         - applied zsh missing bracket patch from Ryan Li
328 2009/09/11
329         - merged Nicolas Vivien's debug parser lib updates
330                 with change:
331                 - fixed API spelling typo and capitalization
332         - added firmware upgrade to TODO list
333         - added checks for pthread function errors in Thread class
334         - moved #defines out of public dp_codinfo.h into dp_codinfo.cc
335                 Applications probably don't care about these.
336         - changed string arguments to const references
337         - added STL-style typedefs to list classes to make looping easier
338                 and easier to change types if needed
339         - added libbarrydp as dependency for libbarryjdwp
340         - replaced direct cout usage with dout() in dp_codinfo.cc
341                 - added Barry::Init to bdptest.cc, defaulting to verbose
342                   mode, to keep the same behaviour as expected
343         - use more generic std::istream in dp_codinfo, instead of ifstream
344         - use references with iterator looping to avoid copies, and
345                 use const where appropriate
346         - added typedef for j_server.cc's ConsoleCallbackType
347         - tightened up member variable init and cleanup in JDWServer class
348         - added exceptions in JDWServer class where marked TODO
349         - made setup sequence dependent on previous steps, in acceptThread,
350                 so that the logic doesn't assume success where it could
351                 have failed
352 2009/09/10
353         - added copyright notices to all source files in bjdwp/
354                 This is based on the initial README included in
355                 the patches from Nicolas Vivien stating that bjdwp
356                 was under the GPL.
357         - added GPL license as file bjdwp/COPYING, since bjdwp is
358                 somewhat standalone, like the plugins and the gui
359         - bjdwp: removed jdwplog() in favour of identical barryverbose()
360         - bjdwp: moved into main tree from bjdwp/ and created two new
361                 libraries: libbarrydp and libbarryjdwp
362 2009/09/09
363         - fixed potential loss of serial data during PPP init
364                 when seding the AT test, usually the OK response is
365                 sent to the callback, but if the expected non-serial
366                 response doesn't appear, the OK is lost... this fix
367                 passes the OK to the callback, which fixes some chatscript
368                 behaviour
369         - gui: updated web documentation and screenshots
370 2009/09/08
371         - changed wording on GUI reload button to clarify what it does
372         - added documentation on how to change the theme for GTK+ apps
373                 when not using the Gnome desktop environment
374         - fixed broken links in web doc generation
375 2009/09/05
376         - applied backup GUI patches from Ryan Li:
377                 - resolved crash while disconnecting from no devices
378                 - added confirmation dialog before quitting
379         - gui: handled case where the user exits via window manager Close
380                 button
381                 - also refactored 'working' confirmation logic
382 2009/09/04
383         - fixed socket RawReceive verbose log message
384                 when reading from the default queue, the queue knows the
385                 endpoint, not the socket object
386 2009/09/03
387         - added version output when -v is used in pppob
388 2009/09/02
389         - fixed syncing of 8 contact phone numbers. Reported by
390                 Ian B. MacDonald, 2009/08/22
391         - ported above syncing fix to opensync 0.4x plugin
392         - applied Martin Owens' Barry logos 'patch'
393 2009/09/01
394         - applied chatscript patch from Andrew Nording
395                 Sourceforge tracker #2848549
396         - added KPN chatscripts to DEB and RPM binary packages
397         - added KPN to script list in doc/www/modem.php
398         - pulled from Nicolas Vivien: a909925ef6bf3d75b1597a9ddd16f52201690cbb
399                 Fixes for library and bjdwp documentation
400         - moved bjdwp/doc/* to doc/bjdwp/ to keep docs in one spot
401 2009/08/31
402         - pulled from Nicolas Vivien's repo.or.cz repo: bjvmdebug support
403                 With rebase changes and fixes to library.
404                 Fixes to library:
405                 - fixed buffer size checks in m_jvmdebug.cc
406                 - used #defines instead of hard coded numbers where possible
407                 - added FIXME to tidy up the Unknowns in the API
408                 - commented out Mode::Close(): not convinced that applications
409                         should have to worry about socket-level details
410                 - added #define for JVM STOP command
411                 - removed unused Socket::PacketJVM() functions
412                 - made sizeof check in JVMPacket::Size() more specific
413                 Rebase changes:
414                 - removed executable chmod bits from BarryDemo java samples
415                 - removed copyrighted Sun documentation from bjdwp/doc/
416         - fixed longstanding buffer size check bug in CheckSize()
417         - updated AUTHORS
418         - applied Ryan Li's latest threaded GUI patch (2009/08/25 email)
419                 - gui: added a wrapper around pStatusbar->push() to avoid
420                         the never ending push syndrome
421         - gui: added PIN to the "please name new device" dialog
422         - gui: added statusbar workaround: normally the statusbar shows
423                 Ready after initialization, but since the initial Scan()
424                 happens right away, and the statusbar doesn't seem to
425                 update the screen until the handler is finished,
426                 we update the status bar during init instead
427 2009/08/30
428         - applied Martin Owens' ppa_build.sh patch
429         - added version output when -v is used in btool
430         - changed USB verbose bus tree dump (i.e. btool -v) so the
431                 hex/decimal values look more like lsusb -v output,
432                 for ease of debugging
433 2009/08/29
434         - version bump:
435                 - configure.ac
436                 - src/Makefile.am
437                 - src/version.cc
438                 - gui/src/BackupWindow.cc
439                 - Doxyfile
440                 - rpm/barry.spec
441                 - debian/changelog
442                 - opensync-plugin/src/barry_sync.cc
443                 - opensync-plugin-0.4x/src/barry_sync.cc
445 Release: version 0.15 - 2009/08/28
446 ------------------------------------------------------------------------------
447 2009/08/28
448         - added binary build for Ubuntu 9.04 to maintainer scripts
449 2009/08/27
450         - added binary build for Fedora 11 to maintainer scripts
451 2009/08/21
452         - updated www documentation for upcoming release
453         - applied Nicolas Vivien's phone duplication patch (opensync 0.4x)
454         - fixed missing conflict check in vcard code in opensync 0.4x plugin
455         - backported new TYPE parsing code from opensync-0.4x plugin to
456                 old opensync 0.22 plugin
457         - added X-EVOLUTION-UI-SLOT support in both sync plugins to retain
458                 phone number order
459 2009/08/17
460         - added pin and password command line support to bfuse
461         - updated bfuse man page
462 2009/07/29
463         - added border to barrybackup doc images
464 2009/07/28
465         - updated license and URL in barry.spec
466         - updated barrybackup Credits dialog to reference AUTHORS file
467         - updated barrybackup.1 man page
468         - updated doc/www scripts to generate more dynamic pages,
469                 so subheaders are not hard coded... this helps support
470                 updating the new NetDirect website
471         - commented out out-of-date docs in hacking.php
472         - marked milestone 4 complete (javaloader)
473         - linked device compatibility list from index.php
474 2009/07/10
475         - changed pppob to report if Serial was fallback or command line
476         - started device compatibility list in web docs
477 2009/07/07
478         - applied Ryan Li's GUI enhancement patches, which let the user
479                 switch devices without restarting, with fixes:
480                 - reorganized BackupWindow.glade for better spacing
481                         - fixed width issue (main window was set to 275
482                           width, which made things too narrow on Debian
483                           Lenny
484                         - moved buttons beside the drop down box, to
485                           mimic old GUI behaviour
486                         - added space around the middle controls, but
487                           not around the menu bar or status bar, which
488                           should be right against the outer window.
489                 - renamed m_device_num to m_device_count for clarity
490                 - changed m_device_count to unsigned int to fix compiler
491                   warnings
492                 - removed gtkmm call to unset_model()
493                   The function unset_model() is only available in gtkmm
494                   2.16, and Debian Lenny only has 2.12, and won't compile.
495                   Since set_model() automatically does the unset for us,
496                   just reorganize the calls so Lenny is supported.
497 2009/07/06
498         - applied Ryan Li's SMS clarification patch
499 2009/07/02
500         - added Martin Owens' new Ubuntu PPA link to docs
501         - added DEPUTY documentation and updated AUTHORS
502 2009/06/30
503         - documentation updates
504                 - added SMS to list of parsers in documentation
505                 - updated sync notes for Fedora 9 and 10 in documentation
506                 - removed Martin Owens' PPA binary package link, since
507                         I can't find the binaries anymore
508         - reverted commit 2d0e60d1: put hal fdi files back
509         - updated HAL FDI files for Fedora 11
510                 - duplicated directory hierarchy under hal
511                 - added 19-blackberry-acl.fdi to add the access_control
512                         capability to blackberry devices when they are
513                         plugged in.  As long as this file is under
514                         the 10osvendor directory, then
515                         20-acl-management.fdi runs after it, adding
516                         the hal-acl-tool callout, which does the low
517                         level getfacl/setfacl work on the /dev/bus/usb/*/*
518                         device file.
519                 related thread:
520         http://lists.freedesktop.org/archives/devkit-devel/2009-June/000247.html
521         - changed hal fdi policy to use "pda" instead of "scanner"
522         - applied Ryan Li's 7-bit GSM conversion patch for SMS records
523         - applied Ryan Li's barrybackup patch: can now select backup path
524 2009/06/26
525         - fixed install location of hal fdi files in debian and rpm
526                 HAL reserves /usr/share/hal/fdi/information/10freedesktop
527                 for files that the project itself distributes, so
528                 we get to use 20thirdparty.
529 2009/06/24
530         - cleaning up autoconf warnings on Fedora 11
531         - changed buildgen.sh to run libtoolize first for all subprojects,
532                 otherwise, a later project's run may copy files into ../m4
533                 after having created configure for a previous project.
534                 This would cause a makefile discrepency during the build
535                 on some systems (Fedora 11), and cause configure to be
536                 incorrectly regenerated mid-build, due to timestamps.
537 2009/06/21
538         - updated dependencies documentation page
539 2009/06/20
540         - added BadPacket exception, for socket errors that need to meddle
541                 with the response code
542         - added special case for JavaLoader's Goodbye packet
543                 On older devices, such as the 7750 and 7130, they respond
544                 with a NOT_SUPPORTED error instead of an ACK, for Goodbye
545                 packet commands.  This is seen in Windows traffic as well,
546                 so should not be considered an error.  Thanks to Josh Kropf
547                 for confirming this protocol behaviour.
548         - updated socket.cc to use new BadPacket exception where appropriate
549         - pulled from Josh Kropf: 0f1cca2fa69d0810d439ade4fb3dd0dfa15c89a6
550                 - fixed size issue with deviceinfo command on 7130 devices
551 2009/06/19
552         - reworked autoconf rules to handle every kind of Boost dependency:
553                 - let user enable/disable from configure, default to
554                         disable, but error if enabled and not available
555                 - let user specify separate include and lib paths, since
556                         some Boost installations have an additional
557                         boost-1.34.1 style directory in them
558                         - default to no path overrides, using system defaults
559                 - let user specify name of serialization library, since
560                         the name of the library can change whether you're
561                         building from source or not
562                         - default to searching for boost_serialization or
563                                 boost_serialization-mt, and error if not found
564                 - New configure switches are:
565                   --enable-boost                   Handles enable/disable
566                   --with-boost-include=path        Override the include path
567                   --with-boost-lib=path            Override the lib path
568                   --with-boost-serialization=name  Override the name of
569                                                    serialization library
570                                                    to link with
571         - updated documentation, build test, and binary packages to use
572                 new switches
573 2009/06/18
574         - added non-backward-compatibility note to man/btool.1
575         - applied Nicolas Vivien's LDIF patches, clarifying split
576                 between work and home addresses, and adding support
577                 for the homePostalAddress LDAP field
578         - fixed missing #includes for Fedora 11.  Thanks to
579                 Nathanael Noblet for reporting this.
580         - applied Ryan Li's PPP chat script for China Mobile
581         - added barry-chinamobile chat script to RPM and Debian packages
582         - renamed blacklist-berry_charge to blacklist-berry_charge.conf
583                 for Debian sid and Fedora 11.  Thanks to Rodrigo Linfati
584                 for reporting.
585         - applied Nicolas Vivien's autoconf patch to automatically
586                 search for boost_serialization or boost_serialization-mt
587 2009/05/12
588         - applied Dr. J A Gow's category patches (task + memo)
589                 - fixed compile error when using Boost
590                 - cleaned up Categories handling:
591                         - s11n-boost.h
592                         - Dump() should be consistent across Calendar, Memo, Task
593                         - fixed i18n support to category names
594                 - cleaned up code formatting to match surrounding code
595         - moved CategoryList to its own class, and removed duplicated
596                 string conversion code
597         - removed protocol-specific MemoType and TaskType fields from
598                 their corresponding record classes
599 2009/05/09
600         - applied Nicolas Vivien's Task builder patch for the Storm
601                 and Bookmark documentation patch
602 2009/05/08
603         - applied most of Dr. J A Gow's recurring iCal sync patch
604                 - did not include the pure upper case changes, since
605                   it is an RFC bug in SynCE
606                   see http://www.mail-archive.com/barry-devel@lists.sourceforge.net/msg01109.html
607                 - added starttime to RecurToBarryCal() args, to make the
608                   prerequisites clear (StartTime must be determined before
609                   recurrence is parsed)
610                 - added check that COUNT is not zero (RFC requirement)
611                 - fixed timezone drift: using gmtime() + mktime() uses two
612                   different timezones... use localtime() + mktime()  instead
613                 - comment resizing
614                 - reformatted if/else FREQ tests into a more readable
615                   sequence, and fixed a logic error in the yearly count
616                   advance, which should only happen when FREQ == YEARLY
617         - updated AUTHORS
618 2009/05/06
619         - going through www documentation, updating for 0.15
620         - updated man/btool.1 with new -a option
621         - updated TODO list with new reality
622         - applied Nicolas Vivien's phone call log parser patches
623                 - added CallLog to s11n-boost.h
624                 - added size checks to parser
625                 - removed CallLogType, since it is protocol specific
626                 - added and tidied comments
627                 - made CallLog::Clear() match the class declaration order,
628                   fixed missing member, and used enum names to set
629                   enum defaults
630 2009/05/05
631         - applied Nicolas Vivien's task sync patches, with btool updates
632                 - fixed "VTOTO" typo
633                 - now that there's a Desktop::ClearDatabase() call,
634                   use it in SaveDatabase() to reduce code duplication
635                 - use separate vector<> clearDbNames in btool
636                   to eliminate chance of mixing -d and -a argument
637                   types and losing data
638                 - reverted VNOTE change in vformat.c
639                 - added VFORMAT_JOURNAL support to vformat.c based on
640                   r2795 of the opensync vformat plugin
641         - fixed some TimeZoneValid flag mistakes in Task and Calendar
642         - display DueDateFlag in src/r_task.cc
643         - changed vtodo.cc so DTSTART is only set if available in BB data
644 2009/05/01
645         - applied Nicolas Vivien's zsh patch
646         - applied Nicolas Vivien's memo sync patch
647                 - added MEMO_TYPE 'm' to built memo record
648         - updated btool to include new Memo builder
649         - updated config.rpath to latest from Debian stable
650 2009/04/27
651         - removed free() in tarfile.cc, since some distros have bugs in
652                 th_get_pathname() that doesn't return a freeable string
653 2009/04/22
654         - fixed some missing headers as reported by Christopher Stover
655         - applied Ryan Li's SMS body null terminator strip patch
656                 - fixed code formatting issues
657                 - added comment on why we're stripping out nulls
658                 - fixed potential single byte buffer overflow
659         - pulled from Josh Kropf: 8266c95a94
660                 added "reset to factory" command to bjavaloader
661         - split creation of deb src tarballs into separate script
662                 instead of tar-create.sh
663         - added more statements for the m4/ directory in configure.ac
664                 and Makefile.am, attempting to eliminate build warnings
665                 on FC10, as reported by Christopher Stover
666 2009/04/14
667         - applied Nicolas Vivien's sscanf patch (opensync-0.4x)
668         - wrapped OSyncList in vSmartPtr<> to automatically handle
669                 all calls to new osync_list_free() API
670         - applied Ryan Li's updated SMS parser patch
671                 - moved SMS metadata structure into its own struct
672                         in protostructs.h
673                 - fixed some endian conversion errors
674                 - added strnlen() call to avoid null terminators in
675                         the Addresses strings
676 2009/04/10
677         - added brimtrans to rpm spec file and debian install
678 2009/04/09
679         - fixed OSyncList* leak in 0.4x plugin from call to
680                 osync_plugin_info_get_objtype_sinks()
681 2009/04/08
682         - added IConvHandle, making it possible to support more than one
683                 charset in Blackberry data
684         - removed patches from opensync-plugin-0.4x 'make dist' target
685         - updated buildtest.sh for opensync 0.4x
686 2009/04/06
687         - updated man/bjavaloader.1
688 2009/04/04
689         - added Product ID 8001 for the Pearl Flip.  Thanks to John Ladan
690                 for reporting the new ID.
691 2009/04/03
692         - removed 0.22 opensync patches from 0.4x tree
693         - applied opensync Photo support patches from Nicolas Vivien
694         - renamed SequencePacket() to HideSequencePacket() for clarity
695                 This is a temporary measure... this sequence packet
696                 code needs to be cleaned up.
697         - added Photo support to examples/addcontact.cc
698         - removed try/catch from vcard/vevent, pending feedback from Nicolas
699         - applied Ryan Li's SMS record parsing patch
700                 - changed capitalization to match other code
701                 - added Sms to s11n-boost.h and required operator
702                 - added Sms to btool.cc, record.h, and Makefile.am
703                 - added size checks to the parser code
704                 - cleaned up brackets and casting
705                 - made dump output prettier (at least to me) :-)
706                 - added "unknown" state for MessageStatus, as default
707                 - cleaned up whitespace
708         - updated AUTHORS
709         - added endpoint override to Probe class while testing the 7130
710                 When using btool's -e option, the Probe class still
711                 attempted to probe endpoints as it saw fit.
712 2009/04/02
713         - fixed double-free bug in opensync 0.4x plugin
714                 Can only report error or success once in a change.
715         - updated buildgen.sh to handle ctags for multiple opensyncs
716         - fixed inverted logic when doing a hashtable slowsync (opensync 0.4x)
717         - fixed uninitialized osync_trace args in both vformat.c files
718 2009/04/01
719         - opensync 0.4x changes due to upstream API updates
720                 - removed idmap and cache code, in favour of opensync's
721                         uid mapping and hashtables respectively
722 2009/03/31
723         - opensync 0.4x changes due to upstream API updates
724                 - removed deprecated opensync header
725                 - updated 0.4x plugin to use new slow-sync API
726                 - updated 0.4x plugin to use new function registration and
727                         user data API
728                 - updated 0.4x plugin to use new sink list (API change)
729 2009/03/27
730         - changed PIN format from decimal to hex in opensync-0.4x plugin
731                 config
732         - added special case so photo data does not print raw in btool dumps
733         - fixed call to trace.logf() in plugin code... should never call
734                 a printf-like function unless you use a constant "%s"
735         - made opensync-0.4x:vformat.c's base64 routines const-correct
736         - fixed free()-crash bug in both vformat.c files
737                 When generating the resulting VCARD data, vformat.c assigned
738                 static strings to a dynamic heap list pointer, and the
739                 later free always failed.
740         - merged some changes from Jose Sogo's Debian package work
741                 - menu changes to conform with policy
742                 - renamed opensync plugin package name to match Debian
743         - added Nicolas Vivien and Josh Kropf to debian/copyright
744         - fixed uninitialized variable in SocketZero
745         - fixed memory leak in tarfile.cc
746         - fixed uninitialized time struct in bjavaloader.cc (valgrind error)
747 2009/03/24
748         - fixed typo in zsh/_bjavaloader thanks to feedback from Nicolas V.
749         - pulled from Josh Kropf: 75b1a89e8b1eb9d89bcd8b5ecbed9a47af5a8930
750                 added logstacktraces support to bjavaloader
751         - updated TODO list with "- All" database parsing
752 2009/03/13
753         - added git tag signing to maintainer scripts
754         - added signed tagging to release checklist doc
755 2009/03/11
756         - updated opensync-plugin-0.4x/README with build help
757 2009/03/10
758         - pulled from Josh Kropf: d6c3173ccd87c6223647950963da79331a68d712
759                 added deviceinfo support to bjavaloader
760         - pulled from Josh Kropf: 272f371e8bb95b6c41a8293de657da45a782736f
761                 new tool: brimtrans for dealing with RIM USB logs
762         - pulled from Josh Kropf: 7ed1df560ea7cc6a2205d8f8627c00c7aaed2294
763                 added wipe support to bjavaloader
764         - added confirmation step to bjavaloader wipe, so it is harder to
765                 accidentally wipe your device
766         - applied zsh patch from Nicolas Vivien for bjavaloader wipe
767 2009/03
768         - changes inspired from Rick Scott's XmBlackberry
769                 - event log timestamp is a time_t in milliseconds
770 2009/03/07
771         - added Mode base class for common mode class code
772 2009/03/06
773         - reorganized external links by date and topic, and added link
774                 to Nicolas Vivien's Blackberry on Linux documentation
775 2009/03/05
776         - pulled from Josh Kropf: b3d3a6f48fe008e8842c057df4a653a04b9c56ce
777                 - compile fix when using __DEBUG_MODE__
778                 - fixed timeout when calling JavaLoader::GetDir on device
779                         with zero modules
780 2009/03/04
781         - fixed embarrassing incorrect exception messages in usbwrap.cc
782                 Fortunately, these didn't affect my timeout testing.
783         - added Data::QuickZap(), so that usb read errors don't
784                 return old data
785         - inlined Data::QuickZap()
786         - added usb_set_altinterface() call to Interface class
787                 This should hopefully workaround the change in 2.6.28
788                 kernels where set_interface is not called by the kernel
789                 automatically anymore.
790 2009/03/03
791         - applied Nicolas Vivien's opensync-0.4x API patch
792 2009/02/28
793         - applied Nicolas Vivien's zsh patches
794 2009/02/26
795         - added opensync-0.4x to tar-prepare.sh maintainer script
796 2009/02/24
797         - added note about novj option issue in barry-att_cingular
798         - added gettext to documentation dependency list (for iconv.m4)
799 2009/02/20
800         - clarified bjavaloader save behaviour
801         - updated bjavaloader man page
802         - added maintainer/build as exception for test/buildtest.sh
803         - merge opensync-0.4x branch into master:
804                 2009/02/20
805                         - removed nested m4 in preparation for merge into
806                           main Barry tree
807                 2009/02/18
808                         - applied Nicolas Vivien's opensync-0.4x
809                           Calendar+Contact patch
810                 2009/02/01
811                         - applied Nicolas Vivien's opensync-0.4x
812                           porting update patch
813         - removed unneeded ChangeLog.osync
814         - added opensync-plugin-0.4x to top level configure, but not to
815                 binary packages
816         - added old emails from Ron Gage from 2006 regarding Autotext
817                 and Service Book parsing
818 2009/02/19
819         - pulled from Josh Kropf: 9b63a99867b3314b8d42212cac05a6f28860d37b
820                 - saving large modules in pkzip format
821                 - cleaned up StartStream function; use JLPacket instance
822                 - refactored SendStream; use JLPacket instance and use simple
823                         function for seeking to next cod file in input stream
824         - made following changes to Josh Kropf's patches
825                 - Added CODFILE_TYPE_SIMPLE check back in
826                 - Minor change of c_str() to data() where a null terminator
827                         is not needed
828                 - Fixed unlikely buffer overflow in m_javaloader.cc
829                         Goal: never trust outside sources of
830                         information (including that from the device) when
831                         managing our own buffers.
832                 - Removed CodFile forward declaration, since class does not
833                         exist anymore
834                 - Fixed typo in configure.ac, and made missing zlib warning
835                         more emphatic
836                 - Added clarifying comment to CodFileBuilder
837                 - Fixed potential reference bug in CodFileBuilder constructor
838                         It is possible that the const std::string& passed
839                         into the constructor is a temporary, so make a copy
840                         of it instead of just holding a reference.
841                 - Removed multi-unget call in cod.cc -- only one unget() is
842                         guaranteed in C++.  It appears that the unget is
843                         unnecessary, since the following code seeks to end
844                         and back to beginning anyway.
845                 - Added copyright line for Josh Kropf in cod.cc and
846                         cod-internal.h
847                 - Fixed incorrect zlib check, since zlib doesn't support
848                         pkg-config on most systems yet.  Changed it to
849                         use AC_CHECK_LIB, and added a --with-zlib configure
850                         option which will cause configure to halt if
851                         zlib is not available.  Added --with-zlib to
852                         binary package builds, and to build test script.
853         - added zlib to rpm and deb build requirements list
854 2009/02/18
855         - updated USB capture logs archive page with new logs from Josh Kropf
856         - applied as patch Josh Kropf's annotated javaloader-reset.txt log
857         - added note about windows registry keys to USB-capture.txt
858 2009/02/17
859         - applied Josh Kropf's patch adding support for forced erase and
860                 load while module in use, properly handling when the
861                 device requests a reset
862 2009/02/15
863         - applied Nicolas Vivien's RecordId patch for Contact class...
864                 this updates Barry to deal with the new record ID behaviour
865                 on the Storm
866 2009/02/13
867         - removed unneeded call to .c_str() in EmailAddress stream operator
868         - added support for Calendar fields: Organizer, Accepted, Invited
869         - reorganized the udev/ script directory, based on distro,
870                 and added a specific rules file for openSUSE 11.1
871         - updated Debian and RPM binary scripts to point to correct udev files
872 2009/02/07
873         - applied Nicolas Vivien's patch to fix the timeout issue on the
874                 Blackberry Storm
875 2009/02/04
876         - applied Josh Kropf's save module patch
877                 - minor whitespace fixes
878                 - removed unneeded exception (fstream closes files
879                   automatically on exit of scope, or exception)
880                 - fixed compile error with variable sized array...
881                   replaced with std::vector<> instead of memcpy,
882                   in JavaLoader::SaveData()
883                 - commented out an unused variable
884 2009/02/03
885         - commented out AT+CREG? in barry-rogers.chat, since it causes some
886                 Blackberry devices to reboot
887         - applied Josh Kropf's eventlog and clear eventlog patches
888                 - capitalized JLEventlogEntry fields, to match other
889                   record classes
890                 - use constant when parsing entry
891                 - renamed a define
892         - sweeping cleanup of record classes and clarified all constant
893                 conversions i.e. whenever converting between a protocol
894                 constant and an API constant, do it through a function,
895                 in case the constants change on the Blackberry side
896 2009/01/31
897         - applied patch of binary VSM file from Robert Yaklin
898 2009/01/30
899         - moved Nicolas Vivien's codfile code into library class API
900                 - this change avoids having packed structs exposed in
901                   installable header files, and gives the library
902                   user an easy way to work with COD files
903                 - added CodFile class
904                 - added JavaLoader::LoadApp(CodFile&)
905                 - cleaned up bjavaloader to use new API
906                 - moved codfile_*_t structs to internal header
907                 - also fixed command line status output when exceptions
908                   are caught (unrelated fix)
909         - added / updated manpages: bfuse, bjavaloader, btool
910         - added fuse to build dependencies for rpm and deb packages
911         - updated web docs, adding libfuse to dependencies page
912                 - added libiconv as well
913 2009/01/29
914         - applied screenshot and zsh patch from Nicolas Vivien
915           His git log, as posted to the mailing list, was:
916                 Remove bscreenshot binary
917                 Add screenshot option to bjavaloader binary
918                 Add comments in the code
919                 Use defines beside of integer constant
920                 Use b2hons to be compliant with evrywhat host
921                 ZSH scripts completion
922                 Use BMP structs beside of unreadable buffer !
923           His changelog notes:
924                 - add command GetScreenShot to JLPacket class
925                 - add JLScreenInfo to protocol structures
926         - updated AUTHORS
927         - minor tweaks to Nicolas's screenshot+zsh patch:
928                 - renamed DIR_ENTRY and SS_ENTRY to DATA_ENTRY constant
929                   as suggested by comments
930                 - fixed some packet size checks
931                 - whitespace fixes
932                 - removed unneeded packet.GetReceive(), since response
933                   buffer is the same as what GetReceive() returns
934                 - used AutoClose for fopen() calls in bjavaloader.cc
935                   for exception safety
936                 - removed manual buffer handling in favour of Data object
937                   in JavaLoader::GetScreenshot()
938         - removed "unknown packet" exception from Socket::PacketData()
939                 I think it is probably better to handle javaloader-level
940                 errors and codes in the JavaLoader class, not the low-
941                 level Socket class.
942         - added erase and force erase support to bjavaloader, library, and zsh
943                 - force erase is experimental
944         - applied documentation patch from Robert Yaklin on VSM file format
945                 - did slight formatting changes before applying, for 80
946                   columns, and set file to unix format instead of DOS
947         - added links to new USB capture logs from Robert Yaklin to
948                 logs.php doc page
949         - cleaned up src/Makefile.am, regarding non-install headers
950         - moved Nicolas Vivien's bitmap conversion code into library API
951                 - added bmp.h api, and moved internal structs to bmp-internal.h
952                 - added size checks and endian conversion to bitmap
953                   conversion code, so this code should run anywhere
954 2009/01/27
955         - added link Josh Kropf's 'Blackberry development in linux' blog
956                 post to doc/www/index.php
957         - added USB capture log archive page to www docs
958         - added config.rpath, needed by new AM_ICONV check
959                 Thanks to Bill Paul for debugging this.
960         - applied Nicolas Vivien's opensync plugin 0.4x patch
961 2009/01/26
962         - added template wrapper for iconv() due to casting differences on
963                 various platforms... thanks to Bill Paul for FreeBSD testing
964         - added AM_ICONV automake/autoconf check to configure.ac
965                 This should take care of checking for libc or library
966                 iconv installs, and checking the iconv() prototype for whether
967                 const is needed or not.  This removes the need for the
968                 template added earlier.
969 2009/01/25
970         - applied patch from Josh Kropf making bjavaloader's syntax more
971                 compatible with the windows version, to make cross
972                 platform build scripts possible
973         - applied Josh Kropf's settime syntax patch
974         - clarified timezone behaviour in javaloader settime
975         - added flag to JavaLoader mode class, so StopStream() is called
976                 automatically in the destructor if not called manually
977 2009/01/24
978         - added another ctor to BadSize exception class
979         - fixed bug in SocketZero where it checked sequence on packets
980                 from non-zero sockets
981         - javaloader list mode updates:
982                 - added Dump() code to directory classes
983                 - fixed size issue with JLDirEntry header size define
984                 - fixed size checks in entry parser
985                 - fixed copy before in JLDirectory, now uses vector
986                 - moved bjavaloader's Start/StopStream calls to main()
987 2009/01/23
988         - removed default argument to CheckSize() so all code specifies
989                 the size it really needs
990         - fixed bug in ParseData() that didn't copy data to receive arg
991         - adding additional javaloader commands and refactoring
992                 this is a work in progress:
993                 - added JLPacket class, encapsulating javaloader protocol
994                 - added new defines for more JL commands
995                 - refactored socket class, using PacketData()
996                         for JL, and Packet() for Desktop (still needs
997                         some work to be really clean)
998                 - began implementing new commands (SetTime())
999                 - thanks to Rick Scott for his reverse engineering effort
1000                         in XmBlackBerry, which inspired this code
1001         - refactored packet.cc to make JLPacket even tighter
1002         - updated doc/USB-capture.txt with link to vusb-analyzer
1003                 Thanks to Martin Owens for the link.
1004         - added a set of be_*() endian swap functions, for big endian data
1005                 JavaLoader code seems to use big endian a lot.
1006         - simplified bjavaloader.cc's command line args to make room for more
1007         - cleaned up big endian code to use new be_* swap macros
1008         - added protocol and packet code for directory / subdir commands
1009         - added preliminary directory support to JavaLoader class
1010 2009/01/22
1011         - reverted experimental handshaking in IpModem, since the session_key
1012                 patch fixed Bill Paul's issue
1013         - finished adding IConverter support to r_task and r_timezone
1014         - removed r_message_base.h from doxygen RecordParserClasses group
1015         - removed unused ClassType variable from Task record class
1016         - refactored Calendar and Task record classes, creating new
1017                 RecurBase to handle recurrence data
1018         - removed FIXME in Socket::Packet(), since socket is set in Send()
1019         - cleaned up socket handling and comments in packet.cc
1020 2009/01/20
1021         - applied Nicolas Vivien's javaloader patch, fixing constant defines
1022                 and other small fixes
1023         - minor whitespace and spelling fixes to above patch
1024         - changed m_ipmodem.cc to send the session key even without password
1025                 which should help reduce the "special packets" coming from
1026                 the device.
1027                 Thanks to Rick Scott and Andy Herkey.
1028 2009/01/17
1029         - refactored pthread timeout creation into ThreadTimeout() function
1030         - added experimental handshaking to IpModem.  This is in response
1031                 to Bill Paul's email regarding what he was seeing in the
1032                 logs with the special code packets which we dropped
1033                 on the floor.  This code is to test whether this handshaking
1034                 theory is true.
1035 2009/01/16
1036         - made maintainer script make-deb-local.sh more robust
1037         - added list of target binary packages in ReleaseChecklist.txt
1038         - changed to more general Fedora link to Chris Stover's packages
1039 2009/01/15
1040         - applied Andy Herkey's ipmodem password patch for the Bold
1041         - minor fixes to above patch, and in addition to above patch:
1042                 - use sizeof(seed), instead of type, in case of future changes
1043                 - removed commented out code
1044                 - added the null password check back to SendPassword(),
1045                   for historical reasons
1046                 - removed the null and zero default arguments to
1047                   SendPassword(), since they make no sense
1048                 - added define for session key size, and added size check
1049         - added missing string.h header to src/m_javaloader.cc
1050         - updated Debian and RPM packages to include bjavaloader
1051 2009/01/14
1052         - applied Nicolas Vivien's bjavaloader patch
1053         - small fixups to above patch:
1054                 - moved cod.h from installable headers to internal headers
1055                 - whitespace edits
1056                 - copyright statement tweaks
1057                 - added blog URLs to copyright list in cod.h where parts
1058                         of the structs appear to come from
1059                 - removed unused variables to compile with strict settings
1060                 - changed char to unsigned char to fix strict compiler
1061                         warnings
1062                 - removed duplicated a/b from Socket messages, and moved
1063                         read/write text to front, in socket.cc
1064                 - added NetDirect copyright notice to bjavaloader.cc, since
1065                         it is based on btool.cc
1066                 - removed unused boost-specific code from bjavaloader.cc
1067         - more fixes to above patch: (bjavaloader.cc specifically)
1068                 - moved cod.h back to installable headers, since tools/
1069                         programs depend on it... this should be fixed
1070                         or put in the library as a COD-reading API
1071                         so that applications don't need to worry about
1072                         packed files, etc.
1073                 - fixed potential buffer overflow: removed buffer read used
1074                         to skip ahead in file, and replaced with fseek()
1075                 - changed SendAppFile() to report errors by exception
1076                         instead of by return value, which wasn't checked
1077                         anyway... and C++'d the file handle closing
1078                 - removed unused StateTableCommand, leftover from btool
1079                 - added check for unlikely case of COD file being larger
1080                         than size_t, breaking the fread() assumption
1081                         for the type == 0xC0DE case
1082                 - added checks for fread() failures
1083                 - fixed compiler warnings when comparing signed/unsigned,
1084                         and changed file operation types from plain int
1085                         to size_t/off_t
1086         - changes to src/m_javaloader.cc:
1087                 - fixed comments to remove Desktop-oriented notes
1088                 - moved variables closer to their use point
1089                 - removed the duplicated response Data objects in favour
1090                         of just one (each default Data object uses 0x4000
1091                         bytes of heap)
1092                 - removed manual endian swap in favour of htobl()
1093                         - oops... this size field is actually big endian.
1094                           Since all Barry code assumes that Blackberry
1095                           protocol traffic is little endian, a special
1096                           case needs to be added in m_javaloader.cc for
1097                           this field.  The special case uses autoconf's
1098                           endian define.
1099                         - fixed long long problem in endian.h (ISO C++
1100                           compilers don't support long long) and made
1101                           the bswap() functions always available
1102                 - removed unused CommandType and m_commandTable members
1103                 - fixed exception error messages to indicate command #
1104                         instead of Desktop message
1105                 - changed Packet() call to PacketData() when sending
1106                         file size, since there is no command
1107         - added eout() data dump to socket::Packet() unknown send error
1108         - fixed my incorrect off_t/size_t check in bjavaloader.cc
1109         - removed the '0' JL_UNKNOWN4 command from src/protocol.h,
1110                 since the PacketData() change above now handles that,
1111                 and I don't think that byte is actually a command, but
1112                 really part of the uint32_t size
1113                 - Also fixed one remaining 0 command, to use PacketData()
1114 2009/01/09
1115         - added AT+CLAC note to contrib/modemtest.rb, recording tidbit
1116                 from mailing list
1117         - updated copyright dates for 2009
1118 2008/12/11
1119         - fixed missing slash in config sample in doc/www/sync.php
1120                 Thanks to sourceforge tracker #2413683 for reporting
1121 2008/12/01
1122         - added more notes to doc/USB-capture.txt, documenting my kernel
1123                 setup for capturing USB traffic, and added size-limiting
1124                 kernel patch
1125         - added TODO list item for the Blackberry Storm
1126 2008/11/30
1127         - moved Product ID constants into a single place (src/common.h)
1128                 and updated bcharge
1129         - added Product ID 8007 for the Blackberry Storm... needs testing
1130 2008/11/27
1131         - applied ppp chat script patch for AT&T Cingular from
1132                 Richard Esplin
1133         - added new chat scripts to debian and rpm packages
1134         - added known sources of additional Barry binary packages to index.php
1135         - turned on call/caller graph support in Doxygen output
1136 2008/11/23
1137         - applied 'patch' of Martin Owens' Content Store documentation
1138         - updated AUTHORS
1139 2008/11/22
1140         - large refactoring of all message/email record classes, and more
1141                 There is now a MessageBase base class, which combines
1142                 common email record parsing code in one class.  This base
1143                 class is reused by all the specific messages record classes.
1144                 This commit also includes support for multiple email
1145                 addresses per email, as well as giving IConverter support
1146                 to all message classes.
1147         - deleted empty *.cc files from project
1148         - updated TODO file, removing opensync i18n bug
1149         - added TODO item for password support in Opensync... try to avoid
1150                 storing the password in the sync config in plain text
1151         - fixed dll export bug on ErrnoError exception class
1152         - added BadPackedFormat exception for internal use
1153         - ServiceBook: added IConverter support, and general cleanup
1154                 Refactored ServiceBook class and added some experimental
1155                 template functions to generalize the FieldLink table
1156                 processing.  If possible, this needs to be expanded
1157                 to the general record classes, to reduce the amount of
1158                 code duplication during processing of FieldLinks and
1159                 CommonField structures.
1160                 Also, ServiceBook deals with packed fields, which should
1161                 also be extrapolated for general use, and reused if
1162                 possible for the new "Calendar - All" Blackberry databases
1163                 that are coming out on the new devices and firmare.
1164 2008/11/21
1165         - updated man/btool.1 with new -i option
1166         - fixed bug where opensync plugin didn't pass IConverter to Desktop
1167         - added IConverter support to r_calendar.cc
1168         - renamed utf8Needed to iconvNeeded, for consistency
1169         - added IConverter support to r_folder.cc
1170         - added IConverter support to r_memo.cc
1171         - added IConverter support to r_message.cc
1172         - added EmailAddressList, in preparation for multi-address email
1173 2008/11/20
1174         - changed Parser base class to pure abstract... this is so that
1175                 future API changes to the Parse base class will be
1176                 detected by the compiler as errors
1177         - added NullParser class, which performs the old Parser function
1178         - changed all FieldLink arrays to static
1179         - added new IConverter class to support converting the Blackberry's
1180                 WINDOWS-1252 charset to/from UTF-8 and more
1181         - fixed bug in IConverter that saved end of string instead of
1182                 beginning
1183         - reorganized barry.h app header and record.h header, so that
1184                 internal builds have fewer dependencies
1185         - large parser/builder API change, adding IConverter support
1186                 This change starts at the top (Mode::Desktop) which
1187                 takes an optional IConverter object for parsing and
1188                 building conversions.  The Desktop class passes
1189                 this IConverter object to Packet, Parser, and Builder (and
1190                 thereby, the corresponding Record classes) as needed.
1191                 This adds an extra pointer to a fair number of calls
1192                 in the stack, but maintains flexibility without putting
1193                 too much of a burden on Parser writers, which could be
1194                 application writers.
1195                 The primary use of this architecture is to pass in an
1196                 IConverter configured to convert to UTF-8... this is
1197                 basically the only useful conversion method, but others
1198                 are possible if you want to play.
1199         - first record class to support string conversions: Contact
1200         - reverted the barry.h and record.h reorganization, since
1201                 the gui depends on it
1202         - reorganized barry.h and record.h again, making inclusion of
1203                 the record headers dependent on whether it is a library
1204                 build or not
1205         - updated the gui with the parser/builder API change
1206         - added IConverter to opensync plugin, set to UTF-8
1207 2008/11/13
1208         - added comment to src/r_contact.h deprecating the Phone field
1209         - updated Doxyfile to 1.5.1
1210         - added Christopher D. Stover to AUTHORS file as Fedora contact
1211 2008/11/03
1212         - forgot #include <string.h> for memcpy/memset in tools/bfuse.cc
1213         - moved bfuse install point from /usr/sbin to /usr/bin
1214 2008/11/01
1215         - added FUSE filesystem "driver"
1216 2008/10/31
1217         - commented out the info.subsystem match level in HAL FDI file...
1218                 this should let the FDI work on old and new systems.
1219                 HAL version 0.5.8 (used by Debian Etch) has the deprecated
1220                 info.bus property, and doesn't have info.subsystem yet.
1221         - added HAL FDI scripts to rpm/barry.spec
1222         - fixed tools/Makefile.plain
1223 2008/10/30
1224         - added support for multiple work/home phone numbers to the
1225                 opensync plugin.
1226                 - Thanks to Richard Esplin for his test data.
1227                 - This fix has a conflict when a cell phone number is
1228                         marked as the preferred contact as well.
1229                         See http://sourceforge.net/mailarchive/message.php?msg_name=20081030231045.GA28989%40foursquare.net
1230                         for the full details.
1231                 - This fix also changes the VCARD output... pager phone
1232                         numbers are given the TYPE code of "pager"
1233                         instead of "msg".
1234                 - Added OtherPhone field as well
1235 2008/10/22
1236         - applied HAL FDI scripts and configuration from Martin Owens
1237         - updated AUTHORS file
1238         - added HAL FDI and python script to Debian package install
1239 2008/10/18
1240         - updated copyright notice and help text in contrib/modemtest.rb
1241         - changed barry-verizon.chat script according to Andy Herkey's
1242                 recommendation... this worked much better for Michael L.
1243                 Stokes, since his provider was getting stuck on the ATZ
1244 2008/10/16
1245         - applied Andy Herkey's modemtest.rb ruby script to contrib/
1246                 from his Aug 9, 2008 email to the mailing list
1247         - applied Andy Herkey's new modemtest.rb script to contrib/
1248                 from his Oct 8, 2008 email to the mailing list
1249         - added password pass-through code for pppob -s mode
1250         - clarified front page www doc, adding date of last release
1251                 and license
1252         - cherry-picked changes from Jose Carlos Garcia Sogo's debian git repo
1253                 - debian/rules was stripping wrong library names
1254                 - FSF address was incorrect (also updated other source
1255                         files throughout the tree myself)
1256                 - more complete debian/copyright file
1257 2008/09/24
1258         - version bump:
1259                 - configure.ac
1260                 - src/Makefile.am
1261                 - src/version.cc
1262                 - gui/src/BackupWindow.cc
1263                 - Doxyfile
1264                 - rpm/barry.spec
1265                 - debian/changelog
1266                 - opensync-plugin/src/barry_sync.cc
1267         - added link to doxygen documentation to www index.php
1269 Release: version 0.14 - 2008/09/24
1270 ------------------------------------------------------------------------------
1271 2008/09/24
1272         - changed Debian changelog version to 0.14-0 to make room for
1273                 official Debian packages which start at 0.14-1
1274         - moved Doxyfile from src/Makefile.am to Makefile.am
1275         - made RPM spec file match debian version number
1276         - www documentation updates for 0.14
1277 2008/09/19
1278         - fixed git-tagged-release.sh to not delete its own results... oops
1279 2008/09/18
1280         - fixed git command line in git-extract.sh for new 1.6.0.x behaviour
1281 2008/09/13
1282         - added notes in ReleaseChecklist.txt regarding the new tarball
1283                 tags in the git repos
1284 2008/09/12
1285         - updated doc/ReleaseChecklist.txt
1286         - moving items from private todo list to TODO file
1287         - removed unused variable from maintainer/git-release-tar.sh
1288         - added new maintainer/git-tagged-tar.sh, which puts more data
1289                 in the git repo, to make it easier for official Debian
1290                 package creation
1291         - moved src/Doxyfile to ./Doxyfile to avoid ".." in the config...
1292                 the ".." paths confused doxygen and caused it to generate
1293                 non-relative paths in the documentation.
1294         - added umask to maintainer/git-extract.sh, so it works even without
1295                 a pre-configured git
1296         - updated maintainer/tar-prepare.sh to match the new Doxyfile
1297         - added maintainer/tagged-release.sh, as replacement for the
1298                 release.sh top level script, when using git
1299         - removed CVS-style ID code from contrib/barry-unbind-storage.sh
1300                 since it made it look like cdfrey wrote it
1301         - removed doc/CodingStyle.txt as it is now documented in html
1302 2008/08/29
1303         - added device name and backup label support to the GUI
1304                 It is now possible to name devices, instead of just
1305                 operating by PIN number, and it is possible to now
1306                 add a text label to the backup tar filenames.
1307         - added the device names to the device selection dialog
1308 2008/08/26
1309         - updated TODO list with i18n opensync bug and general i18n support
1310         - added test suite to TODO list
1311 2008/08/23
1312         - renamed libbarry to libbarry0 in rpm/barry.spec
1313         - added %dump to rpm/barry.spec to match the OBS version
1314                 Makes it easier to track variable changes across
1315                 various distros.
1316         - added note to NEWS regarding binary package renaming
1317 2008/08/22
1318         - fixed logic error in breset that displayed error on success
1319                 Thanks to Richard Esplin for reporting this bug.
1320         - applied commit's from Jose Carlos Garcia Sogo's debian git repo
1321                 git://git.debian.org/git/users/jsogo/barry.git
1322                 - Add binary dependency of libbarry-dev on libusb-dev
1323                 - Rename libbarry to libbarry0, per debian policy
1324                 - Add exact dependency on binary:Version for every
1325                         -dbg and -dev package
1326                 - Bump Standards-Version to 3.8.0
1327         - updated AUTHORS
1328         - clarified barrybackup error message when no records available
1329                 Added a check so that "no databases selected" and
1330                 "no records available" are two distinct error messages.
1331 2008/08/21
1332         - applied ppp chat script patch from Mick Reed
1333         - updated RPM and Debian packages with new tmobileus ppp scripts
1334         - added T-Mobile US to web documentation
1335         - updated AUTHORS
1336         - clarified sync docs regarding slow-sync... avoid it if possible
1337         - tuned doxygen config, and moved generated files to doc/www/doxygen
1338         - added git-release-tar.sh, replacing CVS's make-release-tar.sh
1339                 Also added doxygen to the release tarball creation, so
1340                 the source code's doxygen documentation is automatically
1341                 generated upon release.
1342         - split git-release-tar.sh into reusable component scripts
1343 2008/08/14
1344         - added exception handler for invalid command line options in GUI
1345         - fixed barrybackup man page, removing bad -v option
1346         - added distro section to AUTHORS
1347         - fixed comment and whitespace problems in time.{h,cc}
1348         - Converted Birthday from string to Date, and added Anniversary
1349                 support.  Birthday and Anniversary fields now use a new
1350                 Date struct, and Barry validates the data to some extent.
1351                 - updated example code and opensync plugin to match
1352         - applied Lee Dixon's Location and Description plugin patch,
1353                 with minor whitespace edits
1354 2008/08/12
1355         - added Birthday field to examples/addcontact.cc for testing
1356 2008/08/11
1357         - applied Lee Dixon's Birthday field and opensync patch
1358                 - fixed coding format issues
1359         - updated AUTHORS
1360 2008/08/07
1361         - fixed bug in m_ipmodem.cc that included a null terminator in
1362                 first AT command
1363         - fixed RFC 2426 conformance bug...  RFC 2426, 3.1.1 states that FN
1364                 MUST be present in the vcard object.  If there is no name
1365                 available, then we use the Company name if available.  It
1366                 should be, since the Blackberry requires either name or Company
1367                 in order to create a new address.  If Company is blank too, then
1368                 we insert "(Blank Name)".
1369                 - On the flip side of this same bug, it is possible to receive
1370                         non-conformant vcard data from evolution / opensync
1371                         that does not include FN.  Since the Blackberry
1372                         doesn't require this information, remove the
1373                         exception, and only throw an exception if FN
1374                         or Company are both blank.
1375                 - REVERT: removed the Company and "(Blank Name)" workarounds,
1376                         and just produce an invalid vcard if no full name,
1377                         since with multiple syncing, this will come back
1378                         to bite us with duplicated Company name data
1379         - added sanity check to contact class for blank name and company
1380         - added BadData exception class, and documented it
1381 2008/08/06
1382         - fixed bug in vAttr::GetValue that ignored index for single valued
1383                 attributes... this should fix the endless loop / memory
1384                 exhaustion that some people have been seeing
1385                 Thanks to Lee Dixon for reporting this bug in detail!
1386         - added TODO list item for implementing recurring calendar items
1387 2008/08/01
1388         - version bump:
1389                 - configure.ac
1390                 - src/Makefile.am
1391                 - src/version.cc
1392                 - gui/src/BackupWindow.cc
1393                 - src/Doxyfile
1394                 - rpm/barry.spec
1395                 - debian/changelog
1396                 - opensync-plugin/src/barry_sync.cc
1397         - updated web docs showing how to set the password when using modem
1398         - added section to docs on how to test the modem connection
1400 Release: version 0.13 - 2008/07/28
1401 ------------------------------------------------------------------------------
1402 2008/07/28
1403         - web doc updates:
1404                 - removed extraneous "experimental" wording
1405                 - added section for external links to main index page
1406                 - fixed doc bug about how to install libtar
1407                 - added O2 Ireland to list of modem scripts
1408                 - removed ubuntu80464 and fc6 from binary package list
1409 2008/07/26
1410         - updated AUTHORS
1411 2008/07/25
1412         - applied barry-unbind-storage.sh script from Niels de Vos...
1413                 added to contrib for now, in the interests of getting
1414                 version 0.13 released soon... we can work on integrating
1415                 this better in 0.14, which hopefully won't take so long :-)
1416 2008/07/24
1417         - added g++ (>= 4.1) to Debian build dependency list
1418         - added support to base library and utilities for multiple email
1419                 addresses in Contact records
1420         - added opensync support for multiple contact email addresses
1421         - applied ppp chat scripts for O2 Ireland from Simon Kenyon
1422         - updated AUTHORS
1423         - integrated O2 Ireland scripts into binary package installs
1424 2008/07/16
1425         - applied David Mansfield's opensync module password patch (ported
1426                 manually to latest upcoming 0.13)
1427         - updated AUTHORS
1428         - added password documentation to sample barry-sync module config
1429         - updated web docs with new password sample config
1430 2008/07/05
1431         - removed old, unused spec file and scripts for bcharge-only release
1432         - fixed rpm build instructions in web docs
1433         - reduced minimum password retry level from 6 to 3... Reinhold Schoeb
1434                 reports that his 8800 device only lets him set a password
1435                 retry range between 3 and 5, instead of the usual 10 that
1436                 most devices have.
1437 2008/07/04
1438         - added "known issues" section to main www doc page
1439         - fixed virtual function mis-name bug in btool's null parser
1440         - added -i option to brecsum, to include record IDs in the sums
1441         - applied Ashley Willis's btool 0.12 null parser patch to CVS, which
1442                 required some manual porting changes...
1443                 - removed bool reference argument in GetParser()
1444         - updated AUTHORS
1445         - applied Ashley Willis's perlbarry package, putting it in the
1446                 new contrib/ directory
1447                 - updated AUTHORS
1448                 - now that btool patch is applied, don't need it in contrib
1449         - removed openssl from dependencies documentation, as barry now
1450                 has its own sha1 code
1451         - added libtool to dependencies documentation
1452         - rpm/barry.spec file now assumes gui and opensync, with conditional
1453                 checks depending which system it is being built on...
1454                 --with gui and --with opensync are no longer needed.
1455         - updated release scripts to build RPMs with the new spec file
1456 2008/06/26
1457         - updated udev rules to recognize devices with the 8004 Product ID
1458         - fixed bug in test/buildtest.sh when opensync is not pre-built
1459         - fixed more lintian warnings on Ubuntu
1460         - fixed tiny subheadings in modem web document
1461         - added syncing howto web document
1462         - updated TODO list, adding Troubleshooting item, and morphing
1463                 the modem item into the RPC daemon item
1464         - moved old doc/TroubleShooting.txt document to web, and updated
1465                 it in the process
1466         - added tip to sync web docs, for using DebugMode on hangs
1467 2008/06/23
1468         - changed test/buildtest.sh so it is safe to run from outside
1469                 the directory that contains it
1470         - added note to patch webpage regarding testing patches to the
1471                 build system
1472         - removed mis-configured 'make dist' check from buildtest.sh
1473         - added missing 'scoped_lock.h' to src/Makefile.am's non-installed
1474                 headers, as it is an internal header only
1475         - improved buildtest.sh: speed, accuracy
1476                 - added -j option to make to speed builds
1477                 - moved cleanall check above 'make dist' as dist doesn't
1478                         clean up after itself
1479                 - commented out 'make distcheck' for now, as it doesn't work
1480         - added DISTCHECK_CONFIGURE_FLAGS to root Makefile.am, similar to
1481                 David Everly's patch in tracker # 1973536
1482                 Thanks David!  'make distcheck' now works, but only in
1483                 an environment like buildtest.sh creates.
1484                 Also, buildtest.sh passes all tests now, including distcheck.
1485         - updated AUTHORS
1486         - removed unused src/controllertmpl.h
1487         - added ppp and test directories to Makefile.am EXTRA_DIST
1488 2008/06/21
1489         - added beginnings of a build system test script
1490         - fixed sha1.h so it is installed by src/Makefile.am
1491         - removed old Makefile.orig from src/Makefile.am
1492 2008/06/20
1493         - updated modem web documentation page with Sprint option, as
1494                 well as listing some network security concerns
1495 2008/06/19
1496         - added modem reset workaround to web documentation page
1497         - applied Andy Herkey's ipmodem password patch, round 1
1498         - applied Andy Herkey's ipmodem password patch, round 2
1499         - cleaning up some rough edges to the ipmodem patches:
1500                 - removed commented out code in pppob.cc
1501                 - added BXLOCAL to private member SendPasword()
1502                 - added try/catch in IpModem destructor
1503                 - removed FIXME comment about endian issues
1504                 - added data size checks to SendPassword()
1505                 - removed catch(...)
1506                 - renamed class variable session_key to match others
1507                 - added check to skip password if "" is passed in
1508                 - added the m_filter for ipmodem PPP 0x7e filtering
1509                   back, since the 8320 w/ rogers seems to need it
1510         - updated AUTHORS
1511 2008/06/06
1512         - added timeout argument to Device::BulkDrain()
1513         - added mozilla's sha1 code from git
1514         - removed openssl dependency due to license issues
1515                 Debian and Ubuntu have checks in their lintian tool that
1516                 check for GPL+OpenSSL linkage.  In order to remove any
1517                 potential obstacles to future inclusion in those distros,
1518                 the dependency is removed here in favour of the small
1519                 mozilla implementation which is GPL.
1520 2008/06/04
1521         - added notes to web documentation for OpenBSD
1522         - documentation updates:
1523                 - changed git patch command to use format-patch
1524                 - added instructions for building from tarball
1525                 - added bugs.php and contact.php pages
1526         - fixed missing and mis-dated copyright notices in src/
1527         - added ppp options and chat script for Sprint, based on
1528                 Andy Herkey's mailing list report
1529 2008/05/30
1530         - added Ubuntu 8.04 to release build scripts
1531 2008/05/29
1532         - fixed compile errors in gui when compiling with gcc 4.3.x
1533         - added ppp options and chatscript files to RPM build
1534         - updated docs with binary package default PPP scripts
1535         - added -P option to pppob to specify password
1536         - updated pppob manpage with -P option
1537         - fixed missing -P option in btool manpage
1538         - updated rpm spec file history
1539         - added pppob manpage to rpm spec file
1540         - added manpages for brecsum, breset, upldif, and barrybackup,
1541                 and updated the build process to support them.
1542                 Also updated date for pppob manpage.
1543         - updated rpm spec file with new manpages
1544         - added ProductID code 0x8004 to breset.cc
1545         - minor whitespace and usage text fix in upldif.cc
1546         - deleted old src/Makefile.orig
1547         - updated Debian binary package:
1548                 - added manpages for brecsum, breset, pppob, upldif,
1549                         and barrybackup
1550                 - added ppp options and chat scripts, with postinit
1551                         script to set permissions
1552                 - fixed descriptions in control file to avoid lintian warnings
1553 2008/05/27
1554         - fixed missing #includes in src/data.cc
1555         - fixed compile errors in library, utils, and plugin when compiling
1556                 with new gcc 4.3.x... gui not yet finished
1557 2008/05/24
1558         - added minimum g++ version to website dependency docs
1559 2008/05/23
1560         - added ppp/README
1561         - reorganized sample ppp options files so they are easier to compare,
1562                 enabled "usepeerdns" in both, and disabled the speed
1563                 setting in barry-verizon
1564         - updates to website documentation
1565                 - added FC9 to distro list
1566                 - added page for BarryBackup
1567                 - added page for USB modem / pppob
1568 2008/05/22
1569         - added sample ppp options files for Verizon Blackberries
1570                 Sample files from Michael L. Stokes
1571         - updated AUTHORS
1572         - renamed sample ppp peer files, in preparation for installing
1573                 them automatically in binary packages
1574         - modified verizon options file to use pppob
1575         - split the sample rogers options file into options and chat files
1576 2008/05/16
1577         - put sequence packet check directly in the SocketZero::RawReceive()
1578                 function, which now localizes all sequence packet
1579                 handling and checking, as well as avoids packet
1580                 order problems when multiple sockets are in use,
1581                 such as with pppob...
1582                 FIXME - this localized sequence checking may make all
1583                 the calls to CheckSequence() obsolete which
1584                 should probably be cleaned up someday, if so.
1585         - reorganized src/socket.cc to match class private/public
1586                 order (no code change, only move)
1587         - added verbose log message to Controller constructors, so it is
1588                 possible to determine whether a program is using
1589                 threaded or non-threaded sockets
1590         - added -z and -Z command line options to btool to control
1591                 the non-threaded/threaded behaviour, respectively;
1592                 and updated the man page
1593         - removed debug sleep() calls from pppob
1594         - added SIGINT signal handler so pppob shutsdown gracefully when
1595                 pppd is killed
1596 2008/05/15
1597         - mention CVS and git on main documentation "how to" list
1598         - moved PPP filter logic into its own class
1599         - enhanced PPP filter class to support prepending of
1600                 empty bytes if needed, in order to reduce data
1601                 copying, and clarified why there is no GetBuffer()
1602         - added ProbeResult::HasIpModem() to determine whether
1603                 IpModem endpoints are available
1604         - added pure virtual Modem base class for common
1605                 modem-oriented API (only Open and Write so far)
1606         - Mode::IpModem is now derived from Barry::Modem
1607         - experimental implementation for Mode::Serial,
1608                 which is now derived from Barry::Modem,
1609                 and uses PppFilter
1610         - pppob now supports IpModem and Serial modes, and logging
1611                 to file instead of stderr
1612         - added man page for pppob
1613 2008/05/10
1614         - modified the planned version numbering scheme in doc/VersionNotes,
1615                 so that a 1.0 is possible, with 1.50 as the devel series
1616 2008/05/09
1617         - continuing to update html documentation in preparation for
1618                 0.13 release
1619 2008/05/02
1620         - removed -fvisibility-inlines-hidden compile options since some
1621                 distros have old or broken compilers or libraries where
1622                 the build breaks looking for STL templates (Ubuntu 7.10,
1623                 I'm looking at you...)
1624         - changed brecsum so usage information is displayed automatically
1625                 if no command line arguments are specified
1626         - added opensync-plugin to maintainer test scripts, and added
1627                 ubuntu710 to the test build sequence
1628 2008/05/01
1629         - updated doc/TroubleShooting.txt
1630         - removed usb_control message check from IpModem endpoint probing
1631                 in src/probe.cc, since some devices, like the 8700
1632                 have both RIM_UsbSerData mode and IpModem mode.
1633         - fixed serialization code for Calendar record class, in s11n-boost.h
1634         - made UnknownField's data member into its own type,
1635                 so that when building records, it doesn't get processed
1636                 like a null terminated string... also added more
1637                 BuildField() helper functions for accuracy
1638         - fixed missing fields in the Calendar record build process
1639         - added Calendar to list of Builders in tools/btool...
1640                 it is now possible to run: btool -s "Calendar" -f datafile
1641         - added tools/brecsum program, which calculates SHA1 checksums
1642                 on database records, for testing
1643         - added brecsum to debian and rpm builds
1644         - added recurrence builder function to Calendar record builder code
1645                 which completes builder support
1646                 Checksums from the following commands now match:
1647                         brecsum -d Calendar > sum1.txt
1648                         btool -d Calendar -f calendar.dat
1649                         btool -s Calendar -f calendar.dat
1650                         brecsum -d Calendar > sum2.txt
1651                         diff -u <(sort sum1.txt) <(sort sum2.txt)
1652 2008/04/29
1653         - applied Jason Thomas's ACLOCAL_FLAGS patch to make autoreconf
1654                 work again... Thanks!
1655         - applied Jason Thomas's debian build dependency patch
1656         - updated AUTHORS
1657 2008/04/26
1658         - started documentation overhaul in doc/www, putting the commonly
1659                 asked questions right on the front page, and making it more
1660                 goal-oriented, so it is hopefully easier to use
1661 2008/04/25
1662         - updated NEWS file
1663         - fixed error messages in m_desktop.cc that still referred
1664                 to Controller
1665 2008/04/25
1666         - major merge of barry-b1-socket-arch-branch into MAIN.
1667           The following is the changelog from that branch, which is now MAIN.
1669         2008/04/25
1670                 - added thread-safe logging mechanism
1671                 - added preliminary IP modem support... requires a recent
1672                         device... serial mode is not yet supported
1673                 - merged HEAD changes
1674         2008/03/27
1675                 - changed Barry::Init() so programmer can choose where
1676                         debug and exception information goes, instead of
1677                         always to stdout
1678         2008/03/22
1679                 - merged HEAD changes
1680         2008/03/20
1681                 - fixed bug in probe class, which missed storing the PIN
1682                         number in ProbeResult
1683                 - also added ProbeResult constructor
1684                 - merged changes from visibility branch:
1685                         - GCC visibility support, limiting what symbols are
1686                           visible in the shared library, libbarry... this makes
1687                           a drastic reduction in the symbol table, and should
1688                           avoid future name clashes with other libraries such
1689                           as opensync
1690                           See: http://gcc.gnu.org/wiki/Visibility
1691                         - vformat_() function name changes
1692         2008/03/07
1693                 - merged HEAD changes
1694                 - added threads library to new bs11nread build
1695         2008/02/28
1696                 - fixed variable size issues in btranslate.cc, evident with
1697                         some compilers on 64 bit systems
1698                 - merged HEAD changes
1699                 - added comments for threaded usage in usbwrap.h
1700                 - changed router to use SocketId typedef, for clarity
1701         2008/02/22
1702                 - fixed const char warnings from newer gcc compilers
1703                 - controller object now saves a copy of the probe result
1704                         and provides an API to retrieve it
1705                 - added sanity checks to m_serial.cc
1706                 - fixed probe behaviour so that a USB probe on an endpoint
1707                         that doesn't respond won't halt everything
1708                 - refactored some of the probe code, and added checks for
1709                         IP modem endpoints
1710                 - added Probe::DumpAll()
1711                 - added Open() call to pppob.cc (not yet complete)
1712         2008/01/30
1713                 - implemented dataqueue.{h,cc}... looks ready for testing,
1714                         once things compile again
1715                 - changed free list copy in router.cc to use
1716                         DataQueue::append_from()
1717                 - finished packet.{h,cc} implementation, ready for testing
1718                 - finished controller.{h,cc}, ready for testing
1719                 - finished m_desktop.{h,cc}, ready for testing
1720                 - added skeleton m_serial.cc
1721                 - the base library and utilities compile again!
1722                 - added constructor for SocketZero(queue)
1723                 - fixed ErrnoError::GetMsg()
1724                 - updated GUI and opensync plugin to compile with new API
1725                 - moved Raw Send/Receive socket functions to private
1726                 - fixed packet header size bug in socket that caused
1727                         socket ID override to be skipped
1728                 - fixed incorrect use of gettimeofday()
1729                 - fixed race condition where Controller could destroy
1730                         the Usb::Device object before the SocketRoutingQueue
1731                         was done with it
1732                 - fixed segfault in SocketZero::RawSend() when a router
1733                         was in use
1734                 - fixed Open() bugs in btool... Open() must be outside of loops
1735                 - btool uses the router thread now, for testing
1736                 - partially implemented m_serial.{h,cc}... needs testing
1737                 - added automatic buffer allocation to SocketRoutingQueue
1738                         constructor
1739                 - made AllocateBuffers() a little smarter, so it was not
1740                         pure appending
1741                 - added a context data pointer to the SocketRoutingQueue
1742                         RegisterInterest callback
1743                 - added RegisterInterest functionality to Socket class
1744                 - added exceptions on router read errors in socketzero
1745         2008/01/26
1746                 - implemented router.{h,cc}... looks ready for testing,
1747                         once things compile again
1748         2008/01/25
1749                 - merged HEAD changes
1750                 - added router.cc and continued work on new arch
1751                 - merged HEAD changes for 2008 copyright statements
1752                 - added scoped_lock.h
1753                 - added ErrnoError exception class
1754                 - documented Controller / SocketRoutingQueue behaviour
1755                 - more router implementation
1756                 - simplified pppob
1757                 - audit and cleanup of socket.{h,cc} code... looks ready
1758                         for testing now, once things compile again
1759                 - removed FIXME in router.*
1760                 - removed pthread header from pppob as it is not needed
1761         2007/11/22
1762                 - merged HEAD changes
1763         2007/10/25
1764                 - merged HEAD changes
1765         2007/10/19
1766                 - branch started, to track development of the new socket
1767                         architecture, and new mode architecture, needed
1768                         to support GPRS modem support, and threaded
1769                         USB access
1770                 - committed work-in-progress... does not compile
1772 2008/04/10
1773         - added Tasks and Memos to TODO list
1774 2008/03/27
1775         - added support for Blackberry 8120, which has a unique Product ID
1776                 Sourceforge tracker ID: 1829537
1777 2008/03/22
1778         - removed TimeZones from TODO list, as it is done
1779 2008/03/21
1780         - version bump:
1781                 - configure.ac
1782                 - src/Makefile.am
1783                 - src/version.cc
1784                 - gui/src/BackupWindow.cc
1785                 - src/Doxyfile
1786                 - rpm/barry.spec
1787                 - debian/changelog
1788                 - opensync-plugin/src/barry_sync.cc
1789         - added GCC visibility support, limiting what symbols are visible
1790                 in the shared library, libbarry... this makes a drastic
1791                 reduction in the symbol table, and should avoid future
1792                 name clashes with other libraries such as opensync
1793                 See: http://gcc.gnu.org/wiki/Visibility
1795 Release: version 0.12 - 2008/03/21
1796 ------------------------------------------------------------------------------
1797 2008/03/21
1798         - changed maintainer script to use CVS export instead of checkout,
1799                 to avoid the CVS directories
1800         - added support for building Debian source packages with proper
1801                 diff.gz and dsc files
1802         - fixed find warning in maintainer/make-rpm.sh
1803         - added support for Ubuntu binary packages to the maintainer build
1804                 scripts
1805 2008/03/13
1806         - renamed all vformat_ and VFormat symbols in opensync plugin's
1807                 copy of vformat code, so they don't conflict with the
1808                 real opensync libraries
1809 2008/03/07
1810         - updated the install.php web page with Paul Dugas's notes on
1811                 building RPM's from CVS
1812         - fixed problem in tools/Makefile.am where bs11nread was included
1813                 in build, even if --with-boost was not specified
1814                 on ./configure command line
1815 2008/03/06
1816         - changed format of Boost serialization file output from btool,
1817                 so that the database name is stored as the first line
1818                 of the file
1819         - added tools/bs11nread.cc to read Boost serialization file data
1820                 written by btool
1821         - minor adjustments to r_message.h and r_timezone.h
1822         - updated s11n-boost.h header to match record classes
1823 2008/03/01
1824         - applied Time Zone parsing patches from Brian Edginton
1825         - added Time Zones to list of supported parsers in btool.cc
1826 2008/02/29
1827         - changed configure.ac to use bzip2 for "make dist".. thanks to
1828                 Paul Dugas for the tip
1829 2008/02/28
1830         - committed Chris Burgess's update to the roadmap document
1831         - applied Paul Dugas's x86-64 build patch, except the
1832                 tar.bz2/tar.gz change
1833         - updated AUTHORS file
1834 2008/02/22
1835         - fixed configure.ac's --with-boost option, so that without args,
1836                 it defaults to using --includedir and --libdir settings,
1837                 instead of hardcoding /usr/include and /usr/lib... this
1838                 should allow smarter compiling on 64 bit systems
1839         - updated RPM spec file to use new --with-boost behaviour
1840         - ahem, fixed configure.ac again... don't use --includedir and
1841                 --libdir, as those are install targets... oops.
1842                 Don't add path overrides at all if not specified.
1843 2008/01/25
1844         - fixed locale issues in src/data.cc
1845         - updated copyright statments for 2008
1846 2007/12/21
1847         - applied wording correction patch to btool from Matt LaPlante
1848 2007/12/07
1849         - changed hard coded databases names in btool to calls to
1850                 <recordclass>::GetDBName()
1851         - version bump:
1852                 - configure.ac
1853                 - src/Makefile.am
1854                 - src/version.cc
1855                 - gui/src/BackupWindow.cc
1856                 - src/Doxygen
1857                 - rpm/barry.spec
1858                 - debian/changelog
1859                 - opensync-plugin/src/barry_sync.cc
1860         - updated TODO
1862 Release: version 0.11 - 2007/12/01
1863 ------------------------------------------------------------------------------
1864 2007/12/01
1865         - fixed null pointer bug in Probe class (bug #1842407)
1866         - added pause to maintainer release script
1867 2007/11/30
1868         - version bump:
1869                 - configure.ac
1870                 - src/Makefile.am
1871                 - src/version.cc
1872                 - gui/src/BackupWindow.cc
1873                 - src/Doxygen
1874                 - rpm/barry.spec
1875                 - debian/changelog
1876                 - opensync-plugin/src/barry_sync.cc
1878 Release: version 0.10 - 2007/11/30
1879 ------------------------------------------------------------------------------
1880 2007/11/30
1881         - added support to the usbwrap Match class to limit its
1882                 search by busname / devname
1883         - added support to the Probe class to limit its search for
1884                 Blackberry devices to a given bus or device name
1885         - added command line options to btool for the above Probe
1886                 bus/device names, and updated the man page
1887         - updated the www docs with regard to the new usb_storage
1888                 behaviour and the new blacklist files... less
1889                 concern about berry_charge and usb_storage conflicts
1890         - added bidentify tool and accompanying man page
1891         - fixed bug in rpm maintenance script that used the wrong
1892                 spec file for opensuse
1893 2007/11/29
1894         - added better error checking to breset
1895         - commented the sleep() for the 8830
1896         - added code to handle the race condition where usb_storage
1897                 claims the device before bcharge arrives on the scene,
1898                 by asking the kernel to detach the driver from
1899                 the Mass Storage interface... this change makes it
1900                 possible to run bcharge, moving from 0006 to 0004
1901                 to 0001 and back to 0004, all *while* usb_storage
1902                 is loaded!
1903         - changed Probe class behaviour so that it will not throw an
1904                 exception on Device Busy (-EBUSY) but instead
1905                 log the error in an internal array and keep going.
1906                 This makes it possible to use btool and barrybackup
1907                 with two devices plugged in at the same time.
1908                 BACKWARD COMPATIBILITY NOTE: this changes initializaion
1909                         behaviour, but in practice, it should only
1910                         make applications look more capable, not less.
1911         - updated btool to show errors logged by Probe
1912         - added message to specify which PIN device is being used by btool
1913         - added explanatory comments to udev rules files, about why
1914                 they are so verbose
1915 2007/11/27
1916         - added ClearHalt() calls to probe and controller classes, just
1917                 before any communication happens... the 8830 seems
1918                 to need this
1919 2007/11/23
1920         - added usbwrap.cc:GetConfiguration()
1921         - added code to check whether the configuration is the one
1922                 we require, before calling SetConfiguration()... and not
1923                 to call it if unnecessary.  This allows us to run
1924                 at the same time as usb_storage.
1925                 Thanks to Martin Owens for not letting this issue go. :-)
1926         - added sleep to bcharge, before calling usb_reset()... the
1927                 Blackberry 8830 behaves like a Pearl device in that
1928                 it has mass storage support, but behaves like a Classic
1929                 in that it resets itself... the usb_reset() seems
1930                 to reset it back to 0006.  The sleep allows the device
1931                 to disappear via its own reset, and let usb_reset()
1932                 fail naturally on these devices.
1933                 This is not an ideal solution... mainly for testing.
1934 2007/11/09
1935         - added modprobe/blacklist-berry_charge as per Simon Ruggier's
1936                 suggestion.  Thanks also to Niels de Vos for a similar
1937                 suggestion.
1938         - fixed udev rules to work on both old and new distros
1939                 Thanks to Duncan Mak for the bug report.
1940         - AUTHORS update
1941         - fixed string comparison to use case insensitive compare in
1942                 opensync plugin
1943         - updated Debian package to include modprobe blacklist file
1944         - updated rpm spec file to include modprobe blacklist file
1945         - split the maintenance scripts into release and test, so
1946                 that release package builds can be done faster
1947 2007/10/26
1948         - opensync plugin fixes:
1949                 - fixed memory leak in vBase::GetAttr()
1950                 - added support in vformat parser to parse "blocks"
1951                         and keep track of the hierarchy when
1952                         parsing an iCalendar, etc.
1953                 - added support for searching for attributes only
1954                         inside certain blocks (i.e. find first
1955                         DTSTART in VEVENT block, not VTIMEZONE block)
1956 2007/10/25
1957         - fixed bug in Calendar::Clear, missing the Free / Class
1958                 member variables, leaving them uninitialized
1959         - added examples/addcalendar.cc
1960         - added more logging to the opensync plugin, logging the
1961                 ToBarry conversion results
1962         - added code to force struct tm.tm_isdst to -1 before calling
1963                 mktime, in vformat.c
1964                 - fixed typo in previous fix
1965 2007/10/12
1966         - renamed ktrans and translate to bktrans and btranslate to avoid
1967                 file name clashes with libtranslate of Gnome
1968                 Closes bug #1812410 reported by Troy Engel.
1969         - version bump:
1970                 - configure.ac
1971                 - src/Makefile.am
1972                 - src/version.cc
1973                 - gui/src/BackupWindow.cc
1974                 - src/Doxygen
1975                 - rpm/barry.spec
1976                 - debian/changelog
1977                 - opensync-plugin/src/barry_sync.cc
1978         - fixed missing default config file in the debian package for
1979                 the opensync plugin
1980                 Closes bug #1812224 reported by Ariel (adonatti).
1981         - added debian dbg packages for tracing segfaults
1982         - modified maintainer scripts so debug packages would reference
1983                 source code located in /usr/src/barry-0.9, etc.
1985 Release: version 0.9 - 2007/10/12
1986 ------------------------------------------------------------------------------
1987 2007/09/29
1988         - adjusted autosuspend disabling code in bcharge, based on new
1989                 information on how kernels 2.6.21 / 2.6.22 work.
1990                 See bcharge.cc for comments.  If device/power/level or
1991                 device/power/autosuspend exist, charging should now work
1992                 without recompiling the kernel.
1993         - updated website docs with autosuspend info
1994 2007/09/27
1995         - large update to the doc/www web pages, moving some of the
1996                 information in README files to html format, so that it
1997                 is commonly available on the web
1998         - added step in maintenance scripts to automatically build the
1999                 .html files in doc/www when making a tarball release
2000 2007/09/22
2001         - added libopensync 0.22 version requirement to barry.spec file,
2002                 but it doesn't seem to work on OpenSuSE 10.2, where it's
2003                 needed.... hmmmm
2004 2007/09/21
2005         - updated README to mention new tree build configure options
2006         - fixed the configure scripts and makefiles so that when building
2007                 with custom CXXFLAGS and LDFLAGS environment variables,
2008                 it doesn't break the full-tree build mode, when
2009                 using --enable-gui and/or --enable-opensync-plugin
2010         - added config.h.in~ to buildgen.sh clean target
2011         - converted Debian build scripts to use cdbs
2012         - added opensync plugin binary package for Debian
2013         - added "Getting Started" section to web pages, as well as an
2014                 explanatory document for various system requirements
2015         - turned on opensync build in RPM maintainer scripts
2016 2007/09/20
2017         - added filename to power/state error message in bcharge.cc
2018         - adjusted maintainer scripts to automatically adjust barry.spec
2019                 for opensuse rpm builds
2020 2007/09/13
2021         - fixed some of the release build scripts and added support for
2022                 automated opensuse 10.2 builds
2023                 - fixed build target to i386
2024                 - changed scripts to add to PKG_CONFIG_PATH variable instead
2025                         of overwriting it
2026 2007/09/07
2027         - added website docs to doc/www... these are out of date at the
2028                 moment, and hopefully by including them here, they
2029                 will be updated more frequently
2030 2007/09/05
2031         - applied Simon Ruggier's build system patch that allowed a build
2032                 of all 3 components from the root directory and fixed the
2033                 configure scripts to support external build directories
2034         - reordered clean commands in the buildgen.sh scripts, and removed
2035                 the INSTALL files, since they are auto-generated by autoconf
2036         - removed extraneous buildgen.sh calls in maintainer scripts
2037         - added Simon Ruggier to AUTHORS
2038         - added explanatory note to 3 stage test build process in
2039                 maintainer script
2040 2007/08/24
2041         - fixed Category handling in the Contact record class, to
2042                 parse the comma separated string into an array,
2043                 and back
2044                 Note: this involves a change to the boost serialization
2045                         and will affect backward compatibility with
2046                         old serialization datafiles
2047         - added Category to examples/addcontact.cc
2048         - added Category support to the opensync plugin
2049 2007/08/23
2050         - fixed wrong read/write in btool output (oops)
2051         - added BadSize exception, and changed CheckSize() function
2052                 to throw it on error
2053         - changed backup GUI to catch BadSize exceptions on initial
2054                 connect, and try a reset if that error occurs, since
2055                 that likely means the device didn't shutdown properly
2056         - fixed in opensync plugin:
2057                 - some vcard data contains types codes in capital letters,
2058                         so added lower case conversion routine
2059                 - changed the order of address lines, so that address1
2060                         is the street, address2 is the extended address,
2061                         and address3 is the PO Box.  The Blackberry
2062                         doesn't seem to have any PO Box field.
2063 2007/08/20
2064         - added -e endpoint override option to btool
2065         - added status message to endpoint override
2066 2007/08/18
2067         - added configure check for strnlen, and implementation for
2068                 systems that don't have it, or that have it implemented
2069                 incorrectly.  Went a little paranoid here, since
2070                 AC_FUNC_STRNLEN doesn't set a define in config.h,
2071                 so I had to do it manually, and check in case autoconf
2072                 changes in the future... ugh.  See src/strnlen.h for
2073                 the gory details.
2074         - added code in probe.cc to fetch the device's description.
2075                 The description is now part of the probe results
2076                 along with the PIN.  Updates to protocol.h, adding
2077                 a new attribute definition.
2078                 Thanks to Rick Scott for pointing out the code in
2079                 XmBlackberry where he implemented this first.
2080         - fixed header dependency in record-internal.h
2081         - updated the "required autoconf" version to 2.61 for root build
2082         - moved nested structs out of the record classes that contain them,
2083                 in order to better support SWIG and Python
2084 2007/08/17
2085         - changed bcharge to use getopt() for its argument processing
2086         - added options -p and -s to bcharge, to adjust usb suspend
2087                 settings automatically where possible
2088         - updated the udev rules to use the new bcharge settings
2089         - updated the bcharge man page with the new arguments
2090 2007/08/16
2091         - cleaned up Usb exception handling, moving libusb error code
2092                 processing into the Usb::Error exception class.
2093                 error.cc is now an empty shell
2094         - added return codes to the Usb::Error exceptions
2095         - removed aboutdialog.{h,cc} from the backup GUI since even
2096                 Debian stable now has up-to-date gtkmm libraries
2097         - added more user friendly error message for the "device busy"
2098                 case, recommending 'rmmod usb_storage'.
2099 2007/08/09
2100         - added better error checking to bcharge.cc
2101         - version bump:
2102                 - configure.ac
2103                 - src/Makefile.am
2104                 - src/version.cc
2105                 - gui/src/BackupWindow.cc
2106                 - src/Doxygen
2107                 - rpm/barry.spec
2108                 - debian/changelog
2109                 - opensync-plugin/src/barry_sync.cc
2110         - removed usb_set_configuration() check from bcharge.cc, since
2111                 that may fail under normal operation, in this case
2113 Release: version 0.8 - 2007/08/03
2114 ------------------------------------------------------------------------------
2115 2007/08/03
2116         - moved Interface implementation to usbwrap.cc file
2117         - added dout debugging messages to usbwrap.cc
2118         - clarified unhandled packet error message in socket.cc
2119         - added temporary workaround in opensync-plugin environment's
2120                 Reconnect(), for odd message seen on newer Blackberry
2121                 devices
2122         - fixing issues with Brian Edginton's MessageRecord patch (2007/06/29)
2123                 - fixed missing size check in message oriented ParseHeader()
2124                 - fixed endian conversion issues (also found one pre-existing
2125                         endian bug in the process)
2126                 - moved message timestamp converter code to time.cc
2127         - added Barry version number to opensync plugin name
2128         - changed maintainer scripts and rpm.spec to use bzip2 instead of gzip
2129         - added opensync-plugin to configure script build
2130         - added -S option to btool, to list supported parsers and builders
2131         - slight change to opensync-plugin/buildgen.sh to cleanup config.h.in~
2132         - opensync-plugin/README update
2133         - added opensync-plugin/patches for others who may be building and
2134                 testing the plugin with OpenSync 0.22
2135         - added debian package build scripts to maintainer/
2136 2007/08/01
2137         - added entry to doc/TroubleShooting.txt
2138 2007/07/28
2139         - added doc/TroubleShooting.txt
2140 2007/07/27
2141         - opensync plugin:
2142                 - fixed bug in vcard.cc that was using the FN field
2143                         for the broken-down name instead of N
2144                 - added dbId and dbName to DatabaseSyncState
2145                 - added Reconnect() functionality to BarryEnvironment class
2146                         and moved connect logic out of barry_sync.cc
2147                 - changed the batch commit functionality in barry_sync.cc
2148                         to single-change-commit.  Why?  Because opensync
2149                         0.22 groups all batch changes into one group
2150                         and calls one batch commit function, even if you
2151                         registered two.  Moving to single change commit
2152                         mode removes a chunk of unneccessary code
2153                         from the plugin as well, and can in theory
2154                         ease memory pressure in the library.
2155                 - added FinishSync() to perform actions needed on successful
2156                         syncing completion
2157                 - disconnect on successful sync completion, and reconnect,
2158                         since the device's dirty flags don't seem to
2159                         be updated until a disconnect occurs.
2160 2007/07/26
2161         - added ReadDataArray() to data.h, using an istream instead of
2162                 requiring a file
2163         - added raw data version of BuildField() to record-internal.h
2164                 This is so that btool doesn't add extra null terminators
2165                 to unknown data, when restoring with option -s
2166         - fixed bugs in r_contact.cc:
2167                 - fixed bug that caused a LastName/FirstName swap
2168                         if FirstName was empty and you wrote a contact
2169                         record into the device.... First/Last Name
2170                         fields are position sensitive, and the code
2171                         was missing the empty FirstName case on writing
2172                 - fixed bug in BuildFields() and Dump() where they
2173                         were not updated to handle the new field
2174                         table added for the postal address changes
2175                         on 2007/07/20, oops
2176         - opensync plugin:
2177                 - changed the plugin config file, so it is possible to
2178                         turn debug output on/off without recompiling
2179                 - moved the standalone Map2Uid() function into
2180                         the DatabaseSyncState class, and changed the
2181                         code to produce "contact-#" and "calendar-#"
2182                         UID strings, instead of just numbers
2183                 - changed default PIN to -1, so that if the user doesn't
2184                         configure properly, it will fail... this is a
2185                         safety measure to avoid syncing with different
2186                         devices and corrupting the cache/idmap...
2187                         this should be fixed someday, to handle this
2188                         automatically
2189                         On second thought... is this right?  Perhaps
2190                         it is better to fail if the PIN is not what
2191                         is expected, so a user doesn't accidentally
2192                         sync the wrong device and lose data.
2193                         Actions to take on new PIN:
2194                                 - force slow_sync, or
2195                                 - fail
2196                 - incorporated the new VCardConverter code into the
2197                         main barry_sync.cc plugin code
2198                 - fixed bug that did not clear the devices dirty flags
2199                         in the case where a sync only read data from it,
2200                         and didn't write
2201                 - changed PIN error message number to hex
2202 2007/07/20
2203         - minor wording change in backup GUI prompt: "Backup working..." to
2204                 "Backup in progress..."
2205         - renamed Contact class's Title field to JobTitle for clarity
2206         - added record function ParseFieldString(), which properly handles
2207                 strings from the device that have multiple null terminators,
2208                 and changed the record parsing code to use this new function
2209         - moved FullName() function from ldif.cc to r_contact.cc since it
2210                 is generally useful in areas outside of LDIF processing
2211         - refactored postal addresses in the Contact record class into
2212                 a new class called PostalAddress
2213         - renamed Address class in record.h to EmailAddress
2214         - moved Contact::GetPostalAddress() to record.cc as part of the
2215                 new PostalAddress class and renamed it
2216                 PostalAddress::GetLabel()
2217         - opensync plugin:
2218                 - refactored vformat helpers into separate base class
2219                         called vBase
2220                 - added vCard converter class
2221                 - commented out the code that skipped over the adding
2222                         of empty attribute values and parameters,
2223                         since VCARD depends on some of this behaviour
2224                 - movified vformat.c:vformat_find_attribute() to take
2225                         an extra nth argument, in order to search
2226                         for multiple attributes with the same name...
2227                         the way this is coded is a bit inefficient...
2228                         but we're moving away from vformat when we move
2229                         to OpenSync 0.3x / 0.40, so this is just temporary
2230                         pain
2231 2007/07/19
2232         - added SUBSYSTEM=="usb_device" to example udev rules, in order
2233                 to avoid running bcharge for each endpoint that is
2234                 added by udev, when first plugged in.  Running bcharge
2235                 back-to-back multiple times can crash some
2236                 Blackberries.
2237 2007/07/14
2238         - opensync plugin:
2239                 - fixed ID mapping bug in the case of a non-numeric UID
2240                         from syncing external -> Barry, and then the
2241                         new Barry ID would look like a new change
2242                         when syncing back from Barry -> external.
2243                 - added support for slow sync
2244                 - added clear() to idmap class
2245                 - added vformat attr parameter extraction class
2246                 - added more trace logging during vformat/Barry conversions
2247                 - added Notification time support
2248                 - handled "all day" vformat special case, when DTEND
2249                         does not exist in a vformat data block
2250         - changed the min1900_t time conversion functions to handle
2251                 the 0xffffffff special case, when notifications
2252                 are turned off on a calendar event (src/time.cc)
2253         - also made the calendar data dump output clearer for
2254                 disabled timestamps, and added debug output
2255                 for the raw min1900 value, in case there are more
2256                 special cases in the future
2257 2007/07/13
2258         - fixed null pointer access in opensync's HasMultipleVEvents()
2259 2007/07/12
2260         - upper management directive: revert all OpenSync 0.3x changes
2261                 and proceed with OpenSync 0.22.  Reverting the
2262                 opensync-plugin/src tree to Barry 0.7 status.
2263 2007/07/06
2264         - reorganized exception and trace code in opensync plugin
2265         - added XmlToCalendar() function, based on unfinished opensync
2266                 library API that is not yet finished... will be
2267                 committed to opensync svn tree when complete
2268         - added OSyncXMLField logger to plugin trace class
2269 2007/06/29
2270         - applied email MessageRecord patch from Brian Edginton (thanks!)
2271         - updated Message::Dump() to output more valid mbox data...
2272                 the goal is to be able to do:
2273                         btool -d "Messages" > email.mbox
2274                         mutt -f email.mbox
2275         - changed some TODO's to FIXME's to keep it grep-consistent
2276         - applied Folder support patch from Brian Edginton
2277         - fixed pedantic compile warnings, and changed order in src/Makefile.am
2278         - removed unneeded cast in src/r_folder.cc
2279 2007/06/28
2280         - minor adjustment to ctags building in buildgen.sh
2281         - applied patch from Brian Edginton for better boost detection
2282                 in configure.ac
2283         - added boost usage message to btool -h output
2284 2007/06/21
2285         - more porting of OpenSync module to 0.30
2286         - added ctags build for opensync source tree to buildgen.sh
2287 2007/06/14
2288         - changed PKG_CONFIG_PATH setting in rpm script, so that systems
2289                 like SuSE that have an extensive PKG_CONFIG_PATH
2290                 in general use will not break on build
2291         - added PKG_CONFIG_PATH to debian script too, just in case :-)
2292         - added debian/changelog to doc/ReleaseChecklist.txt
2293         - added comment to rpm/barry.spec regarding SuSE RPM builds
2294 2007/06/08
2295         - applied patch from Niels de Vos fixing debian package build
2296                 dependency
2297         - applied Brian Edginton's Saved Email Messages patch
2298         - updated r_saved_messages.cc comment to match header
2299         - added GetRecType()/GetUniqueId() to r_saved_messages.h, since
2300                 SetIds() is already there
2301         - removed Address version of operator<<() from message related headers
2302                 and moved into record.h
2303         - added std::hex to message related dumps, and changed output to
2304                 be more mbox-like
2305         - updated doc/CodingStyle.txt to cover switch() statements
2306         - opensync compiles again, with 0.30!  (not functional yet)
2307                 - moving closer to more modular and reusable plugin functions
2308         - updated release checklist for opensync version number
2309 2007/06/07
2310         - added doc/CodingStyle.txt... preliminary version
2311 2007/06/06
2312         - applied Brian Edginton's PIN message patch
2313         - changes to PIN message patch:
2314                 - fixed missing backslash in src/Makefile.am
2315                 - fixed tab alignment throughout
2316                 - removed typedef from Address struct
2317                 - added clear() to Address... might as well, if it it is
2318                         going to be a standalone type
2319                 - fixed missing comma in PINMessageFieldLinks table
2320                 - changed MessageRecordId in PINMessage to load from a new
2321                         uint32_t field in CommonField, instead of piggy
2322                         backing on a field for other use
2323         - did some testing and found that PINMessage's MessageRecordId
2324                 is the same as the RecordId given through the SetIds()
2325                 API... but these Id's are duplicated in the protocol...
2326                 RecordId is stored in the protocol header, while
2327                 MessageRecordId is stored in the record it self as
2328                 a common field... added RecType and RecordId to
2329                 PIN Message so that we store both of these
2330         - updated AUTHORS
2331 2007/05/27
2332         - added item to gui/TODO
2333         - applied Brian Edginton's s11n-boost.h patch
2334 2007/05/25
2335         - renamed template values to more consistent naming scheme
2336         - applied memos and tasks patch from Brian Edginton, slightly
2337                 modified to split into the new separate files system
2338         - changes to memos and tasks classes:
2339                 - reformatted the code to match coding style
2340                         (come on Brian) :-)
2341                 - added copyright notice
2342                 - changed class to singular (Memo, not Memos)
2343                 - placed in Barry namespace
2344                 - added #ifdef header protectors
2345                 - added new files to Makefile.am
2346                 - added new r_*.h headers to record.h
2347         - added support for Memos and Tasks to tools/btool.cc, based on
2348                 Brian Edginton's patch
2349                 (currently commented out, for Boost library reasons):
2350         - added doc/CommitPolicy.txt
2351         - updated AUTHORS
2352 2007/05/24
2353         - added ctags generation to buildgen.sh
2354         - applied record.{h,cc} fix patch from Brian Edginton
2355                 - ClassFlag
2356                 - FreeBusyFlag
2357                 - Clear() fixes
2358         - fixed broken formatting in above patch
2359         - refactored record parser classes into separate files for each
2360         - changed the ConvertHtoB<> template to inline, as it caused
2361                 linker errors with the new file layout
2362 2007/05/17
2363         - fixed bug in Debian packaging that put util commands in
2364                 /bin and /sbin instead of /usr/bin and /usr/sbin
2365         - commited byteswap.h replacement code from gm2net
2366         - backup gui:
2367                 - removed unneeded debug messages on stdout
2368                 - changed the default for debug output to "off"
2369                         and added a command line option to turn
2370                         it on if necessary  (--debug-output)
2371                 - command line option --help now also works
2372         - fixed bug in Calendar class where it didn't initialize
2373                 RecType properly... and cleaned up other RecType
2374                 code to use the GetDefaultRecType() functions,
2375                 localizing the constants in one place
2376 2007/05/11
2377         - applied patches from Brian Edginton, parsing more
2378                 fields in Contact and Calendar records
2379         - added Brian Edginton to AUTHORS
2380         - reformatted record.{h,cc} to match the rest of the code,
2381                 removed commented out code, and removed mention of
2382                 Outlook from the comments.
2383         - updated udev/10-blackberry.rules.Debian for Debian Etch
2384         - updated debian/rules to use new udev rules file
2385         - removed debian/postinst, as stable versions of Debian now
2386                 have a recent udev, and don't need the special handling
2387         - updated Debian build scripts to build separate packages:
2388                 libbarry
2389                 libbarry-dev
2390                 barry-util
2391                 barrybackup-gui
2392         - added menu support to Debian barrybackup-gui package
2393         - made the buttons bigger in the backup GUI, as they were too
2394                 small on Debian Etch
2395         - opensync plugin:
2396                 - more progress in porting to opensync 0.30, heavily
2397                         based on the example plugin in the opensync
2398                         svn tree...  this is a work in progress, and so far
2399                         is incomplete
2400 2007/05/04
2401         - opensync plugin:
2402                 - partial porting to opensync 0.30 (in progress!)
2403                 - fixed bug in sync_done where it reported context error
2404                         and then success afterward
2405         - checking in new INSTALL files based on Etch's autoconf run
2406         - added item to gui's todo list
2407         - bumped version numbers to 0.8 in:
2408                 - configure.ac
2409                 - src/Makefile.am
2410                 - src/version.cc
2411                 - gui/src/BackupWindow.cc (about dialog)
2412                 - src/Doxygen
2413                 - rpm/barry*.spec
2415 Release: version 0.7 - 2007/05/02
2416 ------------------------------------------------------------------------------
2417 2007/05/02
2418         - added rpm building to maintainer/release scripts
2419         - added "HEAD" feature to tarball creation script, for easier testing
2420         - updated maintainer/README
2421         - updated maintainer/release.sh to use new HEAD feature too
2422 2007/05/01
2423         - added pppob to rpm barry.spec
2424         - bumped release number in barry.spec
2425 2007/04/30
2426         - opensync plugin:
2427                 - fixed size check bugs (strlen() == 0 when empty)
2428                 - finished refactoring calendar conversion routines
2429                 - started timezone parsing, but this may go away
2430                         if we use opensync 0.30's time functions and
2431                         xml data format...
2432                 - added development note to README
2433 2007/04/29
2434         - updated README and opensync-plugin/README with more current
2435                 build instructions
2436         - opensync plugin:
2437                 - refactored some calendar conversion routines
2438                 - added Barry->vCalendar conversion for recurring appointments
2439 2007/04/27
2440         - opensync module:
2441                 - removed some unneeded trace logs
2442                 - fixed VEventConverter constructor bug, with uninitialized
2443                         m_Data pointer
2444                 - eased up the requirement that every calendar event
2445                         must have a summary... defaults to "<blank subject>"
2446                         if empty
2447                 - added more VCALENDAR fields to match Barry::Calendar record
2448                 - fixed case sensitive compares in vformat.c
2449 2007/04/26
2450         - opensync module work:
2451                 - added id map class to map string uid's from OpenSync to
2452                         numeric ID's from the Blackberry
2453                 - fixed bug in CommitChange() where it was still using
2454                         a hard coded calendar record state table
2455                 - added lots of logging throughout
2456                 - fixed bug where newly added records didn't use the
2457                         change object's uid, but created a new ID,
2458                         causing another sync on the next run
2459                         i.e. (CommitData_t was missing an argument)
2460                 - fixed bug where uninitialized notification time was
2461                         written to the Blackberry
2462         - more opensync module work:
2463                 - refactored the environment class into another subclass
2464                         called DatabaseSyncState, and moved some stand-
2465                         alone functions from barry_sync.cc into
2466                         the environment classes
2467                 - added a tagged constructor to the trace class
2468                 - fixed idmap::Load() to clear map before loading
2469 2007/04/20
2470         - renamed barry-config to barry-sync, the default configuration
2471                 file for the opensync module... and filled it with
2472                 a sample configuration
2473         - added code to update the calendar cache, and write it to disk
2474                 on success (opensync module)
2475         - added code to clear dirty flags in the device (opensync module)
2476         - allowed comments in the config file
2477         - added vformat.c from libopensync 0.22, since the vformat
2478                 routines are not available from the plugin side
2479 2007/04/19
2480         - updated gui/TODO
2481         - added -d switch to bcharge to switch back from 0001 to 0004 mode,
2482                 changed the auto-detection logic to ignore iProduct and
2483                 only use idProduct, and updated man page
2484         - updated breset to recognize the Pearl in 00004 mode as well
2485         - changed src/probe.cc logic to assume that the second endpoint
2486                 pair is the one needed for database communication, instead
2487                 of doing a reverse search from the end... newer Pearls
2488                 in Dual mode seem to have at least 3 or 4 endpoint pairs,
2489                 and the old search didn't always work
2490         - applied sourceforge patch #1696884 from Peter Silva, updating
2491                 the Debian build for Etch, and including all files in one deb
2492         - added Peter Silva to AUTHORS file
2493         - uncommented the "make distclean" in debian/rules, and removed
2494                 the reliance on /tmp when installing 99-barry-perms.rules
2495         - applied bb_task_format.txt patch from Peter Silva
2496         - fixed each misspelling of "recurrance" to "recurrence"
2497         - tweaked src/probe.cc again for paranoia's sake... start at
2498                 offset 1 if more than 1 endpoint pair, otherwise start
2499                 search at 0
2500         - split up opensync module into multiple source files, and started
2501                 using the opensync vformat routines for parsing and building
2502                 the vevent20 data (experimental)
2503 2007/04/04
2504         - more incremental work on the opensync plugin, adding ADDED
2505                 and MODIFIED functionality... (experimental!)
2506 2007/03/30
2507         - added code to dump extra descriptors during device discovery,
2508                 if found
2509         - bumped opensync version number in configure.ac, and made
2510                 the configure scripts more consistent with the rest
2511                 of the project
2512         - fixed printf-format size bug in opensync module
2513 2007/03/29
2514         - applied patch from Niels de Vos, fixing deb udev rules for Pearl
2515         - updated AUTHORS
2516         - fixed extra space bug in LDIF output (added space when creating
2517                 FullName, even if there was no last name)
2518         - fixed Address Book record parsing in Contact class... the
2519                 Blackberry database uses field id 0x20 for both the
2520                 first and last names, and if only a last name exists,
2521                 the first name will be empty.  Fixed parser to handle
2522                 this special case, without relying on string length.
2523                 Thanks to Troy Engel for reporting above two LDIF bugs.
2524         - added a few more constants to bcharge.cc
2525         - renamed opensync's configure.in to configure.ac
2526 2007/03/17
2527         - fixed bcharge to avoid endless reset loop... oops
2528 2007/03/16
2529         - reorganized bcharge.cc to make it possible to switch between
2530                 Pearl modes 0004 and 0001
2531         - added flag to BadPassword exception class, to signal whether
2532                 the library considers the device "out of retries" or not
2533         - updated socket.cc for new BadPassword exception
2534         - added special case to Controller class destructor to reset the
2535                 device if being destroyed in a half-open state... this is
2536                 a temporary fix until we understand how to handle
2537                 the "already open" message we get when opening the Desktop
2538                 in some cases
2539         - added password prompt dialog to the backup GUI
2540         - fixed possible memory leak in GUI's DeviceInterface::Connect()
2541 2007/03/08
2542         - committed Troy Engel's bbrules_mass_symlinks.patch, fixing
2543                 udev rules for the Pearl
2544         - updated 10-blackberry.rules.Debian to match 10-blackberry.rules's
2545                 functionality
2546         - applied Troy Engel's barry.spec patch to generate all required
2547                 RPM's... Thank you!  Notes in the README taken from
2548                 the sourceforge tracker entry containing the patch.
2549         - added libusb lib flags to tools/ and examples/ makefiles,
2550                 and tweaked configure.ac with a better default,
2551                 to build cleanly on RHEL 4
2552         - modified rpm/barry.spec:
2553                 - does not create doc-only barry base package anymore
2554                 - fixed "barry-backup" typo
2555                 - removed the patch step, as version 0.7 shouldn't need it
2556                 - added license file to each package
2557                 - commented out console perms scripts, pending mailing list
2558                         discussion
2559         - updated AUTHORS
2560         - applied Troy Engel's barry.spec patch to fix RHEL4 compile issues
2561         - fixed 80 column wrapping error in barry.spec, thanks to Troy Engel
2562                 for the bug report
2563         - applied Troy Engel's udev permissions patch for Redhat/Fedora
2564                 systems, which automatically set the ownership of a
2565                 newly plugged in device to the currently logged in console
2566                 user.
2567         - added udev/README to document what all those files are for...
2568                 part of the text comes from the sourceforge comment
2569                 on the above udev permissions patch from Troy Engel
2570         - uncommented the console perms scripts for rpm/barry.spec
2571         - added libglademm-2.4 to gui/README's dependency list
2572         - made usbwrap.* calls more threadsafe
2573         - added Usb::Timeout exception for timeout errors
2574         - added preliminary UsbSerData support to library for GPRS modem
2575                 functionality, using Rick Scott's XmBlackBerry's serdata.c
2576                 as a guide
2577         - added overloaded Socket::Send() for sending without receiving
2578         - added preliminary pppob command line tool
2579 2007/03/02
2580         - version bump in:
2581                 - configure.ac
2582                 - src/Makefile.am
2583                 - src/version.cc
2584                 - gui/src/BackupWindow.cc (about dialog)
2585                 - src/Doxyfile
2586                 - rpm/barry.spec
2587         - build system tweaks for opensync-plugin, and added a buildgen.sh
2588                 for it
2589         - added better debug messages in probe.cc and usbwrap.cc's
2590                 device discovery code
2591         - changed error handling for null interface->altsetting pointers
2592                 when doing device discovery in usbwrap.cc.  Seems that
2593                 some devices report a higher number in bNumInterfaces
2594                 than are really available... in this case, let's
2595                 just ignore the missing data and assume success
2596         - applied udev script patch #1663986 from Troy Engel
2597         - applied barry-bcharge.spec patch #1672178 from Troy Engel
2598         - ReleaseChecklist update
2599         - added rpm/README based on Troy Engel's patch notes
2600         - updated new barry-bcharge.spec for version 0.7, removing patch
2601                 dependency
2603 Release: version 0.6 - 2007/02/28
2604 ------------------------------------------------------------------------------
2605 2007/02/28
2606         - fixed size checks for device database records larger than 64K
2607                 Thanks to Michael Brown for the bug report.
2608         - added initial release maintainer scripts
2609         - fixed odd backup success message in GUI when doing a backup with
2610                 no databases selected in configuration
2611                 Thanks to Michael Brown for the bug report.
2612         - added udev permissions file patch from Michael Brown
2613         - added Michael Brown to AUTHORS
2614         - updated README, gui/README, and doc/USB-capture.txt
2615         - added -o command line switch to bcharge.cc, and updated man page
2616 2007/02/23
2617         - changed library behaviour so it only turns on libusb debug output
2618                 if in data dump mode.  In btool, -v controls this output.
2619         - minor stream formatting fix in btool
2620         - added OpenSSL dependency to build for password hash support
2621         - made debug dout() output conditional on Init() flag... In btool,
2622                 -v now controls this as well
2623         - reverse engineered more of the initial probe packets, and
2624                 implemented probing in struct based code... changes include:
2625                 - added support for "attribute fetch" packets, used at
2626                         the beginning of USB conversations
2627                 - defined object/attribute id codes for the PIN number
2628                 - made Protocol::SocketCommand more robust, and implemented
2629                         its sequence number behaviour
2630                 - moved ModeSelectCommand into SocketCommand, as it is a
2631                         socket 0 level command
2632                 - added initial protocol struct: PasswordChallenge
2633                 - renamed Barry::Packet to DBPacket
2634                 - added ZeroPacket for socket 0 packet creation and analysis
2635                 - Barry::Packet is now the base class for the above
2636                 - implemented socket 0 behaviour in socket.cc
2637                 - changed return values for Send/Receive/Packet/NextRecord
2638                         members in the Socket class from bool to void, as they
2639                         don't generate errors themselves, but only can
2640                         have an error if Usb::Device throws an exception.
2641                         Cleaned up all code that called these members as well.
2642                 - removed "last status" from Socket class as it was unused
2643                 - updated probe.cc to use new socket 0 implementation
2644                 - removed two of the hard coded packet handshakes in favour
2645                         of socket 0 packets
2646                 - updated controller.cc:
2647                         - uses new socket 0 implementation
2648                         - removed "flag" hack when opening sockets and
2649                                 selecting modes, as it should use the
2650                                 socket 0 sequence number
2651         - added initial, incomplete prototype header for the C API
2652         - updated some .cvsignore files
2653         - updated TODO
2654         - updated ReleaseChecklist.txt, adding rpm spec file
2655         - added the following to ZeroPacket:
2656                 - ChallengeSeed()
2657                 - RemainingTries()
2658                 - SocketResponse()
2659                 - SocketSqeuence()
2660         - moved Command() to base Packet class
2661         - added comments to protostructs.h and size constants for the
2662                 new PasswordChallenge struct
2663         - added password support to Socket and Controller classes
2664                 Thanks to Rick Scott's XmBlackBerry for the openssl
2665                 password hashing logic.
2666         - updated btool to use new password support, and updated its man page
2667 2007/02/22
2668         - updated Doxygen input files and version, and added to ReleaseChecklist
2669         - fixed btool PIN output for LDIF mode, now commented in output
2670         - major LDIF overhaul:
2671                 - split LDIF specific code out of the record class and
2672                         into its own
2673                 - fixed "full name" behaviour that added an extra space
2674                         in dn attributes, as reported by Troy Engel
2675                 - added support for mapping of LDIF attributes to Barry
2676                         contact field names
2677                 - fixed base64 handling, so attributes are only so encoded
2678                         if necessary
2679                 - fixed base64 attribute reading inconsistency... some
2680                         notes fields were missed in old version if not
2681                         encoded
2682                 - added support for specifying alternate attribute for
2683                         constructing a FQDN, instead of just "cn"
2684                 - updated btool and upldif to use new features
2685         - large update to btool manpage
2686         - fixed initialization bug in Contact constructor (missed RecType)
2687 2007/02/15
2688         - added ktrans.cc to make reading of kernel usbfs_snoop logs easier
2689         - removed commented code from translate.cc
2690         - added Pearl handshake support to bcharge.cc, which resets the
2691                 Pearl so that the vendor specific 0xFF class exists.
2692                 This should allow use of btool on the Pearl.
2693         - added Data::AppendHexString to data.cc
2694         - added better probing support for the Pearl, so it detects the
2695                 Product ID 0x0004 mode, and does a search for class 0xFF
2696                 instead of hardcoding it.
2697 2007/02/10
2698         - applied README patch from Ian Darwin
2699         - minor tweaks to README
2700         - added missing errno.h header in src/usbwrap.cc for AMD64
2701                 Thanks to Jonathan Hudson for reporting the bug.
2702         - tightened up size checks in Data::ReleaseBuffer()
2703         - stable libusb *does* return the actual length of the USB packet...
2704                 fixed this in usbwrap.cc to set the actual size of read data,
2705                 and removed the size hacks elsewhere in the code:
2706                 probe.cc, protocol.cc, socket.cc, usbwrap.cc
2707 2007/02/09
2708         - added proper return codes for error conditions in btool.cc
2709         - clarified some stream output code in the library, for hex/dec numbers
2710         - removed old, non-working connect.cc test program
2711         - added iomanip to debug.h
2712         - changed usbwrap to call libusb again if EINTR and EAGAIN
2713                 This should fix one of the OpenBSD issues
2714 2007/02/04
2715         - updated AUTHORS
2716         - fixed bug in barrybackup GUI that didn't create the target path
2717                 if the user didn't do Edit | Config first.
2718                 Thanks to Ian Darwin for reporting the bug.
2719         - applied gui/src/ConfigFile.cc header fix patch for OpenBSD
2720                 from Ian Darwin
2721 2007/02/03
2722         - added initial btool.1 man page from Ian Darwin
2723         - updated man/Makefile.am for new btool.1
2724         - updated AUTHORS
2725         - applied btool -h help clarification patch from Ian Darwin
2726 2007/02/02
2727         - reworked exception hierarchy, so applications can handle all
2728                 Barry related exceptions, including Usb errors, with
2729                 one base class: Barry::Error
2730         - fixed all the ripple changes this caused throughout the codebase
2731         - added BadPassword exception
2732 2007/02/01
2733         - version bump in:
2734                 - configure.ac
2735                 - src/Makefile.am
2736                 - src/version.cc
2737                 - gui/src/BackupWindow.cc (about dialog)
2738         - updated doc/ReleaseChecklist.txt
2739         - added usb-level breset.cc command line tool
2740         - fixed bug in gui/src/tarfile.* for systems where
2741                 sizeof(int) != sizeof(void*)
2742                 - TarFile class now uses a plugin style for the compression
2743                         operations, to allow for threadsafe versions if needed
2744                         in the future.
2745                 - also fixed leaked file handle bug in open_compressed()
2746                 - Thanks to Jonathan Hudson for reporting this for 64bit systems
2747         - minor signed comparison fixes in the library
2748         - added better protocol data dumping code in probe.cc
2749         - added Usb::Device::BulkDrain(), to prevent Barry from hanging
2750                 due to pending reads
2752 Release: version 0.5 - 2007/01/26
2753 ------------------------------------------------------------------------------
2754 2007/01/26
2755         - added missing errno.h header to gui/src/util.cc
2756         - lots more endian fixes after testing on iMac
2757         - iostream output size fixes
2758         - added option to btool to reset the device via software
2759         - beefed up exception handling in barrybackup
2760         - checked in opensync work-in-progress: trace logging, pointer bugfix
2761                 this is still experimental
2762         - added aboutdialog.* files from gtkmm24 2.10.6, so we have a dialog
2763                 class for systems running older versions of gtkmm, like
2764                 Debian stable
2765         - uncommented the about box menu handler
2766         - added "cleanall" option to root buildgen.sh script
2767         - update ReleaseChecklist.txt
2768         - removed CVS auto-history strings from aboutdialog.*
2769 2007/01/25
2770         - found a link between the unknown field in tagged protocol headers
2771                 and the unknown field in RecordStateTable entries.  This
2772                 field matters when uploading certain databases, such as
2773                 Browser Options.  It is unknown what this field really
2774                 means, but we're calling it RecType.  Updated the API
2775                 to use this in all parser objects and builder objects
2776                 and record objects that use it.
2777         - changed some uses of uint64_t to uint32_t, in Contact and
2778                 Calendar record objects... unique IDs only seem to be
2779                 32 bits
2780         - added new static function to record classes: GetDefaultRecType()
2781                 This returns the default rectype that should work
2782                 for that record.  Ideally this should be retrieved from
2783                 the device, but in the case where a database has no
2784                 records, this info would be good to know.
2785         - updated convenience template function Controller::AddRecordByType()
2786                 to use GetDefaultRecType()
2787         - documented the recurrence data and how to use it in Calendar objects
2788         - added data debug output for incoming USB packets in the
2789                 socket class... when we ported to the stable libusb
2790                 we lost some of the verbose output... this should get it
2791                 back.  (In the official release, you need to uncomment
2792                 ddout() in debug.h for the full blast of debug output).
2793         - backup GUI updates:
2794                 - changed error_done signal into a pure error signal,
2795                         and changed the logic so the restore continues
2796                         even if there was a protocol error on one database
2797                 - changed status bar messages to show what's happening
2798                         i.e. Backup or Restore
2799                 - default to not restore the "Handheld Agent" database as
2800                         it appears to be read-only on the device
2801                 - added temporary Restore & Backup mode for debugging
2802                 - added extra hyphen to backup files to show date/time better
2803                 - updated GUI to save and restore the new RecType field
2804                         supported now by the library
2805 2007/01/21
2806         - added future considerations to doc/ReleaseChecklist.txt
2807         - applied big endian patch from Jonathan Hudson
2808         - changes to patch:
2809                 - removed endian.h include from barry.h, since applications
2810                         using the library should not care about endianness
2811                 - hard coded the path to config.h in endian.h
2812                         so that endian.h never makes it into the final
2813                         install
2814                 - removed DEFAULT_INCLUDES setting from src/Makefile.am
2815                         for the same reason
2816                 - removed config.h dependency in btool.cc and used library
2817                         Version call instead
2818         - added big/little endian text to the Barry::Version call
2819         - updated AUTHORS
2820         - fixed install location of bcharge when building with ./configure;
2821                 now goes to sbin/ for both source compile and binary packages
2822                 Thanks to Jonathan Hudson for reporting this bug.
2823 2007/01/20
2824         - added smarter timeout values to controller, and allowed
2825                 timeout overrides in the packet, socket, and usbwrap code...
2826                 extra timeouts are needed for erasing databases for
2827                 some older devices
2828         - added an explicit DataDumpParser class to btool.cc, as the
2829                 library doesn't always have extreme verbose debugging on...
2830                 this makes sure anyone can always get raw database packets
2831                 through btool, for development
2832         - added thread callback signals for error finishes and erase_db
2833                 operations, so the GUI is updated properly
2834         - more GUI cleanups (status bar updates, etc)
2835         - finished implementation of GUI restore
2836         - fixed gtkmm/glibmm exception handling when the exceptions
2837                 occur in sigc signal handlers... in that case,
2838                 exceptions need to be handled with
2839                 Glib::add_exception_handler()
2840         - added filename-only reading support to TarFile class
2841         - added pending gui/TODO items
2842 2007/01/19
2843         - backup GUI now properly shows progress
2844         - the buttons become insensitive when backup is busy
2845         - refactored directory check code, and added mkdir check
2846                 when to the backup setup (so the directory exists
2847                 when we try to write to it)
2848         - updated code to use Barry::Data in new namespace
2849 2007/01/18
2850         - moved Data class into Barry namespace
2851 2007/01/13
2852         - updated copyright dates for the new year
2853         - clarified exception message in controller.cc
2854         - fixed pointer initialization bug in controller.cc
2855         - added documentation comments to parser.h and builder.h
2856         - updated ReleaseChecklist.txt
2857         - updated README
2858         - changed Barry library configure scripts to make better
2859                 use of pkg-config for autodetecting dependencies
2860         - added initial Barry Backup GUI (gui/ directory), capable of making
2861                 backups only at this point
2862 2007/01/11
2863         - added doc/ReleaseChecklist.txt
2864         - added version API, returning version number and string
2865         - added Troy Engel to AUTHORS
2866         - added special case to bcharge.cc for the Blackberry Pearl,
2867                 which doesn't reset itself after the charge handshake
2868                 Thanks to Troy Engel for testing.
2869 2007/01/05
2870         - added pkg-config support for the library (libbarry-0.pc.in)
2871         - fixed compile error on g++ 3.3 systems (missing stdint.h
2872                 in probe.h)
2873         - fixed protocol hang at end of Controller operation... in
2874                 controller destructor, it was deleting the USB interface
2875                 before closing the socket at the BlackBerry level, thereby
2876                 leaving the device in Desktop mode
2877 2007/01/04
2878         - support the newer udev packages on Ubuntu, which need slightly
2879                 different rules
2880         - modified bcharge.cc to search for Pearl devices too.
2881                 USB product ID 6
2882         - added Pearl product ID to probe code, but likely not functional
2883                 yet until we find someone able to get a USB capture for us
2884 2006/12/29
2885         - version bump in configure.ac and src/Makefile.am
2887 Release: version 0.4 - 2006/12/29
2888 ------------------------------------------------------------------------------
2889 2006/12/29
2890         - added bcharge.cc to the tools/ directory (whoohoo!)
2891         - added initial release version of rpm/barry.spec (aka bcharge.spec)
2892                 This begins the barry binary release, currently only
2893                 including the bcharge utility, but possibly more in
2894                 the future.  Future binary packages will likely include
2895                 libbarry, libbarry-devel, etc, which barry will then
2896                 depend on.
2897         - added udev rule script for BlackBerry devices
2898         - added man/ directory and bcharge.1 manpage
2899         - added debian/ directory for building deb packages, with initial
2900                 package scripts
2901         - added rpm/make-rpm-tarball.sh for building RPMs
2902         - split out technical docs into separate libbarry.docs file for
2903                 a future Debian install
2904         - added more cleaning to buildgen.sh
2905         - added new udev rule file for Debian stable
2906         - hardcoded g++ to 3.3 in debian/rules as I have multiple versions
2907                 on my system and need to compile releases with stable
2908 2006/12/21
2909         - ported Barry to use the stable branch of libusb
2910                 NOTE: no longer depends on the devel libusb tarball!
2911                         Just use your distro's libusb packages.
2912         - fixed more endian issues
2913         - minor update to TODO
2914 2006/12/15
2915         - moved Exceptions, Hacking, and VersionNotes to doc/
2916         - added doc/USB-capture.txt
2917 2006/12/08
2918         - added Controller::AddRecord() and template helper
2919         - added beginning version of generic RecordFetch<> template
2920         - set default of Barry::Init() to false (no data dump mode)
2921         - added examples/ directory, with first addcontact.cc example
2922 2006/12/07
2923         - added autoconf support based on Peter McAlpine's patch
2924         - renamed Makefiles to Makefile.orig and added script to turn
2925                 on old build system if wanted
2926         - fixed boost-specific error path in btool
2927         - moved platform specific code out of time.h and into time.cc
2928         - moved btool.cc, translate.cc, and upldif.cc out of src/ and
2929                 into their own tools/ subdirectory
2930         - added NEWS file to make autotools happy
2931         - added a "clean" option to the buildgen.sh script... maintainer's
2932                 use only
2933         - reworked autoconf and automake files, to support
2934                 barry as a library, to move the programs into their
2935                 own tools directory, and support a proper installation
2936         - fixed headers in parser.h, btool.cc, and upldif.cc to work
2937                 properly when installed standalone
2938         - added tools/Makefile.plain for testing compiling against
2939                 installed barry library
2940         - added commentary on version number system
2941         - removed Makefile.conf and Makefile.orig, as new autoconf
2942                 system supercedes it
2943         - added support for boost serialization library in autoconf build
2944         - added library version number to autoconf build
2945         - changed boost flag to __BARRY_BOOST_MODE__ to avoid collisions
2946         - removed debug.h dependency from btool.cc
2947         - removed libusb check in favour of specific --with-libusb
2948                 option... may need to revisit this later
2949         - quick installation update in README
2950 2006/12/01
2951         - fixed some missed endian conversions in record.cc and added
2952                 some size checks
2953         - fixed endian issues in time.h
2954         - added 2 more functions to the time zone API, and adjusted
2955                 the time zone table for better defaults in North America
2956         - added btool and upldif to the make install sequence
2957         - added support for Calendar recurrence data
2958         - small doc/TimeZones.txt update
2959 2006/11/24
2960         - added BlackBerry time zone code list, reverse engineered from a 7750
2961         - added GetTimeZone() to convert device time zone codes to useful data
2963 Release: version 0.0.3 - 2006/11/24
2964 ------------------------------------------------------------------------------
2965 2006/11/23
2966         - added return code check to Controller::SaveDatabase()
2967         - fixed Data() class constructor, so it doesn't auto-convert
2968                 from any int
2969         - fixed size checking bug in Packet::ReturnCode() that caused
2970                 uploading to device to fail
2971 2006/11/10
2972         - added Exceptions doc file, documenting the C++ exceptions used,
2973                 and their hierarchy
2974         - fixed small bug in 'make install' which didn't build first
2975         - minor documentation and cleanup in upldif.cc
2976         - added utility functions to the RecordStateTable class,
2977                 GetIndex() and MakeNewRecordId()
2978         - changed btool so that the -d command modifiers can be
2979                 specified multiple times to work with multiple records
2980                 at once
2981         - added Calendar sync code to the opensync module (not complete)
2982         - cleaned up exception handling in the opensync module, making
2983                 more use of the base exception to make sure no
2984                 exceptions leak into the C library code
2986 Release: version 0.0.2 - 2006/10/12
2987 ------------------------------------------------------------------------------
2988 2006/10/12
2989         - fixed casting error in opensync module
2990         - minor updates to documentation to prepare for release
2991 2006/09/29
2992         - added stdint.h to parser.h for uint32_t.  Thanks Ron Gage for
2993                 the bug report
2994 2006/09/08
2995         - large refactoring of the packet parsing and building code,
2996                 splitting the code into 3 groups:
2997                 - record: handles record specific parsing and building...
2998                         this is mostly subfields with CommonField structs
2999                         as their headers, but sometimes has a specific
3000                         header of its own, in the case of email
3001                         Note: email's header is as yet undecoded.
3002                         Record does not know the details of the packet
3003                         formats, only the formats of its own record data.
3004                 - packet: handles building of complete command packets
3005                         and handles parsing of commonly used header values,
3006                         providing an API for it... packet does not know
3007                         the record format details, but does know the
3008                         details of each Database Operation (protocol.h)
3009                         packet format.
3010                         So far, it seems that there is a real separation
3011                         of operation formats and record formats, with the
3012                         record formats being the same even with different
3013                         database operation codes (GET_RECORDS /
3014                         OLD_GET_RECORDS), which was not confirmed before.
3015                         See the header size of the email record after
3016                         refactoring.
3017                 - controller: handles device state, and the management of
3018                         sockets, commands, and checking for response values.
3019                         The Controller object does not know the format
3020                         of either the record or the packet it is sending,
3021                         but does know the protocol handshake logic used
3022                         to talk to the device.
3023         - implemented SetRecord (SET_RECORD_BY_INDEX)... syncing, here
3024                 we come!
3025         - spelling correction in opensync-plugin/AUTHORS
3026 2006/09/01
3027         - added sample hotplug scripts
3028         - added .cvsignore files for doxygen and opensync directories
3029         - added src/endian.h... still need to add configure support to
3030                 handle non-little-endian machines
3031         - added exception handler in opensync plugin commit_change()
3032         - removed the device reset code in probe.cc, as resetting a device
3033                 can renumber the devices in /proc on kernel 2.4.x,
3034                 and cause a failure to reach the device...
3035                 FIXME - this should be changed someday to reset if probing
3036                 fails, and restart the probe on reset, as sometimes
3037                 the blackberry devices respond differently when not reset
3038                 Ideally, the probe protocol should be properly reverse
3039                 engineered.
3040         - added support for retrieving record state table, which is needed
3041                 for smarter syncing
3042         - added support for retrieving, deleting, and clearing the dirty
3043                 flags of individual blackberry device records
3044         - added endian macros throughout the code
3045 2006/07/13
3046         - added opensync-plugin to root Makefile's clean
3047         - updated time conversion calls to match opensync's latest SVN
3048         - added opensync_change_set_changetype() (only add for now,
3049                 for development)
3050         - removed slow sync functions for now
3051 2006/07/07
3052         - added quick "install" makefile target, to src/install by default
3053         - added static library target... this is temporary until autoconf
3054                 stuff is added properly... needed for the opensync plugin
3055         - documented in comments that Barry::BError is intended to be
3056                 the base classes for all exceptions
3057         - added first round of implementation of an opensync plugin, based
3058                 on the example plugin code from the opensync sources
3059 2006/06/22
3060         - added to Contact record class:
3061                 - Clear()
3062                 - ReadLdif() to load and parse LDAP data
3063         - added fragmented send support to Socket class
3064         - added Probe::FindActive() to make client programs more streamlined
3065         - fixed hex/decimal printing of record counts in btool
3066         - added upldif.cc, a utility to take ldapsearch output on stdin
3067                 and upload it to a blackberry
3068         - updated src/.cvsignore
3069 2006/06/16
3070         - added parsing of service book fields:
3071                 - old and new name
3072                 - old and new unique ID (UID)
3073                 - content ID (CID)
3074                 - old and new description
3075                 - DSID
3076                 - bes domain / domain
3077         - date change in legal.txt
3078         - added initial parsing of ServiceBook field 0x09, and calling it
3079                 ServiceBookConfig for now, for lack of a better name
3080         - added parsing for ServiceBook field 0x02 on 72xx Blackberries...
3081                 seems to be a name or description, but doesn't appear
3082                 in the device's own GUI... called "Hidden Name" for now
3083 2006/06/09
3084         - added ServiceBook record class and parser code, based on some
3085                 of Ron Gage's reverse engineering... code is by Chris Frey
3086         - added AUTHORS file
3087         - fixed the libusb set_configuration/claim_interface order
3088                 bug in controller.{h,cc}... already fixed in probe,
3089                 but not controller.  Thanks Ron Gage for finding this.
3090 2006/05/25
3091         - renamed Changelog to ChangeLog in preparation for autoconf
3092         - renamed Todo to TODO in preparation for autoconf
3093 2006/05/18
3094         - make clean cleans up tests properly now
3095 2006/03/31
3096         - turned source code browsing on in Doxyfile
3097         - added LoadDatabaseByName() and LoadDatabaseByType() template members
3098                 to the Controller class
3099                 - new file: controllertmpl.h
3100         - documentation fixes in builder.h
3101         - added static GetDBName() functions to all record classes, in
3102                 support of the template Controller functions
3103         - fleshed out DatabaseDatabase::GetDBNumber() and GetDBName(),
3104                 returning errors properly
3105         - documented sample btool.cc code better, and added example
3106                 of Controller template member usage
3107 2006/03/29
3108         - copyright dates updated for 2006
3109 2006/01/05
3110         - backed out update to latest libusb DEVEL tree, since it is buggy.
3111                 Stick with libusb 2005/11/26
3112 2005/12/30
3113         - added clean target to convenience Makefile
3114         - added Boost to list of dependencies in README
3115         - fixed minor compile warnings in base64.cc
3116         - fixed new USB discovery code, and changed endpoint usage to use
3117                 it, instead of the READ_ENDPOINT and WRITE_ENDPOINT
3118                 constants... constants are now removed
3119                 common.h, controller.cc, probe.cc, probe.h, usbwrap.cc
3120         - added ClearHalt() to Usb::Device (usbwrap.cc)
3121         - updated usbwrap.h to match latest libusb CVS devel tree
3122         - updated README to refer to 2005/12/30 libusb CVS devel tree
3123         - added roadmap to Todo list
3124 2005/12/29
3125         - added convenience Makefile in root directory
3126         - added Hacking document
3127         - minor touchups to README
3128         - added caution warning to README, since this release will support
3129                 delete / overwrite / upload functionality
3130         - minor compile order change in Makefile (speed reasons)
3131         - added dynamic endpoint discovery to probe.cc
3132         - changed claim_interface/set_configuration() function call order in
3133                 probe.cc based on feedback on the libusb mailing list
3134         - added USB discovery code to usbwrap.{h,cc}
3135 2005/12/23
3136         - fixed packing bug in new upload header struct
3137         - renamed CommonField union from data to u to be consistent
3138         - added return_code field to DBAccess struct, for error checking
3139         - added response checking during upload: if response is non-zero
3140                 throw exception in controller.cc
3141         - added sorting operators to record parser classes... when writing
3142                 contact data to the device, it may be important to write
3143                 group link items last, since they reference other contacts...
3144                 This needs to be tested, and if not required, removed.
3145         - added GROUP_FLAG field code to Contact parser class
3146         - fixed offset bug in Contact and Calendar Build() functions
3147         - fixed name bug in Contact::Build(), now output only with data
3148         - added appointment type flag support to Calendar record parser
3149                 class, and "all day event" flag support
3150 2005/12/22
3151         - added autoconf to Todo list
3152         - refactored the protocol structures so that record structs can
3153                 be reused for upload and download
3154         - with new protostructs, more header control is handled by
3155                 controller.cc instead of record.cc parsers and builders
3156         - parser code now accepts an offset, to govern start of record data
3157         - changed Data sizes from int to size_t and removed casts
3158         - removed unneeded Parser::GetHeaderSize() (new protostructs make
3159                 this obsolete)
3160         - added Calendar::Build() for calendar uploads
3161 2005/12/10
3162         - added s11n-boost.h serialization templates for boost::serialization
3163         - added boost::serialization to build
3164         - minor change in usbwrap.cc to display error codes in decimal
3165         - added SizePacket special case code to Socket::Send()... this is
3166                 required when uploaded packet size is a multiple of 0x40,
3167                 a special 3 byte size packet is sent
3168         - moved some record class variables to public: so they can be
3169                 properly serialized
3170         - fixed variable name but in RecordBuilder template
3171         - added -f switch to btool, for saving and loading of record data
3172         - added -s switch to btool, for uploading saved data back to handheld
3173         - added Controller::SaveDatabase()
3174 2005/12/08
3175         - fixed potential casting / pointer bug in controller.cc
3176         - added builder.h, to support uploading
3177         - minor comment fixes in parser.h
3178         - added preliminary Contact protocol record building support
3179         - fixed field order bug in ContactRecord protocol struct
3180         - Contact record.h class now saves unknown Group Link field,
3181                 for later saving
3182 2005/12/07
3183         - added -fno-strict-aliasing to compiler flags so gcc-4.0.x won't
3184                 optimize away protocol struct casts
3185                 see:
3186                 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25235
3187                 http://mail-index.netbsd.org/tech-kern/2003/08/11/0001.html
3188                 http://groups.google.ca/group/comp.lang.c++.moderated/ \
3189                         browse_thread/thread/e7bf096832526f8e/5714701b \
3190                         02a2a3cc?hl=en#5714701b02a2a3cc
3191         - changed headers so that any low level protocol-specific sizes and
3192                 structs are completely hidden in the library...
3193                 this adds library-only header: protostructs.h
3195 Release: version 0.0.1 - 2005/11/25
3196 ------------------------------------------------------------------------------
3197 2005/11/25
3198         - added barry.h for documentation purposes and application usage
3199         - updated README for release
3200         - renamed SBError exception class to BError
3201         - updated Doxyfile to version 1.4.5
3202         - added more doxygen comments
3203 2005/11/24
3204         - added conversion routines (and tests) between time_t and min1900_t
3205         - added -v option to btool to dynamically control protocol dumping
3206         - removed duplicated database database table display in controller.cc
3207         - minor spelling corrections
3208         - added copyright to usbwrap.{h,cc} as per earlier meeting
3209         - added support for Old protocol Calendar entries
3210 2005/11/20
3211         - added legal.txt, to save typing when adding new source files
3212         - ignore test-base64 file (cvsignore)
3213         - added contact-to-ldif generation, and updated supporting code
3214         - added argument to btool to support contact-to-ldif operation
3215         - added Contact::GetPostalAddress()
3216         - added README documentation in preparation for future release
3217 2005/11/19
3218         - added parser.{h,cc} virtual wrapper to generalize LoadDatabase()
3219         - added code to socket.cc's Packet() command to re-receive on
3220                 reception of empty packets... this seems to be a signal
3221                 from the device that it needs more time for long transfers
3222                 Current limit: 10 blank packets before exception is thrown
3223                 Observed maximum blank count: 1
3224         - added MessageRecord and OldMessageRecord to protocol.h
3225         - changed common record field structs to one CommonField struct
3226         - increased default USB timeout to 10 seconds (some loaded devices
3227                 seem to need more time...)
3228         - reorganized record.{h,cc} to try to reduce the code duplication
3229         - record.h classes now "know" the sizes of their corresponding
3230                 protocol structs... this may cause trouble down the line
3231                 with Python, if used(?)
3232         - added Message class for Email records
3233         - removed the "Get*" database functions and replaced with
3234                 general LoadDatabase() call, which loads any database
3235                 available, and parses it with a Parser object
3236         - added GetDBID() for searching for database numbers via name
3237         - added test code to retrieve and display all email
3238         - cleaned up comments
3239         - renamed blackberry.{h,cc} to controller.{h,cc}
3240         - renamed bbtool.cc to btool.cc
3241         - added Makefile.conf
3242         - added copyright notices to source files
3243         - added COPYING file with GPL
3244         - put parser in Barry namespace, and added auto_ptr-like mode for
3245                 store object pointers
3246         - added doxygen docs
3247         - added header comments to convo.awk script
3248         - removed Test() function in Controller object, and made class
3249                 better suited to its general API purpose
3250         - changed OpenMode() so it loads command table and DBDB... it is now
3251                 a public API function
3252         - moved Controller test code to btool.cc and made tool more
3253                 generically useful... can now download any DB by name on
3254                 the command line
3255         - added mode checks to Controller
3256         - added -t and -d command line options to btool
3257         - added base64 routines from John Walker / Fourmilab and Citadel/UX
3258         - converted base64 routines into an API, instead of hardcoded
3259                 file based
3260 2005/11/18
3261         - changed project name to Barry, including namespaces
3262         - renamed sbcommon.* to common.*
3263         - increased USB default timeout to 2 seconds
3264         - fixed formatting bug in Data operator<< output
3265         - cleaned up the protocol packet structs, getting rid of the
3266                 confusing param/simple split... param is now the tableCmd
3267                 from the Command Table
3268         - moved protocol structs from record.h to protocol.h
3269         - added support for older version of the USB protocol, which matches
3270                 the Cassis spec more closely
3271         - fixed the hardcoded offsets in blackberry.cc's protocol parsing
3272         - fixed Socket::Close() so on error, socket flags are reset.
3273                 This stops Close() from being called twice on exception
3274                 destructors
3275 2005/11/17
3276         - added Doxyfile to the project
3277         - tuned Makefile
3278         - added mode selection support to Blackberry class (RIM Desktop,
3279                 RIM Bypass, and RIM_JavaLoader)
3280                 Mode selection governs which socket is used in subsequent
3281                 data transfers.
3282         - added Command Table parsing and protocol support
3283                 Blackberry class, and CommandTable record class
3284         - added Database database parsing and protocol support
3285                 Blackberry class and DatabaseDatabase record class
3286         - added Address book retrieval support - dumps data to stdout for now
3287         - fixed bug in CopyOnWrite mode in Data class, where could allocate
3288                 less buffer than data copied
3289         - added "easy exception" debug output macro
3290         - fixed minor spelling error in protocol.cc
3291         - fixed ModeSelectCommand protocol structure - it is not a parameter
3292                 command, but uses the unknown slots for socket and flag
3293                 data
3294         - removed hardcoded socket numbers from protocol.h
3295         - fixed bug in socket.cc:Open() where packet size was not properly
3296                 saved
3297         - implemented socket::Close()
3298         - fixed sequence number checks, so it is reset properly on socket 0
3299         - added Socket::NextRecord() for multiple record data transfers
3300         - fixed input handling bug in translate.cc
3301 2005/11/11
3302         - added .cvsignore files to project
3303         - added README notes to document the source architecture
3304         - added dbsetup data script, which shows how to get into database
3305                 mode, using the RIM Desktop mode, and open a socket
3306         - added blackberry.{h,cc} class
3307         - added command line parameters to bbtool.cc
3308                 -l = list only
3309                 -p = specify pin of blackberry device
3310         - added blackberry test code in bbtool.cc - debugging the initial
3311                 opening protocol: sockets, modes, etc... see dbsetup for
3312                 results
3313         - added copy-on-write functionality to Data class, so it can be used
3314                 with plain data buffers with little performance impact
3315         - added eout() and ddout() debugging - to separate:
3316                 - regular debug output
3317                 - exception debug output (should probably be logged to
3318                         syslog someday, and never turned off)
3319                 - raw data dump output
3320         - changed errno SBError exception handler to try to decode the error
3321                 numbers into english (limited success)
3322         - fixed probe and socket USB Bulk message handling, so they don't
3323                 use PollCompletions(), but use IO::Wait() (libusb_io_wait())
3324         - added common packet size checker in protocol.cc
3325         - fixed unpacked protocol packet structs... using gcc's
3326                 __attribute__ ((packed)) ... see protocol.h
3327         - added ModeSelectCommand structure (protocol.h)
3328         - finished Socket::Open() call  (Close() not yet implemented)
3329         - moved Socket::Send/Receive() out of private, as they can be used
3330                 for socket 0 operations.
3331         - cleaned up pointer management with macros:
3332                 MAKE_PACKET()
3333                 COMMAND()
3334                 IS_COMMAND()
3335         - added IO::Wait() and IO::Cancel() to correspond with libusb API
3336         - added datadumping in usbwrap for easy protocol capture
3337         - added preliminary record.{h,cc} classes
3338         - added Contact record parsing, and test code
3339 2005/10/20
3340         - syncberry tree started