Added verbose log message to Controller
[barry/pauldeden.git] / ChangeLog
blobcf23550a908ad322dd518c49a044a183b627f838
1 Release: version 0.13 - 2008/05/??
2 ------------------------------------------------------------------------------
3 2008/05/16
4         - put sequence packet check directly in the SocketZero::RawReceive()
5                 function, which now localizes all sequence packet
6                 handling and checking, as well as avoids packet
7                 order problems when multiple sockets are in use,
8                 such as with pppob...
9                 FIXME - this localized sequence checking may make all
10                 the calls to CheckSequence() obsolete which
11                 should probably be cleaned up someday, if so.
12         - reorganized src/socket.cc to match class private/public
13                 order (no code change, only move)
14         - added verbose log message to Controller constructors, so it is
15                 possible to determine whether a program is using
16                 threaded or non-threaded sockets
17 2008/05/15
18         - mention CVS and git on main documentation "how to" list
19         - moved PPP filter logic into its own class
20         - enhanced PPP filter class to support prepending of
21                 empty bytes if needed, in order to reduce data
22                 copying, and clarified why there is no GetBuffer()
23         - added ProbeResult::HasIpModem() to determine whether
24                 IpModem endpoints are available
25         - added pure virtual Modem base class for common
26                 modem-oriented API (only Open and Write so far)
27         - Mode::IpModem is now derived from Barry::Modem
28         - experimental implementation for Mode::Serial,
29                 which is now derived from Barry::Modem,
30                 and uses PppFilter
31         - pppob now supports IpModem and Serial modes, and logging
32                 to file instead of stderr
33         - added man page for pppob
34 2008/05/10
35         - modified the planned version numbering scheme in doc/VersionNotes,
36                 so that a 1.0 is possible, with 1.50 as the devel series
37 2008/05/09
38         - continuing to update html documentation in preparation for
39                 0.13 release
40 2008/05/02
41         - removed -fvisibility-inlines-hidden compile options since some
42                 distros have old or broken compilers or libraries where
43                 the build breaks looking for STL templates (Ubuntu 7.10,
44                 I'm looking at you...)
45         - changed brecsum so usage information is displayed automatically
46                 if no command line arguments are specified
47         - added opensync-plugin to maintainer test scripts, and added
48                 ubuntu710 to the test build sequence
49 2008/05/01
50         - updated doc/TroubleShooting.txt
51         - removed usb_control message check from IpModem endpoint probing
52                 in src/probe.cc, since some devices, like the 8700
53                 have both RIM_UsbSerData mode and IpModem mode.
54         - fixed serialization code for Calendar record class, in s11n-boost.h
55         - made UnknownField's data member into its own type,
56                 so that when building records, it doesn't get processed
57                 like a null terminated string... also added more
58                 BuildField() helper functions for accuracy
59         - fixed missing fields in the Calendar record build process
60         - added Calendar to list of Builders in tools/btool...
61                 it is now possible to run: btool -s "Calendar" -f datafile
62         - added tools/brecsum program, which calculates SHA1 checksums
63                 on database records, for testing
64         - added brecsum to debian and rpm builds
65         - added recurrence builder function to Calendar record builder code
66                 which completes builder support
67                 Checksums from the following commands now match:
68                         brecsum -d Calendar > sum1.txt
69                         btool -d Calendar -f calendar.dat
70                         btool -s Calendar -f calendar.dat
71                         brecsum -d Calendar > sum2.txt
72                         diff -u <(sort sum1.txt) <(sort sum2.txt)
73 2008/04/29
74         - applied Jason Thomas's ACLOCAL_FLAGS patch to make autoreconf
75                 work again... Thanks!
76         - applied Jason Thomas's debian build dependency patch
77         - updated AUTHORS
78 2008/04/26
79         - started documentation overhaul in doc/www, putting the commonly
80                 asked questions right on the front page, and making it more
81                 goal-oriented, so it is hopefully easier to use
82 2008/04/25
83         - updated NEWS file
84         - fixed error messages in m_desktop.cc that still referred
85                 to Controller
86 2008/04/25
87         - major merge of barry-b1-socket-arch-branch into MAIN.
88           The following is the changelog from that branch, which is now MAIN.
90         2008/04/25
91                 - added thread-safe logging mechanism
92                 - added preliminary IP modem support... requires a recent
93                         device... serial mode is not yet supported
94                 - merged HEAD changes
95         2008/03/27
96                 - changed Barry::Init() so programmer can choose where
97                         debug and exception information goes, instead of
98                         always to stdout
99         2008/03/22
100                 - merged HEAD changes
101         2008/03/20
102                 - fixed bug in probe class, which missed storing the PIN
103                         number in ProbeResult
104                 - also added ProbeResult constructor
105                 - merged changes from visibility branch:
106                         - GCC visibility support, limiting what symbols are
107                           visible in the shared library, libbarry... this makes
108                           a drastic reduction in the symbol table, and should
109                           avoid future name clashes with other libraries such
110                           as opensync
111                           See: http://gcc.gnu.org/wiki/Visibility
112                         - vformat_() function name changes
113         2008/03/07
114                 - merged HEAD changes
115                 - added threads library to new bs11nread build
116         2008/02/28
117                 - fixed variable size issues in btranslate.cc, evident with
118                         some compilers on 64 bit systems
119                 - merged HEAD changes
120                 - added comments for threaded usage in usbwrap.h
121                 - changed router to use SocketId typedef, for clarity
122         2008/02/22
123                 - fixed const char warnings from newer gcc compilers
124                 - controller object now saves a copy of the probe result
125                         and provides an API to retrieve it
126                 - added sanity checks to m_serial.cc
127                 - fixed probe behaviour so that a USB probe on an endpoint
128                         that doesn't respond won't halt everything
129                 - refactored some of the probe code, and added checks for
130                         IP modem endpoints
131                 - added Probe::DumpAll()
132                 - added Open() call to pppob.cc (not yet complete)
133         2008/01/30
134                 - implemented dataqueue.{h,cc}... looks ready for testing,
135                         once things compile again
136                 - changed free list copy in router.cc to use
137                         DataQueue::append_from()
138                 - finished packet.{h,cc} implementation, ready for testing
139                 - finished controller.{h,cc}, ready for testing
140                 - finished m_desktop.{h,cc}, ready for testing
141                 - added skeleton m_serial.cc
142                 - the base library and utilities compile again!
143                 - added constructor for SocketZero(queue)
144                 - fixed ErrnoError::GetMsg()
145                 - updated GUI and opensync plugin to compile with new API
146                 - moved Raw Send/Receive socket functions to private
147                 - fixed packet header size bug in socket that caused
148                         socket ID override to be skipped
149                 - fixed incorrect use of gettimeofday()
150                 - fixed race condition where Controller could destroy
151                         the Usb::Device object before the SocketRoutingQueue
152                         was done with it
153                 - fixed segfault in SocketZero::RawSend() when a router
154                         was in use
155                 - fixed Open() bugs in btool... Open() must be outside of loops
156                 - btool uses the router thread now, for testing
157                 - partially implemented m_serial.{h,cc}... needs testing
158                 - added automatic buffer allocation to SocketRoutingQueue
159                         constructor
160                 - made AllocateBuffers() a little smarter, so it was not
161                         pure appending
162                 - added a context data pointer to the SocketRoutingQueue
163                         RegisterInterest callback
164                 - added RegisterInterest functionality to Socket class
165                 - added exceptions on router read errors in socketzero
166         2008/01/26
167                 - implemented router.{h,cc}... looks ready for testing,
168                         once things compile again
169         2008/01/25
170                 - merged HEAD changes
171                 - added router.cc and continued work on new arch
172                 - merged HEAD changes for 2008 copyright statements
173                 - added scoped_lock.h
174                 - added ErrnoError exception class
175                 - documented Controller / SocketRoutingQueue behaviour
176                 - more router implementation
177                 - simplified pppob
178                 - audit and cleanup of socket.{h,cc} code... looks ready
179                         for testing now, once things compile again
180                 - removed FIXME in router.*
181                 - removed pthread header from pppob as it is not needed
182         2007/11/22
183                 - merged HEAD changes
184         2007/10/25
185                 - merged HEAD changes
186         2007/10/19
187                 - branch started, to track development of the new socket
188                         architecture, and new mode architecture, needed
189                         to support GPRS modem support, and threaded
190                         USB access
191                 - committed work-in-progress... does not compile
193 2008/04/10
194         - added Tasks and Memos to TODO list
195 2008/03/27
196         - added support for Blackberry 8120, which has a unique Product ID
197                 Sourceforge tracker ID: 1829537
198 2008/03/22
199         - removed TimeZones from TODO list, as it is done
200 2008/03/21
201         - version bump:
202                 - configure.ac
203                 - src/Makefile.am
204                 - src/version.cc
205                 - gui/src/BackupWindow.cc
206                 - src/Doxyfile
207                 - rpm/barry.spec
208                 - debian/changelog
209                 - opensync-plugin/src/barry_sync.cc
210         - added GCC visibility support, limiting what symbols are visible
211                 in the shared library, libbarry... this makes a drastic
212                 reduction in the symbol table, and should avoid future
213                 name clashes with other libraries such as opensync
214                 See: http://gcc.gnu.org/wiki/Visibility
216 Release: version 0.12 - 2008/03/21
217 ------------------------------------------------------------------------------
218 2008/03/21
219         - changed maintainer script to use CVS export instead of checkout,
220                 to avoid the CVS directories
221         - added support for building Debian source packages with proper
222                 diff.gz and dsc files
223         - fixed find warning in maintainer/make-rpm.sh
224         - added support for Ubuntu binary packages to the maintainer build
225                 scripts
226 2008/03/13
227         - renamed all vformat_ and VFormat symbols in opensync plugin's
228                 copy of vformat code, so they don't conflict with the
229                 real opensync libraries
230 2008/03/07
231         - updated the install.php web page with Paul Dugas's notes on
232                 building RPM's from CVS
233         - fixed problem in tools/Makefile.am where bs11nread was included
234                 in build, even if --with-boost was not specified
235                 on ./configure command line
236 2008/03/06
237         - changed format of Boost serialization file output from btool,
238                 so that the database name is stored as the first line
239                 of the file
240         - added tools/bs11nread.cc to read Boost serialization file data
241                 written by btool
242         - minor adjustments to r_message.h and r_timezone.h
243         - updated s11n-boost.h header to match record classes
244 2008/03/01
245         - applied Time Zone parsing patches from Brian Edginton
246         - added Time Zones to list of supported parsers in btool.cc
247 2008/02/29
248         - changed configure.ac to use bzip2 for "make dist".. thanks to
249                 Paul Dugas for the tip
250 2008/02/28
251         - committed Chris Burgess's update to the roadmap document
252         - applied Paul Dugas's x86-64 build patch, except the
253                 tar.bz2/tar.gz change
254         - updated AUTHORS file
255 2008/02/22
256         - fixed configure.ac's --with-boost option, so that without args,
257                 it defaults to using --includedir and --libdir settings,
258                 instead of hardcoding /usr/include and /usr/lib... this
259                 should allow smarter compiling on 64 bit systems
260         - updated RPM spec file to use new --with-boost behaviour
261         - ahem, fixed configure.ac again... don't use --includedir and
262                 --libdir, as those are install targets... oops.
263                 Don't add path overrides at all if not specified.
264 2008/01/25
265         - fixed locale issues in src/data.cc
266         - updated copyright statments for 2008
267 2007/12/21
268         - applied wording correction patch to btool from Matt LaPlante
269 2007/12/07
270         - changed hard coded databases names in btool to calls to
271                 <recordclass>::GetDBName()
272         - version bump:
273                 - configure.ac
274                 - src/Makefile.am
275                 - src/version.cc
276                 - gui/src/BackupWindow.cc
277                 - src/Doxygen
278                 - rpm/barry.spec
279                 - debian/changelog
280                 - opensync-plugin/src/barry_sync.cc
281         - updated TODO
283 Release: version 0.11 - 2007/12/01
284 ------------------------------------------------------------------------------
285 2007/12/01
286         - fixed null pointer bug in Probe class (bug #1842407)
287         - added pause to maintainer release script
288 2007/11/30
289         - version bump:
290                 - configure.ac
291                 - src/Makefile.am
292                 - src/version.cc
293                 - gui/src/BackupWindow.cc
294                 - src/Doxygen
295                 - rpm/barry.spec
296                 - debian/changelog
297                 - opensync-plugin/src/barry_sync.cc
299 Release: version 0.10 - 2007/11/30
300 ------------------------------------------------------------------------------
301 2007/11/30
302         - added support to the usbwrap Match class to limit its
303                 search by busname / devname
304         - added support to the Probe class to limit its search for
305                 Blackberry devices to a given bus or device name
306         - added command line options to btool for the above Probe
307                 bus/device names, and updated the man page
308         - updated the www docs with regard to the new usb_storage
309                 behaviour and the new blacklist files... less
310                 concern about berry_charge and usb_storage conflicts
311         - added bidentify tool and accompanying man page
312         - fixed bug in rpm maintenance script that used the wrong
313                 spec file for opensuse
314 2007/11/29
315         - added better error checking to breset
316         - commented the sleep() for the 8830
317         - added code to handle the race condition where usb_storage
318                 claims the device before bcharge arrives on the scene,
319                 by asking the kernel to detach the driver from
320                 the Mass Storage interface... this change makes it
321                 possible to run bcharge, moving from 0006 to 0004
322                 to 0001 and back to 0004, all *while* usb_storage
323                 is loaded!
324         - changed Probe class behaviour so that it will not throw an
325                 exception on Device Busy (-EBUSY) but instead
326                 log the error in an internal array and keep going.
327                 This makes it possible to use btool and barrybackup
328                 with two devices plugged in at the same time.
329                 BACKWARD COMPATIBILITY NOTE: this changes initializaion
330                         behaviour, but in practice, it should only
331                         make applications look more capable, not less.
332         - updated btool to show errors logged by Probe
333         - added message to specify which PIN device is being used by btool
334         - added explanatory comments to udev rules files, about why
335                 they are so verbose
336 2007/11/27
337         - added ClearHalt() calls to probe and controller classes, just
338                 before any communication happens... the 8830 seems
339                 to need this
340 2007/11/23
341         - added usbwrap.cc:GetConfiguration()
342         - added code to check whether the configuration is the one
343                 we require, before calling SetConfiguration()... and not
344                 to call it if unnecessary.  This allows us to run
345                 at the same time as usb_storage.
346                 Thanks to Martin Owens for not letting this issue go. :-)
347         - added sleep to bcharge, before calling usb_reset()... the
348                 Blackberry 8830 behaves like a Pearl device in that
349                 it has mass storage support, but behaves like a Classic
350                 in that it resets itself... the usb_reset() seems
351                 to reset it back to 0006.  The sleep allows the device
352                 to disappear via its own reset, and let usb_reset()
353                 fail naturally on these devices.
354                 This is not an ideal solution... mainly for testing.
355 2007/11/09
356         - added modprobe/blacklist-berry_charge as per Simon Ruggier's
357                 suggestion.  Thanks also to Niels de Vos for a similar
358                 suggestion.
359         - fixed udev rules to work on both old and new distros
360                 Thanks to Duncan Mak for the bug report.
361         - AUTHORS update
362         - fixed string comparison to use case insensitive compare in
363                 opensync plugin
364         - updated Debian package to include modprobe blacklist file
365         - updated rpm spec file to include modprobe blacklist file
366         - split the maintenance scripts into release and test, so
367                 that release package builds can be done faster
368 2007/10/26
369         - opensync plugin fixes:
370                 - fixed memory leak in vBase::GetAttr()
371                 - added support in vformat parser to parse "blocks"
372                         and keep track of the hierarchy when
373                         parsing an iCalendar, etc.
374                 - added support for searching for attributes only
375                         inside certain blocks (i.e. find first
376                         DTSTART in VEVENT block, not VTIMEZONE block)
377 2007/10/25
378         - fixed bug in Calendar::Clear, missing the Free / Class
379                 member variables, leaving them uninitialized
380         - added examples/addcalendar.cc
381         - added more logging to the opensync plugin, logging the
382                 ToBarry conversion results
383         - added code to force struct tm.tm_isdst to -1 before calling
384                 mktime, in vformat.c
385                 - fixed typo in previous fix
386 2007/10/12
387         - renamed ktrans and translate to bktrans and btranslate to avoid
388                 file name clashes with libtranslate of Gnome
389                 Closes bug #1812410 reported by Troy Engel.
390         - version bump:
391                 - configure.ac
392                 - src/Makefile.am
393                 - src/version.cc
394                 - gui/src/BackupWindow.cc
395                 - src/Doxygen
396                 - rpm/barry.spec
397                 - debian/changelog
398                 - opensync-plugin/src/barry_sync.cc
399         - fixed missing default config file in the debian package for
400                 the opensync plugin
401                 Closes bug #1812224 reported by Ariel (adonatti).
402         - added debian dbg packages for tracing segfaults
403         - modified maintainer scripts so debug packages would reference
404                 source code located in /usr/src/barry-0.9, etc.
406 Release: version 0.9 - 2007/10/12
407 ------------------------------------------------------------------------------
408 2007/09/29
409         - adjusted autosuspend disabling code in bcharge, based on new
410                 information on how kernels 2.6.21 / 2.6.22 work.
411                 See bcharge.cc for comments.  If device/power/level or
412                 device/power/autosuspend exist, charging should now work
413                 without recompiling the kernel.
414         - updated website docs with autosuspend info
415 2007/09/27
416         - large update to the doc/www web pages, moving some of the
417                 information in README files to html format, so that it
418                 is commonly available on the web
419         - added step in maintenance scripts to automatically build the
420                 .html files in doc/www when making a tarball release
421 2007/09/22
422         - added libopensync 0.22 version requirement to barry.spec file,
423                 but it doesn't seem to work on OpenSuSE 10.2, where it's
424                 needed.... hmmmm
425 2007/09/21
426         - updated README to mention new tree build configure options
427         - fixed the configure scripts and makefiles so that when building
428                 with custom CXXFLAGS and LDFLAGS environment variables,
429                 it doesn't break the full-tree build mode, when
430                 using --enable-gui and/or --enable-opensync-plugin
431         - added config.h.in~ to buildgen.sh clean target
432         - converted Debian build scripts to use cdbs
433         - added opensync plugin binary package for Debian
434         - added "Getting Started" section to web pages, as well as an
435                 explanatory document for various system requirements
436         - turned on opensync build in RPM maintainer scripts
437 2007/09/20
438         - added filename to power/state error message in bcharge.cc
439         - adjusted maintainer scripts to automatically adjust barry.spec
440                 for opensuse rpm builds
441 2007/09/13
442         - fixed some of the release build scripts and added support for
443                 automated opensuse 10.2 builds
444                 - fixed build target to i386
445                 - changed scripts to add to PKG_CONFIG_PATH variable instead
446                         of overwriting it
447 2007/09/07
448         - added website docs to doc/www... these are out of date at the
449                 moment, and hopefully by including them here, they
450                 will be updated more frequently
451 2007/09/05
452         - applied Simon Ruggier's build system patch that allowed a build
453                 of all 3 components from the root directory and fixed the
454                 configure scripts to support external build directories
455         - reordered clean commands in the buildgen.sh scripts, and removed
456                 the INSTALL files, since they are auto-generated by autoconf
457         - removed extraneous buildgen.sh calls in maintainer scripts
458         - added Simon Ruggier to AUTHORS
459         - added explanatory note to 3 stage test build process in
460                 maintainer script
461 2007/08/24
462         - fixed Category handling in the Contact record class, to
463                 parse the comma separated string into an array,
464                 and back
465                 Note: this involves a change to the boost serialization
466                         and will affect backward compatibility with
467                         old serialization datafiles
468         - added Category to examples/addcontact.cc
469         - added Category support to the opensync plugin
470 2007/08/23
471         - fixed wrong read/write in btool output (oops)
472         - added BadSize exception, and changed CheckSize() function
473                 to throw it on error
474         - changed backup GUI to catch BadSize exceptions on initial
475                 connect, and try a reset if that error occurs, since
476                 that likely means the device didn't shutdown properly
477         - fixed in opensync plugin:
478                 - some vcard data contains types codes in capital letters,
479                         so added lower case conversion routine
480                 - changed the order of address lines, so that address1
481                         is the street, address2 is the extended address,
482                         and address3 is the PO Box.  The Blackberry
483                         doesn't seem to have any PO Box field.
484 2007/08/20
485         - added -e endpoint override option to btool
486         - added status message to endpoint override
487 2007/08/18
488         - added configure check for strnlen, and implementation for
489                 systems that don't have it, or that have it implemented
490                 incorrectly.  Went a little paranoid here, since
491                 AC_FUNC_STRNLEN doesn't set a define in config.h,
492                 so I had to do it manually, and check in case autoconf
493                 changes in the future... ugh.  See src/strnlen.h for
494                 the gory details.
495         - added code in probe.cc to fetch the device's description.
496                 The description is now part of the probe results
497                 along with the PIN.  Updates to protocol.h, adding
498                 a new attribute definition.
499                 Thanks to Rick Scott for pointing out the code in
500                 XmBlackberry where he implemented this first.
501         - fixed header dependency in record-internal.h
502         - updated the "required autoconf" version to 2.61 for root build
503         - moved nested structs out of the record classes that contain them,
504                 in order to better support SWIG and Python
505 2007/08/17
506         - changed bcharge to use getopt() for its argument processing
507         - added options -p and -s to bcharge, to adjust usb suspend
508                 settings automatically where possible
509         - updated the udev rules to use the new bcharge settings
510         - updated the bcharge man page with the new arguments
511 2007/08/16
512         - cleaned up Usb exception handling, moving libusb error code
513                 processing into the Usb::Error exception class.
514                 error.cc is now an empty shell
515         - added return codes to the Usb::Error exceptions
516         - removed aboutdialog.{h,cc} from the backup GUI since even
517                 Debian stable now has up-to-date gtkmm libraries
518         - added more user friendly error message for the "device busy"
519                 case, recommending 'rmmod usb_storage'.
520 2007/08/09
521         - added better error checking to bcharge.cc
522         - version bump:
523                 - configure.ac
524                 - src/Makefile.am
525                 - src/version.cc
526                 - gui/src/BackupWindow.cc
527                 - src/Doxygen
528                 - rpm/barry.spec
529                 - debian/changelog
530                 - opensync-plugin/src/barry_sync.cc
531         - removed usb_set_configuration() check from bcharge.cc, since
532                 that may fail under normal operation, in this case
534 Release: version 0.8 - 2007/08/03
535 ------------------------------------------------------------------------------
536 2007/08/03
537         - moved Interface implementation to usbwrap.cc file
538         - added dout debugging messages to usbwrap.cc
539         - clarified unhandled packet error message in socket.cc
540         - added temporary workaround in opensync-plugin environment's
541                 Reconnect(), for odd message seen on newer Blackberry
542                 devices
543         - fixing issues with Brian Edginton's MessageRecord patch (2007/06/29)
544                 - fixed missing size check in message oriented ParseHeader()
545                 - fixed endian conversion issues (also found one pre-existing
546                         endian bug in the process)
547                 - moved message timestamp converter code to time.cc
548         - added Barry version number to opensync plugin name
549         - changed maintainer scripts and rpm.spec to use bzip2 instead of gzip
550         - added opensync-plugin to configure script build
551         - added -S option to btool, to list supported parsers and builders
552         - slight change to opensync-plugin/buildgen.sh to cleanup config.h.in~
553         - opensync-plugin/README update
554         - added opensync-plugin/patches for others who may be building and
555                 testing the plugin with OpenSync 0.22
556         - added debian package build scripts to maintainer/
557 2007/08/01
558         - added entry to doc/TroubleShooting.txt
559 2007/07/28
560         - added doc/TroubleShooting.txt
561 2007/07/27
562         - opensync plugin:
563                 - fixed bug in vcard.cc that was using the FN field
564                         for the broken-down name instead of N
565                 - added dbId and dbName to DatabaseSyncState
566                 - added Reconnect() functionality to BarryEnvironment class
567                         and moved connect logic out of barry_sync.cc
568                 - changed the batch commit functionality in barry_sync.cc
569                         to single-change-commit.  Why?  Because opensync
570                         0.22 groups all batch changes into one group
571                         and calls one batch commit function, even if you
572                         registered two.  Moving to single change commit
573                         mode removes a chunk of unneccessary code
574                         from the plugin as well, and can in theory
575                         ease memory pressure in the library.
576                 - added FinishSync() to perform actions needed on successful
577                         syncing completion
578                 - disconnect on successful sync completion, and reconnect,
579                         since the device's dirty flags don't seem to
580                         be updated until a disconnect occurs.
581 2007/07/26
582         - added ReadDataArray() to data.h, using an istream instead of
583                 requiring a file
584         - added raw data version of BuildField() to record-internal.h
585                 This is so that btool doesn't add extra null terminators
586                 to unknown data, when restoring with option -s
587         - fixed bugs in r_contact.cc:
588                 - fixed bug that caused a LastName/FirstName swap
589                         if FirstName was empty and you wrote a contact
590                         record into the device.... First/Last Name
591                         fields are position sensitive, and the code
592                         was missing the empty FirstName case on writing
593                 - fixed bug in BuildFields() and Dump() where they
594                         were not updated to handle the new field
595                         table added for the postal address changes
596                         on 2007/07/20, oops
597         - opensync plugin:
598                 - changed the plugin config file, so it is possible to
599                         turn debug output on/off without recompiling
600                 - moved the standalone Map2Uid() function into
601                         the DatabaseSyncState class, and changed the
602                         code to produce "contact-#" and "calendar-#"
603                         UID strings, instead of just numbers
604                 - changed default PIN to -1, so that if the user doesn't
605                         configure properly, it will fail... this is a
606                         safety measure to avoid syncing with different
607                         devices and corrupting the cache/idmap...
608                         this should be fixed someday, to handle this
609                         automatically
610                         On second thought... is this right?  Perhaps
611                         it is better to fail if the PIN is not what
612                         is expected, so a user doesn't accidentally
613                         sync the wrong device and lose data.
614                         Actions to take on new PIN:
615                                 - force slow_sync, or
616                                 - fail
617                 - incorporated the new VCardConverter code into the
618                         main barry_sync.cc plugin code
619                 - fixed bug that did not clear the devices dirty flags
620                         in the case where a sync only read data from it,
621                         and didn't write
622                 - changed PIN error message number to hex
623 2007/07/20
624         - minor wording change in backup GUI prompt: "Backup working..." to
625                 "Backup in progress..."
626         - renamed Contact class's Title field to JobTitle for clarity
627         - added record function ParseFieldString(), which properly handles
628                 strings from the device that have multiple null terminators,
629                 and changed the record parsing code to use this new function
630         - moved FullName() function from ldif.cc to r_contact.cc since it
631                 is generally useful in areas outside of LDIF processing
632         - refactored postal addresses in the Contact record class into
633                 a new class called PostalAddress
634         - renamed Address class in record.h to EmailAddress
635         - moved Contact::GetPostalAddress() to record.cc as part of the
636                 new PostalAddress class and renamed it
637                 PostalAddress::GetLabel()
638         - opensync plugin:
639                 - refactored vformat helpers into separate base class
640                         called vBase
641                 - added vCard converter class
642                 - commented out the code that skipped over the adding
643                         of empty attribute values and parameters,
644                         since VCARD depends on some of this behaviour
645                 - movified vformat.c:vformat_find_attribute() to take
646                         an extra nth argument, in order to search
647                         for multiple attributes with the same name...
648                         the way this is coded is a bit inefficient...
649                         but we're moving away from vformat when we move
650                         to OpenSync 0.3x / 0.40, so this is just temporary
651                         pain
652 2007/07/19
653         - added SUBSYSTEM=="usb_device" to example udev rules, in order
654                 to avoid running bcharge for each endpoint that is
655                 added by udev, when first plugged in.  Running bcharge
656                 back-to-back multiple times can crash some
657                 Blackberries.
658 2007/07/14
659         - opensync plugin:
660                 - fixed ID mapping bug in the case of a non-numeric UID
661                         from syncing external -> Barry, and then the
662                         new Barry ID would look like a new change
663                         when syncing back from Barry -> external.
664                 - added support for slow sync
665                 - added clear() to idmap class
666                 - added vformat attr parameter extraction class
667                 - added more trace logging during vformat/Barry conversions
668                 - added Notification time support
669                 - handled "all day" vformat special case, when DTEND
670                         does not exist in a vformat data block
671         - changed the min1900_t time conversion functions to handle
672                 the 0xffffffff special case, when notifications
673                 are turned off on a calendar event (src/time.cc)
674         - also made the calendar data dump output clearer for
675                 disabled timestamps, and added debug output
676                 for the raw min1900 value, in case there are more
677                 special cases in the future
678 2007/07/13
679         - fixed null pointer access in opensync's HasMultipleVEvents()
680 2007/07/12
681         - upper management directive: revert all OpenSync 0.3x changes
682                 and proceed with OpenSync 0.22.  Reverting the
683                 opensync-plugin/src tree to Barry 0.7 status.
684 2007/07/06
685         - reorganized exception and trace code in opensync plugin
686         - added XmlToCalendar() function, based on unfinished opensync
687                 library API that is not yet finished... will be
688                 committed to opensync svn tree when complete
689         - added OSyncXMLField logger to plugin trace class
690 2007/06/29
691         - applied email MessageRecord patch from Brian Edginton (thanks!)
692         - updated Message::Dump() to output more valid mbox data...
693                 the goal is to be able to do:
694                         btool -d "Messages" > email.mbox
695                         mutt -f email.mbox
696         - changed some TODO's to FIXME's to keep it grep-consistent
697         - applied Folder support patch from Brian Edginton
698         - fixed pedantic compile warnings, and changed order in src/Makefile.am
699         - removed unneeded cast in src/r_folder.cc
700 2007/06/28
701         - minor adjustment to ctags building in buildgen.sh
702         - applied patch from Brian Edginton for better boost detection
703                 in configure.ac
704         - added boost usage message to btool -h output
705 2007/06/21
706         - more porting of OpenSync module to 0.30
707         - added ctags build for opensync source tree to buildgen.sh
708 2007/06/14
709         - changed PKG_CONFIG_PATH setting in rpm script, so that systems
710                 like SuSE that have an extensive PKG_CONFIG_PATH
711                 in general use will not break on build
712         - added PKG_CONFIG_PATH to debian script too, just in case :-)
713         - added debian/changelog to doc/ReleaseChecklist.txt
714         - added comment to rpm/barry.spec regarding SuSE RPM builds
715 2007/06/08
716         - applied patch from Niels de Vos fixing debian package build
717                 dependency
718         - applied Brian Edginton's Saved Email Messages patch
719         - updated r_saved_messages.cc comment to match header
720         - added GetRecType()/GetUniqueId() to r_saved_messages.h, since
721                 SetIds() is already there
722         - removed Address version of operator<<() from message related headers
723                 and moved into record.h
724         - added std::hex to message related dumps, and changed output to
725                 be more mbox-like
726         - updated doc/CodingStyle.txt to cover switch() statements
727         - opensync compiles again, with 0.30!  (not functional yet)
728                 - moving closer to more modular and reusable plugin functions
729         - updated release checklist for opensync version number
730 2007/06/07
731         - added doc/CodingStyle.txt... preliminary version
732 2007/06/06
733         - applied Brian Edginton's PIN message patch
734         - changes to PIN message patch:
735                 - fixed missing backslash in src/Makefile.am
736                 - fixed tab alignment throughout
737                 - removed typedef from Address struct
738                 - added clear() to Address... might as well, if it it is
739                         going to be a standalone type
740                 - fixed missing comma in PINMessageFieldLinks table
741                 - changed MessageRecordId in PINMessage to load from a new
742                         uint32_t field in CommonField, instead of piggy
743                         backing on a field for other use
744         - did some testing and found that PINMessage's MessageRecordId
745                 is the same as the RecordId given through the SetIds()
746                 API... but these Id's are duplicated in the protocol...
747                 RecordId is stored in the protocol header, while
748                 MessageRecordId is stored in the record it self as
749                 a common field... added RecType and RecordId to
750                 PIN Message so that we store both of these
751         - updated AUTHORS
752 2007/05/27
753         - added item to gui/TODO
754         - applied Brian Edginton's s11n-boost.h patch
755 2007/05/25
756         - renamed template values to more consistent naming scheme
757         - applied memos and tasks patch from Brian Edginton, slightly
758                 modified to split into the new separate files system
759         - changes to memos and tasks classes:
760                 - reformatted the code to match coding style
761                         (come on Brian) :-)
762                 - added copyright notice
763                 - changed class to singular (Memo, not Memos)
764                 - placed in Barry namespace
765                 - added #ifdef header protectors
766                 - added new files to Makefile.am
767                 - added new r_*.h headers to record.h
768         - added support for Memos and Tasks to tools/btool.cc, based on
769                 Brian Edginton's patch
770                 (currently commented out, for Boost library reasons):
771         - added doc/CommitPolicy.txt
772         - updated AUTHORS
773 2007/05/24
774         - added ctags generation to buildgen.sh
775         - applied record.{h,cc} fix patch from Brian Edginton
776                 - ClassFlag
777                 - FreeBusyFlag
778                 - Clear() fixes
779         - fixed broken formatting in above patch
780         - refactored record parser classes into separate files for each
781         - changed the ConvertHtoB<> template to inline, as it caused
782                 linker errors with the new file layout
783 2007/05/17
784         - fixed bug in Debian packaging that put util commands in
785                 /bin and /sbin instead of /usr/bin and /usr/sbin
786         - commited byteswap.h replacement code from gm2net
787         - backup gui:
788                 - removed unneeded debug messages on stdout
789                 - changed the default for debug output to "off"
790                         and added a command line option to turn
791                         it on if necessary  (--debug-output)
792                 - command line option --help now also works
793         - fixed bug in Calendar class where it didn't initialize
794                 RecType properly... and cleaned up other RecType
795                 code to use the GetDefaultRecType() functions,
796                 localizing the constants in one place
797 2007/05/11
798         - applied patches from Brian Edginton, parsing more
799                 fields in Contact and Calendar records
800         - added Brian Edginton to AUTHORS
801         - reformatted record.{h,cc} to match the rest of the code,
802                 removed commented out code, and removed mention of
803                 Outlook from the comments.
804         - updated udev/10-blackberry.rules.Debian for Debian Etch
805         - updated debian/rules to use new udev rules file
806         - removed debian/postinst, as stable versions of Debian now
807                 have a recent udev, and don't need the special handling
808         - updated Debian build scripts to build separate packages:
809                 libbarry
810                 libbarry-dev
811                 barry-util
812                 barrybackup-gui
813         - added menu support to Debian barrybackup-gui package
814         - made the buttons bigger in the backup GUI, as they were too
815                 small on Debian Etch
816         - opensync plugin:
817                 - more progress in porting to opensync 0.30, heavily
818                         based on the example plugin in the opensync
819                         svn tree...  this is a work in progress, and so far
820                         is incomplete
821 2007/05/04
822         - opensync plugin:
823                 - partial porting to opensync 0.30 (in progress!)
824                 - fixed bug in sync_done where it reported context error
825                         and then success afterward
826         - checking in new INSTALL files based on Etch's autoconf run
827         - added item to gui's todo list
828         - bumped version numbers to 0.8 in:
829                 - configure.ac
830                 - src/Makefile.am
831                 - src/version.cc
832                 - gui/src/BackupWindow.cc (about dialog)
833                 - src/Doxygen
834                 - rpm/barry*.spec
836 Release: version 0.7 - 2007/05/02
837 ------------------------------------------------------------------------------
838 2007/05/02
839         - added rpm building to maintainer/release scripts
840         - added "HEAD" feature to tarball creation script, for easier testing
841         - updated maintainer/README
842         - updated maintainer/release.sh to use new HEAD feature too
843 2007/05/01
844         - added pppob to rpm barry.spec
845         - bumped release number in barry.spec
846 2007/04/30
847         - opensync plugin:
848                 - fixed size check bugs (strlen() == 0 when empty)
849                 - finished refactoring calendar conversion routines
850                 - started timezone parsing, but this may go away
851                         if we use opensync 0.30's time functions and
852                         xml data format...
853                 - added development note to README
854 2007/04/29
855         - updated README and opensync-plugin/README with more current
856                 build instructions
857         - opensync plugin:
858                 - refactored some calendar conversion routines
859                 - added Barry->vCalendar conversion for recurring appointments
860 2007/04/27
861         - opensync module:
862                 - removed some unneeded trace logs
863                 - fixed VEventConverter constructor bug, with uninitialized
864                         m_Data pointer
865                 - eased up the requirement that every calendar event
866                         must have a summary... defaults to "<blank subject>"
867                         if empty
868                 - added more VCALENDAR fields to match Barry::Calendar record
869                 - fixed case sensitive compares in vformat.c
870 2007/04/26
871         - opensync module work:
872                 - added id map class to map string uid's from OpenSync to
873                         numeric ID's from the Blackberry
874                 - fixed bug in CommitChange() where it was still using
875                         a hard coded calendar record state table
876                 - added lots of logging throughout
877                 - fixed bug where newly added records didn't use the
878                         change object's uid, but created a new ID,
879                         causing another sync on the next run
880                         i.e. (CommitData_t was missing an argument)
881                 - fixed bug where uninitialized notification time was
882                         written to the Blackberry
883         - more opensync module work:
884                 - refactored the environment class into another subclass
885                         called DatabaseSyncState, and moved some stand-
886                         alone functions from barry_sync.cc into
887                         the environment classes
888                 - added a tagged constructor to the trace class
889                 - fixed idmap::Load() to clear map before loading
890 2007/04/20
891         - renamed barry-config to barry-sync, the default configuration
892                 file for the opensync module... and filled it with
893                 a sample configuration
894         - added code to update the calendar cache, and write it to disk
895                 on success (opensync module)
896         - added code to clear dirty flags in the device (opensync module)
897         - allowed comments in the config file
898         - added vformat.c from libopensync 0.22, since the vformat
899                 routines are not available from the plugin side
900 2007/04/19
901         - updated gui/TODO
902         - added -d switch to bcharge to switch back from 0001 to 0004 mode,
903                 changed the auto-detection logic to ignore iProduct and
904                 only use idProduct, and updated man page
905         - updated breset to recognize the Pearl in 00004 mode as well
906         - changed src/probe.cc logic to assume that the second endpoint
907                 pair is the one needed for database communication, instead
908                 of doing a reverse search from the end... newer Pearls
909                 in Dual mode seem to have at least 3 or 4 endpoint pairs,
910                 and the old search didn't always work
911         - applied sourceforge patch #1696884 from Peter Silva, updating
912                 the Debian build for Etch, and including all files in one deb
913         - added Peter Silva to AUTHORS file
914         - uncommented the "make distclean" in debian/rules, and removed
915                 the reliance on /tmp when installing 99-barry-perms.rules
916         - applied bb_task_format.txt patch from Peter Silva
917         - fixed each misspelling of "recurrance" to "recurrence"
918         - tweaked src/probe.cc again for paranoia's sake... start at
919                 offset 1 if more than 1 endpoint pair, otherwise start
920                 search at 0
921         - split up opensync module into multiple source files, and started
922                 using the opensync vformat routines for parsing and building
923                 the vevent20 data (experimental)
924 2007/04/04
925         - more incremental work on the opensync plugin, adding ADDED
926                 and MODIFIED functionality... (experimental!)
927 2007/03/30
928         - added code to dump extra descriptors during device discovery,
929                 if found
930         - bumped opensync version number in configure.ac, and made
931                 the configure scripts more consistent with the rest
932                 of the project
933         - fixed printf-format size bug in opensync module
934 2007/03/29
935         - applied patch from Niels de Vos, fixing deb udev rules for Pearl
936         - updated AUTHORS
937         - fixed extra space bug in LDIF output (added space when creating
938                 FullName, even if there was no last name)
939         - fixed Address Book record parsing in Contact class... the
940                 Blackberry database uses field id 0x20 for both the
941                 first and last names, and if only a last name exists,
942                 the first name will be empty.  Fixed parser to handle
943                 this special case, without relying on string length.
944                 Thanks to Troy Engel for reporting above two LDIF bugs.
945         - added a few more constants to bcharge.cc
946         - renamed opensync's configure.in to configure.ac
947 2007/03/17
948         - fixed bcharge to avoid endless reset loop... oops
949 2007/03/16
950         - reorganized bcharge.cc to make it possible to switch between
951                 Pearl modes 0004 and 0001
952         - added flag to BadPassword exception class, to signal whether
953                 the library considers the device "out of retries" or not
954         - updated socket.cc for new BadPassword exception
955         - added special case to Controller class destructor to reset the
956                 device if being destroyed in a half-open state... this is
957                 a temporary fix until we understand how to handle
958                 the "already open" message we get when opening the Desktop
959                 in some cases
960         - added password prompt dialog to the backup GUI
961         - fixed possible memory leak in GUI's DeviceInterface::Connect()
962 2007/03/08
963         - committed Troy Engel's bbrules_mass_symlinks.patch, fixing
964                 udev rules for the Pearl
965         - updated 10-blackberry.rules.Debian to match 10-blackberry.rules's
966                 functionality
967         - applied Troy Engel's barry.spec patch to generate all required
968                 RPM's... Thank you!  Notes in the README taken from
969                 the sourceforge tracker entry containing the patch.
970         - added libusb lib flags to tools/ and examples/ makefiles,
971                 and tweaked configure.ac with a better default,
972                 to build cleanly on RHEL 4
973         - modified rpm/barry.spec:
974                 - does not create doc-only barry base package anymore
975                 - fixed "barry-backup" typo
976                 - removed the patch step, as version 0.7 shouldn't need it
977                 - added license file to each package
978                 - commented out console perms scripts, pending mailing list
979                         discussion
980         - updated AUTHORS
981         - applied Troy Engel's barry.spec patch to fix RHEL4 compile issues
982         - fixed 80 column wrapping error in barry.spec, thanks to Troy Engel
983                 for the bug report
984         - applied Troy Engel's udev permissions patch for Redhat/Fedora
985                 systems, which automatically set the ownership of a
986                 newly plugged in device to the currently logged in console
987                 user.
988         - added udev/README to document what all those files are for...
989                 part of the text comes from the sourceforge comment
990                 on the above udev permissions patch from Troy Engel
991         - uncommented the console perms scripts for rpm/barry.spec
992         - added libglademm-2.4 to gui/README's dependency list
993         - made usbwrap.* calls more threadsafe
994         - added Usb::Timeout exception for timeout errors
995         - added preliminary UsbSerData support to library for GPRS modem
996                 functionality, using Rick Scott's XmBlackBerry's serdata.c
997                 as a guide
998         - added overloaded Socket::Send() for sending without receiving
999         - added preliminary pppob command line tool
1000 2007/03/02
1001         - version bump in:
1002                 - configure.ac
1003                 - src/Makefile.am
1004                 - src/version.cc
1005                 - gui/src/BackupWindow.cc (about dialog)
1006                 - src/Doxyfile
1007                 - rpm/barry.spec
1008         - build system tweaks for opensync-plugin, and added a buildgen.sh
1009                 for it
1010         - added better debug messages in probe.cc and usbwrap.cc's
1011                 device discovery code
1012         - changed error handling for null interface->altsetting pointers
1013                 when doing device discovery in usbwrap.cc.  Seems that
1014                 some devices report a higher number in bNumInterfaces
1015                 than are really available... in this case, let's
1016                 just ignore the missing data and assume success
1017         - applied udev script patch #1663986 from Troy Engel
1018         - applied barry-bcharge.spec patch #1672178 from Troy Engel
1019         - ReleaseChecklist update
1020         - added rpm/README based on Troy Engel's patch notes
1021         - updated new barry-bcharge.spec for version 0.7, removing patch
1022                 dependency
1024 Release: version 0.6 - 2007/02/28
1025 ------------------------------------------------------------------------------
1026 2007/02/28
1027         - fixed size checks for device database records larger than 64K
1028                 Thanks to Michael Brown for the bug report.
1029         - added initial release maintainer scripts
1030         - fixed odd backup success message in GUI when doing a backup with
1031                 no databases selected in configuration
1032                 Thanks to Michael Brown for the bug report.
1033         - added udev permissions file patch from Michael Brown
1034         - added Michael Brown to AUTHORS
1035         - updated README, gui/README, and doc/USB-capture.txt
1036         - added -o command line switch to bcharge.cc, and updated man page
1037 2007/02/23
1038         - changed library behaviour so it only turns on libusb debug output
1039                 if in data dump mode.  In btool, -v controls this output.
1040         - minor stream formatting fix in btool
1041         - added OpenSSL dependency to build for password hash support
1042         - made debug dout() output conditional on Init() flag... In btool,
1043                 -v now controls this as well
1044         - reverse engineered more of the initial probe packets, and
1045                 implemented probing in struct based code... changes include:
1046                 - added support for "attribute fetch" packets, used at
1047                         the beginning of USB conversations
1048                 - defined object/attribute id codes for the PIN number
1049                 - made Protocol::SocketCommand more robust, and implemented
1050                         its sequence number behaviour
1051                 - moved ModeSelectCommand into SocketCommand, as it is a
1052                         socket 0 level command
1053                 - added initial protocol struct: PasswordChallenge
1054                 - renamed Barry::Packet to DBPacket
1055                 - added ZeroPacket for socket 0 packet creation and analysis
1056                 - Barry::Packet is now the base class for the above
1057                 - implemented socket 0 behaviour in socket.cc
1058                 - changed return values for Send/Receive/Packet/NextRecord
1059                         members in the Socket class from bool to void, as they
1060                         don't generate errors themselves, but only can
1061                         have an error if Usb::Device throws an exception.
1062                         Cleaned up all code that called these members as well.
1063                 - removed "last status" from Socket class as it was unused
1064                 - updated probe.cc to use new socket 0 implementation
1065                 - removed two of the hard coded packet handshakes in favour
1066                         of socket 0 packets
1067                 - updated controller.cc:
1068                         - uses new socket 0 implementation
1069                         - removed "flag" hack when opening sockets and
1070                                 selecting modes, as it should use the
1071                                 socket 0 sequence number
1072         - added initial, incomplete prototype header for the C API
1073         - updated some .cvsignore files
1074         - updated TODO
1075         - updated ReleaseChecklist.txt, adding rpm spec file
1076         - added the following to ZeroPacket:
1077                 - ChallengeSeed()
1078                 - RemainingTries()
1079                 - SocketResponse()
1080                 - SocketSqeuence()
1081         - moved Command() to base Packet class
1082         - added comments to protostructs.h and size constants for the
1083                 new PasswordChallenge struct
1084         - added password support to Socket and Controller classes
1085                 Thanks to Rick Scott's XmBlackBerry for the openssl
1086                 password hashing logic.
1087         - updated btool to use new password support, and updated its man page
1088 2007/02/22
1089         - updated Doxygen input files and version, and added to ReleaseChecklist
1090         - fixed btool PIN output for LDIF mode, now commented in output
1091         - major LDIF overhaul:
1092                 - split LDIF specific code out of the record class and
1093                         into its own
1094                 - fixed "full name" behaviour that added an extra space
1095                         in dn attributes, as reported by Troy Engel
1096                 - added support for mapping of LDIF attributes to Barry
1097                         contact field names
1098                 - fixed base64 handling, so attributes are only so encoded
1099                         if necessary
1100                 - fixed base64 attribute reading inconsistency... some
1101                         notes fields were missed in old version if not
1102                         encoded
1103                 - added support for specifying alternate attribute for
1104                         constructing a FQDN, instead of just "cn"
1105                 - updated btool and upldif to use new features
1106         - large update to btool manpage
1107         - fixed initialization bug in Contact constructor (missed RecType)
1108 2007/02/15
1109         - added ktrans.cc to make reading of kernel usbfs_snoop logs easier
1110         - removed commented code from translate.cc
1111         - added Pearl handshake support to bcharge.cc, which resets the
1112                 Pearl so that the vendor specific 0xFF class exists.
1113                 This should allow use of btool on the Pearl.
1114         - added Data::AppendHexString to data.cc
1115         - added better probing support for the Pearl, so it detects the
1116                 Product ID 0x0004 mode, and does a search for class 0xFF
1117                 instead of hardcoding it.
1118 2007/02/10
1119         - applied README patch from Ian Darwin
1120         - minor tweaks to README
1121         - added missing errno.h header in src/usbwrap.cc for AMD64
1122                 Thanks to Jonathan Hudson for reporting the bug.
1123         - tightened up size checks in Data::ReleaseBuffer()
1124         - stable libusb *does* return the actual length of the USB packet...
1125                 fixed this in usbwrap.cc to set the actual size of read data,
1126                 and removed the size hacks elsewhere in the code:
1127                 probe.cc, protocol.cc, socket.cc, usbwrap.cc
1128 2007/02/09
1129         - added proper return codes for error conditions in btool.cc
1130         - clarified some stream output code in the library, for hex/dec numbers
1131         - removed old, non-working connect.cc test program
1132         - added iomanip to debug.h
1133         - changed usbwrap to call libusb again if EINTR and EAGAIN
1134                 This should fix one of the OpenBSD issues
1135 2007/02/04
1136         - updated AUTHORS
1137         - fixed bug in barrybackup GUI that didn't create the target path
1138                 if the user didn't do Edit | Config first.
1139                 Thanks to Ian Darwin for reporting the bug.
1140         - applied gui/src/ConfigFile.cc header fix patch for OpenBSD
1141                 from Ian Darwin
1142 2007/02/03
1143         - added initial btool.1 man page from Ian Darwin
1144         - updated man/Makefile.am for new btool.1
1145         - updated AUTHORS
1146         - applied btool -h help clarification patch from Ian Darwin
1147 2007/02/02
1148         - reworked exception hierarchy, so applications can handle all
1149                 Barry related exceptions, including Usb errors, with
1150                 one base class: Barry::Error
1151         - fixed all the ripple changes this caused throughout the codebase
1152         - added BadPassword exception
1153 2007/02/01
1154         - version bump in:
1155                 - configure.ac
1156                 - src/Makefile.am
1157                 - src/version.cc
1158                 - gui/src/BackupWindow.cc (about dialog)
1159         - updated doc/ReleaseChecklist.txt
1160         - added usb-level breset.cc command line tool
1161         - fixed bug in gui/src/tarfile.* for systems where
1162                 sizeof(int) != sizeof(void*)
1163                 - TarFile class now uses a plugin style for the compression
1164                         operations, to allow for threadsafe versions if needed
1165                         in the future.
1166                 - also fixed leaked file handle bug in open_compressed()
1167                 - Thanks to Jonathan Hudson for reporting this for 64bit systems
1168         - minor signed comparison fixes in the library
1169         - added better protocol data dumping code in probe.cc
1170         - added Usb::Device::BulkDrain(), to prevent Barry from hanging
1171                 due to pending reads
1173 Release: version 0.5 - 2007/01/26
1174 ------------------------------------------------------------------------------
1175 2007/01/26
1176         - added missing errno.h header to gui/src/util.cc
1177         - lots more endian fixes after testing on iMac  
1178         - iostream output size fixes
1179         - added option to btool to reset the device via software
1180         - beefed up exception handling in barrybackup
1181         - checked in opensync work-in-progress: trace logging, pointer bugfix
1182                 this is still experimental
1183         - added aboutdialog.* files from gtkmm24 2.10.6, so we have a dialog
1184                 class for systems running older versions of gtkmm, like
1185                 Debian stable
1186         - uncommented the about box menu handler
1187         - added "cleanall" option to root buildgen.sh script
1188         - update ReleaseChecklist.txt
1189         - removed CVS auto-history strings from aboutdialog.*
1190 2007/01/25
1191         - found a link between the unknown field in tagged protocol headers
1192                 and the unknown field in RecordStateTable entries.  This
1193                 field matters when uploading certain databases, such as
1194                 Browser Options.  It is unknown what this field really
1195                 means, but we're calling it RecType.  Updated the API
1196                 to use this in all parser objects and builder objects
1197                 and record objects that use it.
1198         - changed some uses of uint64_t to uint32_t, in Contact and
1199                 Calendar record objects... unique IDs only seem to be
1200                 32 bits
1201         - added new static function to record classes: GetDefaultRecType()
1202                 This returns the default rectype that should work
1203                 for that record.  Ideally this should be retrieved from
1204                 the device, but in the case where a database has no
1205                 records, this info would be good to know.
1206         - updated convenience template function Controller::AddRecordByType()
1207                 to use GetDefaultRecType()
1208         - documented the recurrence data and how to use it in Calendar objects
1209         - added data debug output for incoming USB packets in the
1210                 socket class... when we ported to the stable libusb
1211                 we lost some of the verbose output... this should get it
1212                 back.  (In the official release, you need to uncomment
1213                 ddout() in debug.h for the full blast of debug output).
1214         - backup GUI updates:
1215                 - changed error_done signal into a pure error signal,
1216                         and changed the logic so the restore continues
1217                         even if there was a protocol error on one database
1218                 - changed status bar messages to show what's happening
1219                         i.e. Backup or Restore
1220                 - default to not restore the "Handheld Agent" database as
1221                         it appears to be read-only on the device
1222                 - added temporary Restore & Backup mode for debugging
1223                 - added extra hyphen to backup files to show date/time better
1224                 - updated GUI to save and restore the new RecType field
1225                         supported now by the library
1226 2007/01/21
1227         - added future considerations to doc/ReleaseChecklist.txt
1228         - applied big endian patch from Jonathan Hudson
1229         - changes to patch:
1230                 - removed endian.h include from barry.h, since applications
1231                         using the library should not care about endianness
1232                 - hard coded the path to config.h in endian.h
1233                         so that endian.h never makes it into the final
1234                         install
1235                 - removed DEFAULT_INCLUDES setting from src/Makefile.am
1236                         for the same reason
1237                 - removed config.h dependency in btool.cc and used library
1238                         Version call instead
1239         - added big/little endian text to the Barry::Version call
1240         - updated AUTHORS
1241         - fixed install location of bcharge when building with ./configure;
1242                 now goes to sbin/ for both source compile and binary packages
1243                 Thanks to Jonathan Hudson for reporting this bug.
1244 2007/01/20
1245         - added smarter timeout values to controller, and allowed
1246                 timeout overrides in the packet, socket, and usbwrap code...
1247                 extra timeouts are needed for erasing databases for
1248                 some older devices
1249         - added an explicit DataDumpParser class to btool.cc, as the
1250                 library doesn't always have extreme verbose debugging on...
1251                 this makes sure anyone can always get raw database packets
1252                 through btool, for development
1253         - added thread callback signals for error finishes and erase_db
1254                 operations, so the GUI is updated properly
1255         - more GUI cleanups (status bar updates, etc)
1256         - finished implementation of GUI restore
1257         - fixed gtkmm/glibmm exception handling when the exceptions
1258                 occur in sigc signal handlers... in that case,
1259                 exceptions need to be handled with
1260                 Glib::add_exception_handler()
1261         - added filename-only reading support to TarFile class
1262         - added pending gui/TODO items
1263 2007/01/19
1264         - backup GUI now properly shows progress
1265         - the buttons become insensitive when backup is busy
1266         - refactored directory check code, and added mkdir check
1267                 when to the backup setup (so the directory exists
1268                 when we try to write to it)
1269         - updated code to use Barry::Data in new namespace
1270 2007/01/18
1271         - moved Data class into Barry namespace
1272 2007/01/13
1273         - updated copyright dates for the new year
1274         - clarified exception message in controller.cc
1275         - fixed pointer initialization bug in controller.cc
1276         - added documentation comments to parser.h and builder.h
1277         - updated ReleaseChecklist.txt
1278         - updated README
1279         - changed Barry library configure scripts to make better
1280                 use of pkg-config for autodetecting dependencies
1281         - added initial Barry Backup GUI (gui/ directory), capable of making
1282                 backups only at this point
1283 2007/01/11
1284         - added doc/ReleaseChecklist.txt
1285         - added version API, returning version number and string
1286         - added Troy Engel to AUTHORS
1287         - added special case to bcharge.cc for the Blackberry Pearl,
1288                 which doesn't reset itself after the charge handshake
1289                 Thanks to Troy Engel for testing.
1290 2007/01/05
1291         - added pkg-config support for the library (libbarry-0.pc.in)
1292         - fixed compile error on g++ 3.3 systems (missing stdint.h
1293                 in probe.h)
1294         - fixed protocol hang at end of Controller operation... in
1295                 controller destructor, it was deleting the USB interface
1296                 before closing the socket at the BlackBerry level, thereby
1297                 leaving the device in Desktop mode
1298 2007/01/04
1299         - support the newer udev packages on Ubuntu, which need slightly
1300                 different rules
1301         - modified bcharge.cc to search for Pearl devices too.
1302                 USB product ID 6
1303         - added Pearl product ID to probe code, but likely not functional
1304                 yet until we find someone able to get a USB capture for us
1305 2006/12/29
1306         - version bump in configure.ac and src/Makefile.am
1308 Release: version 0.4 - 2006/12/29
1309 ------------------------------------------------------------------------------
1310 2006/12/29
1311         - added bcharge.cc to the tools/ directory (whoohoo!)
1312         - added initial release version of rpm/barry.spec (aka bcharge.spec)
1313                 This begins the barry binary release, currently only
1314                 including the bcharge utility, but possibly more in
1315                 the future.  Future binary packages will likely include
1316                 libbarry, libbarry-devel, etc, which barry will then
1317                 depend on.
1318         - added udev rule script for BlackBerry devices
1319         - added man/ directory and bcharge.1 manpage
1320         - added debian/ directory for building deb packages, with initial
1321                 package scripts
1322         - added rpm/make-rpm-tarball.sh for building RPMs
1323         - split out technical docs into separate libbarry.docs file for
1324                 a future Debian install
1325         - added more cleaning to buildgen.sh
1326         - added new udev rule file for Debian stable
1327         - hardcoded g++ to 3.3 in debian/rules as I have multiple versions
1328                 on my system and need to compile releases with stable
1329 2006/12/21
1330         - ported Barry to use the stable branch of libusb
1331                 NOTE: no longer depends on the devel libusb tarball!
1332                         Just use your distro's libusb packages.
1333         - fixed more endian issues
1334         - minor update to TODO
1335 2006/12/15
1336         - moved Exceptions, Hacking, and VersionNotes to doc/
1337         - added doc/USB-capture.txt
1338 2006/12/08
1339         - added Controller::AddRecord() and template helper
1340         - added beginning version of generic RecordFetch<> template
1341         - set default of Barry::Init() to false (no data dump mode)
1342         - added examples/ directory, with first addcontact.cc example
1343 2006/12/07
1344         - added autoconf support based on Peter McAlpine's patch
1345         - renamed Makefiles to Makefile.orig and added script to turn
1346                 on old build system if wanted
1347         - fixed boost-specific error path in btool
1348         - moved platform specific code out of time.h and into time.cc
1349         - moved btool.cc, translate.cc, and upldif.cc out of src/ and
1350                 into their own tools/ subdirectory
1351         - added NEWS file to make autotools happy
1352         - added a "clean" option to the buildgen.sh script... maintainer's
1353                 use only
1354         - reworked autoconf and automake files, to support
1355                 barry as a library, to move the programs into their
1356                 own tools directory, and support a proper installation
1357         - fixed headers in parser.h, btool.cc, and upldif.cc to work
1358                 properly when installed standalone
1359         - added tools/Makefile.plain for testing compiling against
1360                 installed barry library
1361         - added commentary on version number system
1362         - removed Makefile.conf and Makefile.orig, as new autoconf
1363                 system supercedes it
1364         - added support for boost serialization library in autoconf build
1365         - added library version number to autoconf build
1366         - changed boost flag to __BARRY_BOOST_MODE__ to avoid collisions
1367         - removed debug.h dependency from btool.cc
1368         - removed libusb check in favour of specific --with-libusb
1369                 option... may need to revisit this later
1370         - quick installation update in README
1371 2006/12/01
1372         - fixed some missed endian conversions in record.cc and added
1373                 some size checks
1374         - fixed endian issues in time.h
1375         - added 2 more functions to the time zone API, and adjusted
1376                 the time zone table for better defaults in North America
1377         - added btool and upldif to the make install sequence
1378         - added support for Calendar recurrence data
1379         - small doc/TimeZones.txt update
1380 2006/11/24
1381         - added BlackBerry time zone code list, reverse engineered from a 7750
1382         - added GetTimeZone() to convert device time zone codes to useful data
1384 Release: version 0.0.3 - 2006/11/24
1385 ------------------------------------------------------------------------------
1386 2006/11/23
1387         - added return code check to Controller::SaveDatabase()
1388         - fixed Data() class constructor, so it doesn't auto-convert
1389                 from any int
1390         - fixed size checking bug in Packet::ReturnCode() that caused
1391                 uploading to device to fail
1392 2006/11/10
1393         - added Exceptions doc file, documenting the C++ exceptions used,
1394                 and their hierarchy
1395         - fixed small bug in 'make install' which didn't build first
1396         - minor documentation and cleanup in upldif.cc
1397         - added utility functions to the RecordStateTable class,
1398                 GetIndex() and MakeNewRecordId()
1399         - changed btool so that the -d command modifiers can be
1400                 specified multiple times to work with multiple records
1401                 at once
1402         - added Calendar sync code to the opensync module (not complete)
1403         - cleaned up exception handling in the opensync module, making
1404                 more use of the base exception to make sure no
1405                 exceptions leak into the C library code
1407 Release: version 0.0.2 - 2006/10/12
1408 ------------------------------------------------------------------------------
1409 2006/10/12
1410         - fixed casting error in opensync module
1411         - minor updates to documentation to prepare for release
1412 2006/09/29
1413         - added stdint.h to parser.h for uint32_t.  Thanks Ron Gage for
1414                 the bug report
1415 2006/09/08
1416         - large refactoring of the packet parsing and building code,
1417                 splitting the code into 3 groups:
1418                 - record: handles record specific parsing and building...
1419                         this is mostly subfields with CommonField structs
1420                         as their headers, but sometimes has a specific
1421                         header of its own, in the case of email
1422                         Note: email's header is as yet undecoded.
1423                         Record does not know the details of the packet
1424                         formats, only the formats of its own record data.
1425                 - packet: handles building of complete command packets
1426                         and handles parsing of commonly used header values,
1427                         providing an API for it... packet does not know
1428                         the record format details, but does know the
1429                         details of each Database Operation (protocol.h)
1430                         packet format.
1431                         So far, it seems that there is a real separation
1432                         of operation formats and record formats, with the
1433                         record formats being the same even with different
1434                         database operation codes (GET_RECORDS /
1435                         OLD_GET_RECORDS), which was not confirmed before.
1436                         See the header size of the email record after
1437                         refactoring.
1438                 - controller: handles device state, and the management of
1439                         sockets, commands, and checking for response values.
1440                         The Controller object does not know the format
1441                         of either the record or the packet it is sending,
1442                         but does know the protocol handshake logic used
1443                         to talk to the device.
1444         - implemented SetRecord (SET_RECORD_BY_INDEX)... syncing, here
1445                 we come!
1446         - spelling correction in opensync-plugin/AUTHORS
1447 2006/09/01
1448         - added sample hotplug scripts
1449         - added .cvsignore files for doxygen and opensync directories
1450         - added src/endian.h... still need to add configure support to
1451                 handle non-little-endian machines
1452         - added exception handler in opensync plugin commit_change()
1453         - removed the device reset code in probe.cc, as resetting a device
1454                 can renumber the devices in /proc on kernel 2.4.x,
1455                 and cause a failure to reach the device...
1456                 FIXME - this should be changed someday to reset if probing
1457                 fails, and restart the probe on reset, as sometimes
1458                 the blackberry devices respond differently when not reset
1459                 Ideally, the probe protocol should be properly reverse
1460                 engineered.
1461         - added support for retrieving record state table, which is needed
1462                 for smarter syncing
1463         - added support for retrieving, deleting, and clearing the dirty
1464                 flags of individual blackberry device records
1465         - added endian macros throughout the code
1466 2006/07/13
1467         - added opensync-plugin to root Makefile's clean
1468         - updated time conversion calls to match opensync's latest SVN
1469         - added opensync_change_set_changetype() (only add for now,
1470                 for development)
1471         - removed slow sync functions for now
1472 2006/07/07
1473         - added quick "install" makefile target, to src/install by default
1474         - added static library target... this is temporary until autoconf
1475                 stuff is added properly... needed for the opensync plugin
1476         - documented in comments that Barry::BError is intended to be
1477                 the base classes for all exceptions
1478         - added first round of implementation of an opensync plugin, based
1479                 on the example plugin code from the opensync sources
1480 2006/06/22
1481         - added to Contact record class:
1482                 - Clear()
1483                 - ReadLdif() to load and parse LDAP data
1484         - added fragmented send support to Socket class
1485         - added Probe::FindActive() to make client programs more streamlined
1486         - fixed hex/decimal printing of record counts in btool
1487         - added upldif.cc, a utility to take ldapsearch output on stdin
1488                 and upload it to a blackberry
1489         - updated src/.cvsignore
1490 2006/06/16
1491         - added parsing of service book fields:
1492                 - old and new name
1493                 - old and new unique ID (UID)
1494                 - content ID (CID)
1495                 - old and new description
1496                 - DSID
1497                 - bes domain / domain
1498         - date change in legal.txt
1499         - added initial parsing of ServiceBook field 0x09, and calling it
1500                 ServiceBookConfig for now, for lack of a better name
1501         - added parsing for ServiceBook field 0x02 on 72xx Blackberries...
1502                 seems to be a name or description, but doesn't appear
1503                 in the device's own GUI... called "Hidden Name" for now
1504 2006/06/09
1505         - added ServiceBook record class and parser code, based on some
1506                 of Ron Gage's reverse engineering... code is by Chris Frey
1507         - added AUTHORS file
1508         - fixed the libusb set_configuration/claim_interface order
1509                 bug in controller.{h,cc}... already fixed in probe,
1510                 but not controller.  Thanks Ron Gage for finding this.
1511 2006/05/25
1512         - renamed Changelog to ChangeLog in preparation for autoconf
1513         - renamed Todo to TODO in preparation for autoconf
1514 2006/05/18
1515         - make clean cleans up tests properly now
1516 2006/03/31
1517         - turned source code browsing on in Doxyfile
1518         - added LoadDatabaseByName() and LoadDatabaseByType() template members
1519                 to the Controller class
1520                 - new file: controllertmpl.h
1521         - documentation fixes in builder.h
1522         - added static GetDBName() functions to all record classes, in
1523                 support of the template Controller functions
1524         - fleshed out DatabaseDatabase::GetDBNumber() and GetDBName(),
1525                 returning errors properly
1526         - documented sample btool.cc code better, and added example
1527                 of Controller template member usage
1528 2006/03/29
1529         - copyright dates updated for 2006
1530 2006/01/05
1531         - backed out update to latest libusb DEVEL tree, since it is buggy.
1532                 Stick with libusb 2005/11/26
1533 2005/12/30
1534         - added clean target to convenience Makefile
1535         - added Boost to list of dependencies in README
1536         - fixed minor compile warnings in base64.cc
1537         - fixed new USB discovery code, and changed endpoint usage to use
1538                 it, instead of the READ_ENDPOINT and WRITE_ENDPOINT
1539                 constants... constants are now removed
1540                 common.h, controller.cc, probe.cc, probe.h, usbwrap.cc
1541         - added ClearHalt() to Usb::Device (usbwrap.cc)
1542         - updated usbwrap.h to match latest libusb CVS devel tree
1543         - updated README to refer to 2005/12/30 libusb CVS devel tree
1544         - added roadmap to Todo list
1545 2005/12/29
1546         - added convenience Makefile in root directory
1547         - added Hacking document
1548         - minor touchups to README
1549         - added caution warning to README, since this release will support
1550                 delete / overwrite / upload functionality
1551         - minor compile order change in Makefile (speed reasons)
1552         - added dynamic endpoint discovery to probe.cc
1553         - changed claim_interface/set_configuration() function call order in
1554                 probe.cc based on feedback on the libusb mailing list
1555         - added USB discovery code to usbwrap.{h,cc}
1556 2005/12/23
1557         - fixed packing bug in new upload header struct
1558         - renamed CommonField union from data to u to be consistent
1559         - added return_code field to DBAccess struct, for error checking
1560         - added response checking during upload: if response is non-zero
1561                 throw exception in controller.cc
1562         - added sorting operators to record parser classes... when writing
1563                 contact data to the device, it may be important to write
1564                 group link items last, since they reference other contacts...
1565                 This needs to be tested, and if not required, removed.
1566         - added GROUP_FLAG field code to Contact parser class
1567         - fixed offset bug in Contact and Calendar Build() functions
1568         - fixed name bug in Contact::Build(), now output only with data
1569         - added appointment type flag support to Calendar record parser
1570                 class, and "all day event" flag support
1571 2005/12/22
1572         - added autoconf to Todo list
1573         - refactored the protocol structures so that record structs can
1574                 be reused for upload and download
1575         - with new protostructs, more header control is handled by
1576                 controller.cc instead of record.cc parsers and builders
1577         - parser code now accepts an offset, to govern start of record data
1578         - changed Data sizes from int to size_t and removed casts
1579         - removed unneeded Parser::GetHeaderSize() (new protostructs make
1580                 this obsolete)
1581         - added Calendar::Build() for calendar uploads
1582 2005/12/10
1583         - added s11n-boost.h serialization templates for boost::serialization
1584         - added boost::serialization to build
1585         - minor change in usbwrap.cc to display error codes in decimal
1586         - added SizePacket special case code to Socket::Send()... this is
1587                 required when uploaded packet size is a multiple of 0x40,
1588                 a special 3 byte size packet is sent
1589         - moved some record class variables to public: so they can be
1590                 properly serialized
1591         - fixed variable name but in RecordBuilder template
1592         - added -f switch to btool, for saving and loading of record data
1593         - added -s switch to btool, for uploading saved data back to handheld
1594         - added Controller::SaveDatabase()
1595 2005/12/08
1596         - fixed potential casting / pointer bug in controller.cc
1597         - added builder.h, to support uploading
1598         - minor comment fixes in parser.h
1599         - added preliminary Contact protocol record building support
1600         - fixed field order bug in ContactRecord protocol struct
1601         - Contact record.h class now saves unknown Group Link field,
1602                 for later saving
1603 2005/12/07
1604         - added -fno-strict-aliasing to compiler flags so gcc-4.0.x won't
1605                 optimize away protocol struct casts
1606                 see: 
1607                 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25235
1608                 http://mail-index.netbsd.org/tech-kern/2003/08/11/0001.html
1609                 http://groups.google.ca/group/comp.lang.c++.moderated/ \
1610                         browse_thread/thread/e7bf096832526f8e/5714701b \
1611                         02a2a3cc?hl=en#5714701b02a2a3cc
1612         - changed headers so that any low level protocol-specific sizes and
1613                 structs are completely hidden in the library...
1614                 this adds library-only header: protostructs.h
1616 Release: version 0.0.1 - 2005/11/25
1617 ------------------------------------------------------------------------------
1618 2005/11/25
1619         - added barry.h for documentation purposes and application usage
1620         - updated README for release
1621         - renamed SBError exception class to BError
1622         - updated Doxyfile to version 1.4.5
1623         - added more doxygen comments
1624 2005/11/24
1625         - added conversion routines (and tests) between time_t and min1900_t
1626         - added -v option to btool to dynamically control protocol dumping
1627         - removed duplicated database database table display in controller.cc
1628         - minor spelling corrections
1629         - added copyright to usbwrap.{h,cc} as per earlier meeting
1630         - added support for Old protocol Calendar entries
1631 2005/11/20
1632         - added legal.txt, to save typing when adding new source files
1633         - ignore test-base64 file (cvsignore)
1634         - added contact-to-ldif generation, and updated supporting code
1635         - added argument to btool to support contact-to-ldif operation
1636         - added Contact::GetPostalAddress()
1637         - added README documentation in preparation for future release
1638 2005/11/19
1639         - added parser.{h,cc} virtual wrapper to generalize LoadDatabase()
1640         - added code to socket.cc's Packet() command to re-receive on
1641                 reception of empty packets... this seems to be a signal
1642                 from the device that it needs more time for long transfers
1643                 Current limit: 10 blank packets before exception is thrown
1644                 Observed maximum blank count: 1
1645         - added MessageRecord and OldMessageRecord to protocol.h
1646         - changed common record field structs to one CommonField struct
1647         - increased default USB timeout to 10 seconds (some loaded devices
1648                 seem to need more time...)
1649         - reorganized record.{h,cc} to try to reduce the code duplication
1650         - record.h classes now "know" the sizes of their corresponding
1651                 protocol structs... this may cause trouble down the line
1652                 with Python, if used(?)
1653         - added Message class for Email records
1654         - removed the "Get*" database functions and replaced with
1655                 general LoadDatabase() call, which loads any database
1656                 available, and parses it with a Parser object
1657         - added GetDBID() for searching for database numbers via name
1658         - added test code to retrieve and display all email
1659         - cleaned up comments
1660         - renamed blackberry.{h,cc} to controller.{h,cc}
1661         - renamed bbtool.cc to btool.cc
1662         - added Makefile.conf
1663         - added copyright notices to source files
1664         - added COPYING file with GPL
1665         - put parser in Barry namespace, and added auto_ptr-like mode for
1666                 store object pointers
1667         - added doxygen docs
1668         - added header comments to convo.awk script
1669         - removed Test() function in Controller object, and made class
1670                 better suited to its general API purpose
1671         - changed OpenMode() so it loads command table and DBDB... it is now
1672                 a public API function
1673         - moved Controller test code to btool.cc and made tool more
1674                 generically useful... can now download any DB by name on
1675                 the command line
1676         - added mode checks to Controller
1677         - added -t and -d command line options to btool
1678         - added base64 routines from John Walker / Fourmilab and Citadel/UX
1679         - converted base64 routines into an API, instead of hardcoded
1680                 file based
1681 2005/11/18
1682         - changed project name to Barry, including namespaces
1683         - renamed sbcommon.* to common.*
1684         - increased USB default timeout to 2 seconds
1685         - fixed formatting bug in Data operator<< output
1686         - cleaned up the protocol packet structs, getting rid of the
1687                 confusing param/simple split... param is now the tableCmd
1688                 from the Command Table
1689         - moved protocol structs from record.h to protocol.h
1690         - added support for older version of the USB protocol, which matches
1691                 the Cassis spec more closely
1692         - fixed the hardcoded offsets in blackberry.cc's protocol parsing
1693         - fixed Socket::Close() so on error, socket flags are reset.
1694                 This stops Close() from being called twice on exception
1695                 destructors
1696 2005/11/17
1697         - added Doxyfile to the project
1698         - tuned Makefile
1699         - added mode selection support to Blackberry class (RIM Desktop,
1700                 RIM Bypass, and RIM_JavaLoader)
1701                 Mode selection governs which socket is used in subsequent
1702                 data transfers.
1703         - added Command Table parsing and protocol support
1704                 Blackberry class, and CommandTable record class
1705         - added Database database parsing and protocol support
1706                 Blackberry class and DatabaseDatabase record class
1707         - added Address book retrieval support - dumps data to stdout for now
1708         - fixed bug in CopyOnWrite mode in Data class, where could allocate
1709                 less buffer than data copied
1710         - added "easy exception" debug output macro
1711         - fixed minor spelling error in protocol.cc
1712         - fixed ModeSelectCommand protocol structure - it is not a parameter
1713                 command, but uses the unknown slots for socket and flag
1714                 data
1715         - removed hardcoded socket numbers from protocol.h
1716         - fixed bug in socket.cc:Open() where packet size was not properly
1717                 saved
1718         - implemented socket::Close()
1719         - fixed sequence number checks, so it is reset properly on socket 0
1720         - added Socket::NextRecord() for multiple record data transfers
1721         - fixed input handling bug in translate.cc
1722 2005/11/11
1723         - added .cvsignore files to project
1724         - added README notes to document the source architecture
1725         - added dbsetup data script, which shows how to get into database
1726                 mode, using the RIM Desktop mode, and open a socket
1727         - added blackberry.{h,cc} class
1728         - added command line parameters to bbtool.cc
1729                 -l = list only
1730                 -p = specify pin of blackberry device
1731         - added blackberry test code in bbtool.cc - debugging the initial
1732                 opening protocol: sockets, modes, etc... see dbsetup for
1733                 results
1734         - added copy-on-write functionality to Data class, so it can be used
1735                 with plain data buffers with little performance impact
1736         - added eout() and ddout() debugging - to separate:
1737                 - regular debug output
1738                 - exception debug output (should probably be logged to
1739                         syslog someday, and never turned off)
1740                 - raw data dump output
1741         - changed errno SBError exception handler to try to decode the error
1742                 numbers into english (limited success)
1743         - fixed probe and socket USB Bulk message handling, so they don't
1744                 use PollCompletions(), but use IO::Wait() (libusb_io_wait())
1745         - added common packet size checker in protocol.cc
1746         - fixed unpacked protocol packet structs... using gcc's
1747                 __attribute__ ((packed)) ... see protocol.h
1748         - added ModeSelectCommand structure (protocol.h)
1749         - finished Socket::Open() call  (Close() not yet implemented)
1750         - moved Socket::Send/Receive() out of private, as they can be used
1751                 for socket 0 operations.
1752         - cleaned up pointer management with macros:
1753                 MAKE_PACKET()
1754                 COMMAND()
1755                 IS_COMMAND()
1756         - added IO::Wait() and IO::Cancel() to correspond with libusb API
1757         - added datadumping in usbwrap for easy protocol capture
1758         - added preliminary record.{h,cc} classes
1759         - added Contact record parsing, and test code
1760 2005/10/20
1761         - syncberry tree started