Added experimental handshaking to IpModem
[barry.git] / ChangeLog
blob8c050d10f64ee55fca1d7cb6b2ccc45b5c0e3d94
1 Release: version 0.15 - 2009/01/??
2 ------------------------------------------------------------------------------
3 2009/01/17
4         - refactored pthread timeout creation into ThreadTimeout() function
5         - added experimental handshaking to IpModem.  This is in response
6                 to Bill Paul's email regarding what he was seeing in the
7                 logs with the special code packets which we dropped
8                 on the floor.  This code is to test whether this handshaking
9                 theory is true.
10 2009/01/16
11         - made maintainer script make-deb-local.sh more robust
12         - added list of target binary packages in ReleaseChecklist.txt
13         - changed to more general Fedora link to Chris Stover's packages
14 2009/01/15
15         - applied Andy Herkey's ipmodem password patch for the Bold
16         - minor fixes to above patch, and in addition to above patch:
17                 - use sizeof(seed), instead of type, in case of future changes
18                 - removed commented out code
19                 - added the null password check back to SendPassword(),
20                   for historical reasons
21                 - removed the null and zero default arguments to
22                   SendPassword(), since they make no sense
23                 - added define for session key size, and added size check
24         - added missing string.h header to src/m_javaloader.cc
25         - updated Debian and RPM packages to include bjavaloader
26 2009/01/14
27         - applied Nicolas Vivien's bjavaloader patch
28         - small fixups to above patch:
29                 - moved cod.h from installable headers to internal headers
30                 - whitespace edits
31                 - copyright statement tweaks
32                 - added blog URLs to copyright list in cod.h where parts
33                         of the structs appear to come from
34                 - removed unused variables to compile with strict settings
35                 - changed char to unsigned char to fix strict compiler
36                         warnings
37                 - removed duplicated a/b from Socket messages, and moved
38                         read/write text to front, in socket.cc
39                 - added NetDirect copyright notice to bjavaloader.cc, since
40                         it is based on btool.cc
41                 - removed unused boost-specific code from bjavaloader.cc
42         - more fixes to above patch: (bjavaloader.cc specifically)
43                 - moved cod.h back to installable headers, since tools/
44                         programs depend on it... this should be fixed
45                         or put in the library as a COD-reading API
46                         so that applications don't need to worry about
47                         packed files, etc.
48                 - fixed potential buffer overflow: removed buffer read used
49                         to skip ahead in file, and replaced with fseek()
50                 - changed SendAppFile() to report errors by exception
51                         instead of by return value, which wasn't checked
52                         anyway... and C++'d the file handle closing
53                 - removed unused StateTableCommand, leftover from btool
54                 - added check for unlikely case of COD file being larger
55                         than size_t, breaking the fread() assumption
56                         for the type == 0xC0DE case
57                 - added checks for fread() failures
58                 - fixed compiler warnings when comparing signed/unsigned,
59                         and changed file operation types from plain int
60                         to size_t/off_t
61         - changes to src/m_javaloader.cc:
62                 - fixed comments to remove Desktop-oriented notes
63                 - moved variables closer to their use point
64                 - removed the duplicated response Data objects in favour
65                         of just one (each default Data object uses 0x4000
66                         bytes of heap)
67                 - removed manual endian swap in favour of htobl()
68                         - oops... this size field is actually big endian.
69                           Since all Barry code assumes that Blackberry
70                           protocol traffic is little endian, a special
71                           case needs to be added in m_javaloader.cc for
72                           this field.  The special case uses autoconf's
73                           endian define.
74                         - fixed long long problem in endian.h (ISO C++
75                           compilers don't support long long) and made
76                           the bswap() functions always available
77                 - removed unused CommandType and m_commandTable members
78                 - fixed exception error messages to indicate command #
79                         instead of Desktop message
80                 - changed Packet() call to PacketData() when sending
81                         file size, since there is no command
82         - added eout() data dump to socket::Packet() unknown send error
83         - fixed my incorrect off_t/size_t check in bjavaloader.cc
84         - removed the '0' JL_UNKNOWN4 command from src/protocol.h,
85                 since the PacketData() change above now handles that,
86                 and I don't think that byte is actually a command, but
87                 really part of the uint32_t size
88                 - Also fixed one remaining 0 command, to use PacketData()
89 2009/01/09
90         - added AT+CLAC note to contrib/modemtest.rb, recording tidbit
91                 from mailing list
92         - updated copyright dates for 2009
93 2008/12/11
94         - fixed missing slash in config sample in doc/www/sync.php
95                 Thanks to sourceforge tracker #2413683 for reporting
96 2008/12/01
97         - added more notes to doc/USB-capture.txt, documenting my kernel
98                 setup for capturing USB traffic, and added size-limiting
99                 kernel patch
100         - added TODO list item for the Blackberry Storm
101 2008/11/30
102         - moved Product ID constants into a single place (src/common.h)
103                 and updated bcharge
104         - added Product ID 8007 for the Blackberry Storm... needs testing
105 2008/11/27
106         - applied ppp chat script patch for AT&T Cingular from
107                 Richard Esplin
108         - added new chat scripts to debian and rpm packages
109         - added known sources of additional Barry binary packages to index.php
110         - turned on call/caller graph support in Doxygen output
111 2008/11/23
112         - applied 'patch' of Martin Owens' Content Store documentation
113         - updated AUTHORS
114 2008/11/22
115         - large refactoring of all message/email record classes, and more
116                 There is now a MessageBase base class, which combines
117                 common email record parsing code in one class.  This base
118                 class is reused by all the specific messages record classes.
119                 This commit also includes support for multiple email
120                 addresses per email, as well as giving IConverter support
121                 to all message classes.
122         - deleted empty *.cc files from project
123         - updated TODO file, removing opensync i18n bug
124         - added TODO item for password support in Opensync... try to avoid
125                 storing the password in the sync config in plain text
126         - fixed dll export bug on ErrnoError exception class
127         - added BadPackedFormat exception for internal use
128         - ServiceBook: added IConverter support, and general cleanup
129                 Refactored ServiceBook class and added some experimental
130                 template functions to generalize the FieldLink table
131                 processing.  If possible, this needs to be expanded
132                 to the general record classes, to reduce the amount of
133                 code duplication during processing of FieldLinks and
134                 CommonField structures.
135                 Also, ServiceBook deals with packed fields, which should
136                 also be extrapolated for general use, and reused if
137                 possible for the new "Calendar - All" Blackberry databases
138                 that are coming out on the new devices and firmare.
139 2008/11/21
140         - updated man/btool.1 with new -i option
141         - fixed bug where opensync plugin didn't pass IConverter to Desktop
142         - added IConverter support to r_calendar.cc
143         - renamed utf8Needed to iconvNeeded, for consistency
144         - added IConverter support to r_folder.cc
145         - added IConverter support to r_memo.cc
146         - added IConverter support to r_message.cc
147         - added EmailAddressList, in preparation for multi-address email
148 2008/11/20
149         - changed Parser base class to pure abstract... this is so that
150                 future API changes to the Parse base class will be
151                 detected by the compiler as errors
152         - added NullParser class, which performs the old Parser function
153         - changed all FieldLink arrays to static
154         - added new IConverter class to support converting the Blackberry's
155                 WINDOWS-1252 charset to/from UTF-8 and more
156         - fixed bug in IConverter that saved end of string instead of
157                 beginning
158         - reorganized barry.h app header and record.h header, so that
159                 internal builds have fewer dependencies
160         - large parser/builder API change, adding IConverter support
161                 This change starts at the top (Mode::Desktop) which
162                 takes an optional IConverter object for parsing and
163                 building conversions.  The Desktop class passes
164                 this IConverter object to Packet, Parser, and Builder (and
165                 thereby, the corresponding Record classes) as needed.
166                 This adds an extra pointer to a fair number of calls
167                 in the stack, but maintains flexibility without putting
168                 too much of a burden on Parser writers, which could be
169                 application writers.
170                 The primary use of this architecture is to pass in an
171                 IConverter configured to convert to UTF-8... this is
172                 basically the only useful conversion method, but others
173                 are possible if you want to play.
174         - first record class to support string conversions: Contact
175         - reverted the barry.h and record.h reorganization, since
176                 the gui depends on it
177         - reorganized barry.h and record.h again, making inclusion of
178                 the record headers dependent on whether it is a library
179                 build or not
180         - updated the gui with the parser/builder API change
181         - added IConverter to opensync plugin, set to UTF-8
182 2008/11/13
183         - added comment to src/r_contact.h deprecating the Phone field
184         - updated Doxyfile to 1.5.1
185         - added Christopher D. Stover to AUTHORS file as Fedora contact
186 2008/11/03
187         - forgot #include <string.h> for memcpy/memset in tools/bfuse.cc
188         - moved bfuse install point from /usr/sbin to /usr/bin
189 2008/11/01
190         - added FUSE filesystem "driver"
191 2008/10/31
192         - commented out the info.subsystem match level in HAL FDI file...
193                 this should let the FDI work on old and new systems.
194                 HAL version 0.5.8 (used by Debian Etch) has the deprecated
195                 info.bus property, and doesn't have info.subsystem yet.
196         - added HAL FDI scripts to rpm/barry.spec
197         - fixed tools/Makefile.plain
198 2008/10/30
199         - added support for multiple work/home phone numbers to the
200                 opensync plugin.
201                 - Thanks to Richard Esplin for his test data.
202                 - This fix has a conflict when a cell phone number is
203                         marked as the preferred contact as well.
204                         See http://sourceforge.net/mailarchive/message.php?msg_name=20081030231045.GA28989%40foursquare.net
205                         for the full details.
206                 - This fix also changes the VCARD output... pager phone
207                         numbers are given the TYPE code of "pager"
208                         instead of "msg".
209                 - Added OtherPhone field as well
210 2008/10/22
211         - applied HAL FDI scripts and configuration from Martin Owens
212         - updated AUTHORS file
213         - added HAL FDI and python script to Debian package install
214 2008/10/18
215         - updated copyright notice and help text in contrib/modemtest.rb
216         - changed barry-verizon.chat script according to Andy Herkey's
217                 recommendation... this worked much better for Michael L.
218                 Stokes, since his provider was getting stuck on the ATZ
219 2008/10/16
220         - applied Andy Herkey's modemtest.rb ruby script to contrib/
221                 from his Aug 9, 2008 email to the mailing list
222         - applied Andy Herkey's new modemtest.rb script to contrib/
223                 from his Oct 8, 2008 email to the mailing list
224         - added password pass-through code for pppob -s mode
225         - clarified front page www doc, adding date of last release
226                 and license
227         - cherry-picked changes from Jose Carlos Garcia Sogo's debian git repo
228                 - debian/rules was stripping wrong library names
229                 - FSF address was incorrect (also updated other source
230                         files throughout the tree myself)
231                 - more complete debian/copyright file
232 2008/09/24
233         - version bump:
234                 - configure.ac
235                 - src/Makefile.am
236                 - src/version.cc
237                 - gui/src/BackupWindow.cc
238                 - Doxyfile
239                 - rpm/barry.spec
240                 - debian/changelog
241                 - opensync-plugin/src/barry_sync.cc
242         - added link to doxygen documentation to www index.php
244 Release: version 0.14 - 2008/09/24
245 ------------------------------------------------------------------------------
246 2008/09/24
247         - changed Debian changelog version to 0.14-0 to make room for
248                 official Debian packages which start at 0.14-1
249         - moved Doxyfile from src/Makefile.am to Makefile.am
250         - made RPM spec file match debian version number
251         - www documentation updates for 0.14
252 2008/09/19
253         - fixed git-tagged-release.sh to not delete its own results... oops
254 2008/09/18
255         - fixed git command line in git-extract.sh for new 1.6.0.x behaviour
256 2008/09/13
257         - added notes in ReleaseChecklist.txt regarding the new tarball
258                 tags in the git repos
259 2008/09/12
260         - updated doc/ReleaseChecklist.txt
261         - moving items from private todo list to TODO file
262         - removed unused variable from maintainer/git-release-tar.sh
263         - added new maintainer/git-tagged-tar.sh, which puts more data
264                 in the git repo, to make it easier for official Debian
265                 package creation
266         - moved src/Doxyfile to ./Doxyfile to avoid ".." in the config...
267                 the ".." paths confused doxygen and caused it to generate
268                 non-relative paths in the documentation.
269         - added umask to maintainer/git-extract.sh, so it works even without
270                 a pre-configured git
271         - updated maintainer/tar-prepare.sh to match the new Doxyfile
272         - added maintainer/tagged-release.sh, as replacement for the
273                 release.sh top level script, when using git
274         - removed CVS-style ID code from contrib/barry-unbind-storage.sh
275                 since it made it look like cdfrey wrote it
276         - removed doc/CodingStyle.txt as it is now documented in html
277 2008/08/29
278         - added device name and backup label support to the GUI
279                 It is now possible to name devices, instead of just
280                 operating by PIN number, and it is possible to now
281                 add a text label to the backup tar filenames.
282         - added the device names to the device selection dialog
283 2008/08/26
284         - updated TODO list with i18n opensync bug and general i18n support
285         - added test suite to TODO list
286 2008/08/23
287         - renamed libbarry to libbarry0 in rpm/barry.spec
288         - added %dump to rpm/barry.spec to match the OBS version
289                 Makes it easier to track variable changes across
290                 various distros.
291         - added note to NEWS regarding binary package renaming
292 2008/08/22
293         - fixed logic error in breset that displayed error on success
294                 Thanks to Richard Esplin for reporting this bug.
295         - applied commit's from Jose Carlos Garcia Sogo's debian git repo
296                 git://git.debian.org/git/users/jsogo/barry.git
297                 - Add binary dependency of libbarry-dev on libusb-dev
298                 - Rename libbarry to libbarry0, per debian policy
299                 - Add exact dependency on binary:Version for every
300                         -dbg and -dev package
301                 - Bump Standards-Version to 3.8.0
302         - updated AUTHORS
303         - clarified barrybackup error message when no records available
304                 Added a check so that "no databases selected" and
305                 "no records available" are two distinct error messages.
306 2008/08/21
307         - applied ppp chat script patch from Mick Reed
308         - updated RPM and Debian packages with new tmobileus ppp scripts
309         - added T-Mobile US to web documentation
310         - updated AUTHORS
311         - clarified sync docs regarding slow-sync... avoid it if possible
312         - tuned doxygen config, and moved generated files to doc/www/doxygen
313         - added git-release-tar.sh, replacing CVS's make-release-tar.sh
314                 Also added doxygen to the release tarball creation, so
315                 the source code's doxygen documentation is automatically
316                 generated upon release.
317         - split git-release-tar.sh into reusable component scripts
318 2008/08/14
319         - added exception handler for invalid command line options in GUI
320         - fixed barrybackup man page, removing bad -v option
321         - added distro section to AUTHORS
322         - fixed comment and whitespace problems in time.{h,cc}
323         - Converted Birthday from string to Date, and added Anniversary
324                 support.  Birthday and Anniversary fields now use a new
325                 Date struct, and Barry validates the data to some extent.
326                 - updated example code and opensync plugin to match
327         - applied Lee Dixon's Location and Description plugin patch,
328                 with minor whitespace edits
329 2008/08/12
330         - added Birthday field to examples/addcontact.cc for testing
331 2008/08/11
332         - applied Lee Dixon's Birthday field and opensync patch
333                 - fixed coding format issues
334         - updated AUTHORS
335 2008/08/07
336         - fixed bug in m_ipmodem.cc that included a null terminator in
337                 first AT command
338         - fixed RFC 2426 conformance bug...  RFC 2426, 3.1.1 states that FN
339                 MUST be present in the vcard object.  If there is no name
340                 available, then we use the Company name if available.  It
341                 should be, since the Blackberry requires either name or Company
342                 in order to create a new address.  If Company is blank too, then
343                 we insert "(Blank Name)".
344                 - On the flip side of this same bug, it is possible to receive
345                         non-conformant vcard data from evolution / opensync
346                         that does not include FN.  Since the Blackberry
347                         doesn't require this information, remove the
348                         exception, and only throw an exception if FN
349                         or Company are both blank.
350                 - REVERT: removed the Company and "(Blank Name)" workarounds,
351                         and just produce an invalid vcard if no full name,
352                         since with multiple syncing, this will come back
353                         to bite us with duplicated Company name data
354         - added sanity check to contact class for blank name and company
355         - added BadData exception class, and documented it
356 2008/08/06
357         - fixed bug in vAttr::GetValue that ignored index for single valued
358                 attributes... this should fix the endless loop / memory
359                 exhaustion that some people have been seeing
360                 Thanks to Lee Dixon for reporting this bug in detail!
361         - added TODO list item for implementing recurring calendar items
362 2008/08/01
363         - version bump:
364                 - configure.ac
365                 - src/Makefile.am
366                 - src/version.cc
367                 - gui/src/BackupWindow.cc
368                 - src/Doxyfile
369                 - rpm/barry.spec
370                 - debian/changelog
371                 - opensync-plugin/src/barry_sync.cc
372         - updated web docs showing how to set the password when using modem
373         - added section to docs on how to test the modem connection
375 Release: version 0.13 - 2008/07/28
376 ------------------------------------------------------------------------------
377 2008/07/28
378         - web doc updates:
379                 - removed extraneous "experimental" wording
380                 - added section for external links to main index page
381                 - fixed doc bug about how to install libtar
382                 - added O2 Ireland to list of modem scripts
383                 - removed ubuntu80464 and fc6 from binary package list
384 2008/07/26
385         - updated AUTHORS
386 2008/07/25
387         - applied barry-unbind-storage.sh script from Niels de Vos...
388                 added to contrib for now, in the interests of getting
389                 version 0.13 released soon... we can work on integrating
390                 this better in 0.14, which hopefully won't take so long :-)
391 2008/07/24
392         - added g++ (>= 4.1) to Debian build dependency list
393         - added support to base library and utilities for multiple email
394                 addresses in Contact records
395         - added opensync support for multiple contact email addresses
396         - applied ppp chat scripts for O2 Ireland from Simon Kenyon
397         - updated AUTHORS
398         - integrated O2 Ireland scripts into binary package installs
399 2008/07/16
400         - applied David Mansfield's opensync module password patch (ported
401                 manually to latest upcoming 0.13)
402         - updated AUTHORS
403         - added password documentation to sample barry-sync module config
404         - updated web docs with new password sample config
405 2008/07/05
406         - removed old, unused spec file and scripts for bcharge-only release
407         - fixed rpm build instructions in web docs
408         - reduced minimum password retry level from 6 to 3... Reinhold Schoeb
409                 reports that his 8800 device only lets him set a password
410                 retry range between 3 and 5, instead of the usual 10 that
411                 most devices have.
412 2008/07/04
413         - added "known issues" section to main www doc page
414         - fixed virtual function mis-name bug in btool's null parser
415         - added -i option to brecsum, to include record IDs in the sums
416         - applied Ashley Willis's btool 0.12 null parser patch to CVS, which 
417                 required some manual porting changes...
418                 - removed bool reference argument in GetParser()
419         - updated AUTHORS
420         - applied Ashley Willis's perlbarry package, putting it in the
421                 new contrib/ directory
422                 - updated AUTHORS
423                 - now that btool patch is applied, don't need it in contrib
424         - removed openssl from dependencies documentation, as barry now
425                 has its own sha1 code
426         - added libtool to dependencies documentation
427         - rpm/barry.spec file now assumes gui and opensync, with conditional
428                 checks depending which system it is being built on...
429                 --with gui and --with opensync are no longer needed.
430         - updated release scripts to build RPMs with the new spec file
431 2008/06/26
432         - updated udev rules to recognize devices with the 8004 Product ID
433         - fixed bug in test/buildtest.sh when opensync is not pre-built
434         - fixed more lintian warnings on Ubuntu
435         - fixed tiny subheadings in modem web document
436         - added syncing howto web document
437         - updated TODO list, adding Troubleshooting item, and morphing
438                 the modem item into the RPC daemon item
439         - moved old doc/TroubleShooting.txt document to web, and updated
440                 it in the process
441         - added tip to sync web docs, for using DebugMode on hangs
442 2008/06/23
443         - changed test/buildtest.sh so it is safe to run from outside
444                 the directory that contains it
445         - added note to patch webpage regarding testing patches to the
446                 build system
447         - removed mis-configured 'make dist' check from buildtest.sh
448         - added missing 'scoped_lock.h' to src/Makefile.am's non-installed
449                 headers, as it is an internal header only
450         - improved buildtest.sh: speed, accuracy
451                 - added -j option to make to speed builds
452                 - moved cleanall check above 'make dist' as dist doesn't
453                         clean up after itself
454                 - commented out 'make distcheck' for now, as it doesn't work
455         - added DISTCHECK_CONFIGURE_FLAGS to root Makefile.am, similar to
456                 David Everly's patch in tracker # 1973536
457                 Thanks David!  'make distcheck' now works, but only in
458                 an environment like buildtest.sh creates.
459                 Also, buildtest.sh passes all tests now, including distcheck.
460         - updated AUTHORS
461         - removed unused src/controllertmpl.h
462         - added ppp and test directories to Makefile.am EXTRA_DIST
463 2008/06/21
464         - added beginnings of a build system test script
465         - fixed sha1.h so it is installed by src/Makefile.am
466         - removed old Makefile.orig from src/Makefile.am
467 2008/06/20
468         - updated modem web documentation page with Sprint option, as
469                 well as listing some network security concerns
470 2008/06/19
471         - added modem reset workaround to web documentation page
472         - applied Andy Herkey's ipmodem password patch, round 1
473         - applied Andy Herkey's ipmodem password patch, round 2
474         - cleaning up some rough edges to the ipmodem patches:
475                 - removed commented out code in pppob.cc
476                 - added BXLOCAL to private member SendPasword()
477                 - added try/catch in IpModem destructor
478                 - removed FIXME comment about endian issues
479                 - added data size checks to SendPassword()
480                 - removed catch(...)
481                 - renamed class variable session_key to match others
482                 - added check to skip password if "" is passed in
483                 - added the m_filter for ipmodem PPP 0x7e filtering
484                   back, since the 8320 w/ rogers seems to need it
485         - updated AUTHORS
486 2008/06/06
487         - added timeout argument to Device::BulkDrain()
488         - added mozilla's sha1 code from git
489         - removed openssl dependency due to license issues
490                 Debian and Ubuntu have checks in their lintian tool that
491                 check for GPL+OpenSSL linkage.  In order to remove any
492                 potential obstacles to future inclusion in those distros,
493                 the dependency is removed here in favour of the small
494                 mozilla implementation which is GPL.
495 2008/06/04
496         - added notes to web documentation for OpenBSD
497         - documentation updates:
498                 - changed git patch command to use format-patch
499                 - added instructions for building from tarball
500                 - added bugs.php and contact.php pages
501         - fixed missing and mis-dated copyright notices in src/
502         - added ppp options and chat script for Sprint, based on
503                 Andy Herkey's mailing list report
504 2008/05/30
505         - added Ubuntu 8.04 to release build scripts
506 2008/05/29
507         - fixed compile errors in gui when compiling with gcc 4.3.x
508         - added ppp options and chatscript files to RPM build
509         - updated docs with binary package default PPP scripts
510         - added -P option to pppob to specify password
511         - updated pppob manpage with -P option
512         - fixed missing -P option in btool manpage
513         - updated rpm spec file history
514         - added pppob manpage to rpm spec file
515         - added manpages for brecsum, breset, upldif, and barrybackup,
516                 and updated the build process to support them.
517                 Also updated date for pppob manpage.
518         - updated rpm spec file with new manpages
519         - added ProductID code 0x8004 to breset.cc
520         - minor whitespace and usage text fix in upldif.cc
521         - deleted old src/Makefile.orig
522         - updated Debian binary package:
523                 - added manpages for brecsum, breset, pppob, upldif,
524                         and barrybackup
525                 - added ppp options and chat scripts, with postinit
526                         script to set permissions
527                 - fixed descriptions in control file to avoid lintian warnings
528 2008/05/27
529         - fixed missing #includes in src/data.cc
530         - fixed compile errors in library, utils, and plugin when compiling
531                 with new gcc 4.3.x... gui not yet finished
532 2008/05/24
533         - added minimum g++ version to website dependency docs
534 2008/05/23
535         - added ppp/README
536         - reorganized sample ppp options files so they are easier to compare,
537                 enabled "usepeerdns" in both, and disabled the speed
538                 setting in barry-verizon
539         - updates to website documentation
540                 - added FC9 to distro list
541                 - added page for BarryBackup
542                 - added page for USB modem / pppob
543 2008/05/22
544         - added sample ppp options files for Verizon Blackberries
545                 Sample files from Michael L. Stokes
546         - updated AUTHORS
547         - renamed sample ppp peer files, in preparation for installing
548                 them automatically in binary packages
549         - modified verizon options file to use pppob
550         - split the sample rogers options file into options and chat files
551 2008/05/16
552         - put sequence packet check directly in the SocketZero::RawReceive()
553                 function, which now localizes all sequence packet
554                 handling and checking, as well as avoids packet
555                 order problems when multiple sockets are in use,
556                 such as with pppob...
557                 FIXME - this localized sequence checking may make all
558                 the calls to CheckSequence() obsolete which
559                 should probably be cleaned up someday, if so.
560         - reorganized src/socket.cc to match class private/public
561                 order (no code change, only move)
562         - added verbose log message to Controller constructors, so it is
563                 possible to determine whether a program is using
564                 threaded or non-threaded sockets
565         - added -z and -Z command line options to btool to control
566                 the non-threaded/threaded behaviour, respectively;
567                 and updated the man page
568         - removed debug sleep() calls from pppob
569         - added SIGINT signal handler so pppob shutsdown gracefully when
570                 pppd is killed
571 2008/05/15
572         - mention CVS and git on main documentation "how to" list
573         - moved PPP filter logic into its own class
574         - enhanced PPP filter class to support prepending of
575                 empty bytes if needed, in order to reduce data
576                 copying, and clarified why there is no GetBuffer()
577         - added ProbeResult::HasIpModem() to determine whether
578                 IpModem endpoints are available
579         - added pure virtual Modem base class for common
580                 modem-oriented API (only Open and Write so far)
581         - Mode::IpModem is now derived from Barry::Modem
582         - experimental implementation for Mode::Serial,
583                 which is now derived from Barry::Modem,
584                 and uses PppFilter
585         - pppob now supports IpModem and Serial modes, and logging
586                 to file instead of stderr
587         - added man page for pppob
588 2008/05/10
589         - modified the planned version numbering scheme in doc/VersionNotes,
590                 so that a 1.0 is possible, with 1.50 as the devel series
591 2008/05/09
592         - continuing to update html documentation in preparation for
593                 0.13 release
594 2008/05/02
595         - removed -fvisibility-inlines-hidden compile options since some
596                 distros have old or broken compilers or libraries where
597                 the build breaks looking for STL templates (Ubuntu 7.10,
598                 I'm looking at you...)
599         - changed brecsum so usage information is displayed automatically
600                 if no command line arguments are specified
601         - added opensync-plugin to maintainer test scripts, and added
602                 ubuntu710 to the test build sequence
603 2008/05/01
604         - updated doc/TroubleShooting.txt
605         - removed usb_control message check from IpModem endpoint probing
606                 in src/probe.cc, since some devices, like the 8700
607                 have both RIM_UsbSerData mode and IpModem mode.
608         - fixed serialization code for Calendar record class, in s11n-boost.h
609         - made UnknownField's data member into its own type,
610                 so that when building records, it doesn't get processed
611                 like a null terminated string... also added more
612                 BuildField() helper functions for accuracy
613         - fixed missing fields in the Calendar record build process
614         - added Calendar to list of Builders in tools/btool...
615                 it is now possible to run: btool -s "Calendar" -f datafile
616         - added tools/brecsum program, which calculates SHA1 checksums
617                 on database records, for testing
618         - added brecsum to debian and rpm builds
619         - added recurrence builder function to Calendar record builder code
620                 which completes builder support
621                 Checksums from the following commands now match:
622                         brecsum -d Calendar > sum1.txt
623                         btool -d Calendar -f calendar.dat
624                         btool -s Calendar -f calendar.dat
625                         brecsum -d Calendar > sum2.txt
626                         diff -u <(sort sum1.txt) <(sort sum2.txt)
627 2008/04/29
628         - applied Jason Thomas's ACLOCAL_FLAGS patch to make autoreconf
629                 work again... Thanks!
630         - applied Jason Thomas's debian build dependency patch
631         - updated AUTHORS
632 2008/04/26
633         - started documentation overhaul in doc/www, putting the commonly
634                 asked questions right on the front page, and making it more
635                 goal-oriented, so it is hopefully easier to use
636 2008/04/25
637         - updated NEWS file
638         - fixed error messages in m_desktop.cc that still referred
639                 to Controller
640 2008/04/25
641         - major merge of barry-b1-socket-arch-branch into MAIN.
642           The following is the changelog from that branch, which is now MAIN.
644         2008/04/25
645                 - added thread-safe logging mechanism
646                 - added preliminary IP modem support... requires a recent
647                         device... serial mode is not yet supported
648                 - merged HEAD changes
649         2008/03/27
650                 - changed Barry::Init() so programmer can choose where
651                         debug and exception information goes, instead of
652                         always to stdout
653         2008/03/22
654                 - merged HEAD changes
655         2008/03/20
656                 - fixed bug in probe class, which missed storing the PIN
657                         number in ProbeResult
658                 - also added ProbeResult constructor
659                 - merged changes from visibility branch:
660                         - GCC visibility support, limiting what symbols are
661                           visible in the shared library, libbarry... this makes
662                           a drastic reduction in the symbol table, and should
663                           avoid future name clashes with other libraries such
664                           as opensync
665                           See: http://gcc.gnu.org/wiki/Visibility
666                         - vformat_() function name changes
667         2008/03/07
668                 - merged HEAD changes
669                 - added threads library to new bs11nread build
670         2008/02/28
671                 - fixed variable size issues in btranslate.cc, evident with
672                         some compilers on 64 bit systems
673                 - merged HEAD changes
674                 - added comments for threaded usage in usbwrap.h
675                 - changed router to use SocketId typedef, for clarity
676         2008/02/22
677                 - fixed const char warnings from newer gcc compilers
678                 - controller object now saves a copy of the probe result
679                         and provides an API to retrieve it
680                 - added sanity checks to m_serial.cc
681                 - fixed probe behaviour so that a USB probe on an endpoint
682                         that doesn't respond won't halt everything
683                 - refactored some of the probe code, and added checks for
684                         IP modem endpoints
685                 - added Probe::DumpAll()
686                 - added Open() call to pppob.cc (not yet complete)
687         2008/01/30
688                 - implemented dataqueue.{h,cc}... looks ready for testing,
689                         once things compile again
690                 - changed free list copy in router.cc to use
691                         DataQueue::append_from()
692                 - finished packet.{h,cc} implementation, ready for testing
693                 - finished controller.{h,cc}, ready for testing
694                 - finished m_desktop.{h,cc}, ready for testing
695                 - added skeleton m_serial.cc
696                 - the base library and utilities compile again!
697                 - added constructor for SocketZero(queue)
698                 - fixed ErrnoError::GetMsg()
699                 - updated GUI and opensync plugin to compile with new API
700                 - moved Raw Send/Receive socket functions to private
701                 - fixed packet header size bug in socket that caused
702                         socket ID override to be skipped
703                 - fixed incorrect use of gettimeofday()
704                 - fixed race condition where Controller could destroy
705                         the Usb::Device object before the SocketRoutingQueue
706                         was done with it
707                 - fixed segfault in SocketZero::RawSend() when a router
708                         was in use
709                 - fixed Open() bugs in btool... Open() must be outside of loops
710                 - btool uses the router thread now, for testing
711                 - partially implemented m_serial.{h,cc}... needs testing
712                 - added automatic buffer allocation to SocketRoutingQueue
713                         constructor
714                 - made AllocateBuffers() a little smarter, so it was not
715                         pure appending
716                 - added a context data pointer to the SocketRoutingQueue
717                         RegisterInterest callback
718                 - added RegisterInterest functionality to Socket class
719                 - added exceptions on router read errors in socketzero
720         2008/01/26
721                 - implemented router.{h,cc}... looks ready for testing,
722                         once things compile again
723         2008/01/25
724                 - merged HEAD changes
725                 - added router.cc and continued work on new arch
726                 - merged HEAD changes for 2008 copyright statements
727                 - added scoped_lock.h
728                 - added ErrnoError exception class
729                 - documented Controller / SocketRoutingQueue behaviour
730                 - more router implementation
731                 - simplified pppob
732                 - audit and cleanup of socket.{h,cc} code... looks ready
733                         for testing now, once things compile again
734                 - removed FIXME in router.*
735                 - removed pthread header from pppob as it is not needed
736         2007/11/22
737                 - merged HEAD changes
738         2007/10/25
739                 - merged HEAD changes
740         2007/10/19
741                 - branch started, to track development of the new socket
742                         architecture, and new mode architecture, needed
743                         to support GPRS modem support, and threaded
744                         USB access
745                 - committed work-in-progress... does not compile
747 2008/04/10
748         - added Tasks and Memos to TODO list
749 2008/03/27
750         - added support for Blackberry 8120, which has a unique Product ID
751                 Sourceforge tracker ID: 1829537
752 2008/03/22
753         - removed TimeZones from TODO list, as it is done
754 2008/03/21
755         - version bump:
756                 - configure.ac
757                 - src/Makefile.am
758                 - src/version.cc
759                 - gui/src/BackupWindow.cc
760                 - src/Doxyfile
761                 - rpm/barry.spec
762                 - debian/changelog
763                 - opensync-plugin/src/barry_sync.cc
764         - added GCC visibility support, limiting what symbols are visible
765                 in the shared library, libbarry... this makes a drastic
766                 reduction in the symbol table, and should avoid future
767                 name clashes with other libraries such as opensync
768                 See: http://gcc.gnu.org/wiki/Visibility
770 Release: version 0.12 - 2008/03/21
771 ------------------------------------------------------------------------------
772 2008/03/21
773         - changed maintainer script to use CVS export instead of checkout,
774                 to avoid the CVS directories
775         - added support for building Debian source packages with proper
776                 diff.gz and dsc files
777         - fixed find warning in maintainer/make-rpm.sh
778         - added support for Ubuntu binary packages to the maintainer build
779                 scripts
780 2008/03/13
781         - renamed all vformat_ and VFormat symbols in opensync plugin's
782                 copy of vformat code, so they don't conflict with the
783                 real opensync libraries
784 2008/03/07
785         - updated the install.php web page with Paul Dugas's notes on
786                 building RPM's from CVS
787         - fixed problem in tools/Makefile.am where bs11nread was included
788                 in build, even if --with-boost was not specified
789                 on ./configure command line
790 2008/03/06
791         - changed format of Boost serialization file output from btool,
792                 so that the database name is stored as the first line
793                 of the file
794         - added tools/bs11nread.cc to read Boost serialization file data
795                 written by btool
796         - minor adjustments to r_message.h and r_timezone.h
797         - updated s11n-boost.h header to match record classes
798 2008/03/01
799         - applied Time Zone parsing patches from Brian Edginton
800         - added Time Zones to list of supported parsers in btool.cc
801 2008/02/29
802         - changed configure.ac to use bzip2 for "make dist".. thanks to
803                 Paul Dugas for the tip
804 2008/02/28
805         - committed Chris Burgess's update to the roadmap document
806         - applied Paul Dugas's x86-64 build patch, except the
807                 tar.bz2/tar.gz change
808         - updated AUTHORS file
809 2008/02/22
810         - fixed configure.ac's --with-boost option, so that without args,
811                 it defaults to using --includedir and --libdir settings,
812                 instead of hardcoding /usr/include and /usr/lib... this
813                 should allow smarter compiling on 64 bit systems
814         - updated RPM spec file to use new --with-boost behaviour
815         - ahem, fixed configure.ac again... don't use --includedir and
816                 --libdir, as those are install targets... oops.
817                 Don't add path overrides at all if not specified.
818 2008/01/25
819         - fixed locale issues in src/data.cc
820         - updated copyright statments for 2008
821 2007/12/21
822         - applied wording correction patch to btool from Matt LaPlante
823 2007/12/07
824         - changed hard coded databases names in btool to calls to
825                 <recordclass>::GetDBName()
826         - version bump:
827                 - configure.ac
828                 - src/Makefile.am
829                 - src/version.cc
830                 - gui/src/BackupWindow.cc
831                 - src/Doxygen
832                 - rpm/barry.spec
833                 - debian/changelog
834                 - opensync-plugin/src/barry_sync.cc
835         - updated TODO
837 Release: version 0.11 - 2007/12/01
838 ------------------------------------------------------------------------------
839 2007/12/01
840         - fixed null pointer bug in Probe class (bug #1842407)
841         - added pause to maintainer release script
842 2007/11/30
843         - version bump:
844                 - configure.ac
845                 - src/Makefile.am
846                 - src/version.cc
847                 - gui/src/BackupWindow.cc
848                 - src/Doxygen
849                 - rpm/barry.spec
850                 - debian/changelog
851                 - opensync-plugin/src/barry_sync.cc
853 Release: version 0.10 - 2007/11/30
854 ------------------------------------------------------------------------------
855 2007/11/30
856         - added support to the usbwrap Match class to limit its
857                 search by busname / devname
858         - added support to the Probe class to limit its search for
859                 Blackberry devices to a given bus or device name
860         - added command line options to btool for the above Probe
861                 bus/device names, and updated the man page
862         - updated the www docs with regard to the new usb_storage
863                 behaviour and the new blacklist files... less
864                 concern about berry_charge and usb_storage conflicts
865         - added bidentify tool and accompanying man page
866         - fixed bug in rpm maintenance script that used the wrong
867                 spec file for opensuse
868 2007/11/29
869         - added better error checking to breset
870         - commented the sleep() for the 8830
871         - added code to handle the race condition where usb_storage
872                 claims the device before bcharge arrives on the scene,
873                 by asking the kernel to detach the driver from
874                 the Mass Storage interface... this change makes it
875                 possible to run bcharge, moving from 0006 to 0004
876                 to 0001 and back to 0004, all *while* usb_storage
877                 is loaded!
878         - changed Probe class behaviour so that it will not throw an
879                 exception on Device Busy (-EBUSY) but instead
880                 log the error in an internal array and keep going.
881                 This makes it possible to use btool and barrybackup
882                 with two devices plugged in at the same time.
883                 BACKWARD COMPATIBILITY NOTE: this changes initializaion
884                         behaviour, but in practice, it should only
885                         make applications look more capable, not less.
886         - updated btool to show errors logged by Probe
887         - added message to specify which PIN device is being used by btool
888         - added explanatory comments to udev rules files, about why
889                 they are so verbose
890 2007/11/27
891         - added ClearHalt() calls to probe and controller classes, just
892                 before any communication happens... the 8830 seems
893                 to need this
894 2007/11/23
895         - added usbwrap.cc:GetConfiguration()
896         - added code to check whether the configuration is the one
897                 we require, before calling SetConfiguration()... and not
898                 to call it if unnecessary.  This allows us to run
899                 at the same time as usb_storage.
900                 Thanks to Martin Owens for not letting this issue go. :-)
901         - added sleep to bcharge, before calling usb_reset()... the
902                 Blackberry 8830 behaves like a Pearl device in that
903                 it has mass storage support, but behaves like a Classic
904                 in that it resets itself... the usb_reset() seems
905                 to reset it back to 0006.  The sleep allows the device
906                 to disappear via its own reset, and let usb_reset()
907                 fail naturally on these devices.
908                 This is not an ideal solution... mainly for testing.
909 2007/11/09
910         - added modprobe/blacklist-berry_charge as per Simon Ruggier's
911                 suggestion.  Thanks also to Niels de Vos for a similar
912                 suggestion.
913         - fixed udev rules to work on both old and new distros
914                 Thanks to Duncan Mak for the bug report.
915         - AUTHORS update
916         - fixed string comparison to use case insensitive compare in
917                 opensync plugin
918         - updated Debian package to include modprobe blacklist file
919         - updated rpm spec file to include modprobe blacklist file
920         - split the maintenance scripts into release and test, so
921                 that release package builds can be done faster
922 2007/10/26
923         - opensync plugin fixes:
924                 - fixed memory leak in vBase::GetAttr()
925                 - added support in vformat parser to parse "blocks"
926                         and keep track of the hierarchy when
927                         parsing an iCalendar, etc.
928                 - added support for searching for attributes only
929                         inside certain blocks (i.e. find first
930                         DTSTART in VEVENT block, not VTIMEZONE block)
931 2007/10/25
932         - fixed bug in Calendar::Clear, missing the Free / Class
933                 member variables, leaving them uninitialized
934         - added examples/addcalendar.cc
935         - added more logging to the opensync plugin, logging the
936                 ToBarry conversion results
937         - added code to force struct tm.tm_isdst to -1 before calling
938                 mktime, in vformat.c
939                 - fixed typo in previous fix
940 2007/10/12
941         - renamed ktrans and translate to bktrans and btranslate to avoid
942                 file name clashes with libtranslate of Gnome
943                 Closes bug #1812410 reported by Troy Engel.
944         - version bump:
945                 - configure.ac
946                 - src/Makefile.am
947                 - src/version.cc
948                 - gui/src/BackupWindow.cc
949                 - src/Doxygen
950                 - rpm/barry.spec
951                 - debian/changelog
952                 - opensync-plugin/src/barry_sync.cc
953         - fixed missing default config file in the debian package for
954                 the opensync plugin
955                 Closes bug #1812224 reported by Ariel (adonatti).
956         - added debian dbg packages for tracing segfaults
957         - modified maintainer scripts so debug packages would reference
958                 source code located in /usr/src/barry-0.9, etc.
960 Release: version 0.9 - 2007/10/12
961 ------------------------------------------------------------------------------
962 2007/09/29
963         - adjusted autosuspend disabling code in bcharge, based on new
964                 information on how kernels 2.6.21 / 2.6.22 work.
965                 See bcharge.cc for comments.  If device/power/level or
966                 device/power/autosuspend exist, charging should now work
967                 without recompiling the kernel.
968         - updated website docs with autosuspend info
969 2007/09/27
970         - large update to the doc/www web pages, moving some of the
971                 information in README files to html format, so that it
972                 is commonly available on the web
973         - added step in maintenance scripts to automatically build the
974                 .html files in doc/www when making a tarball release
975 2007/09/22
976         - added libopensync 0.22 version requirement to barry.spec file,
977                 but it doesn't seem to work on OpenSuSE 10.2, where it's
978                 needed.... hmmmm
979 2007/09/21
980         - updated README to mention new tree build configure options
981         - fixed the configure scripts and makefiles so that when building
982                 with custom CXXFLAGS and LDFLAGS environment variables,
983                 it doesn't break the full-tree build mode, when
984                 using --enable-gui and/or --enable-opensync-plugin
985         - added config.h.in~ to buildgen.sh clean target
986         - converted Debian build scripts to use cdbs
987         - added opensync plugin binary package for Debian
988         - added "Getting Started" section to web pages, as well as an
989                 explanatory document for various system requirements
990         - turned on opensync build in RPM maintainer scripts
991 2007/09/20
992         - added filename to power/state error message in bcharge.cc
993         - adjusted maintainer scripts to automatically adjust barry.spec
994                 for opensuse rpm builds
995 2007/09/13
996         - fixed some of the release build scripts and added support for
997                 automated opensuse 10.2 builds
998                 - fixed build target to i386
999                 - changed scripts to add to PKG_CONFIG_PATH variable instead
1000                         of overwriting it
1001 2007/09/07
1002         - added website docs to doc/www... these are out of date at the
1003                 moment, and hopefully by including them here, they
1004                 will be updated more frequently
1005 2007/09/05
1006         - applied Simon Ruggier's build system patch that allowed a build
1007                 of all 3 components from the root directory and fixed the
1008                 configure scripts to support external build directories
1009         - reordered clean commands in the buildgen.sh scripts, and removed
1010                 the INSTALL files, since they are auto-generated by autoconf
1011         - removed extraneous buildgen.sh calls in maintainer scripts
1012         - added Simon Ruggier to AUTHORS
1013         - added explanatory note to 3 stage test build process in
1014                 maintainer script
1015 2007/08/24
1016         - fixed Category handling in the Contact record class, to
1017                 parse the comma separated string into an array,
1018                 and back
1019                 Note: this involves a change to the boost serialization
1020                         and will affect backward compatibility with
1021                         old serialization datafiles
1022         - added Category to examples/addcontact.cc
1023         - added Category support to the opensync plugin
1024 2007/08/23
1025         - fixed wrong read/write in btool output (oops)
1026         - added BadSize exception, and changed CheckSize() function
1027                 to throw it on error
1028         - changed backup GUI to catch BadSize exceptions on initial
1029                 connect, and try a reset if that error occurs, since
1030                 that likely means the device didn't shutdown properly
1031         - fixed in opensync plugin:
1032                 - some vcard data contains types codes in capital letters,
1033                         so added lower case conversion routine
1034                 - changed the order of address lines, so that address1
1035                         is the street, address2 is the extended address,
1036                         and address3 is the PO Box.  The Blackberry
1037                         doesn't seem to have any PO Box field.
1038 2007/08/20
1039         - added -e endpoint override option to btool
1040         - added status message to endpoint override
1041 2007/08/18
1042         - added configure check for strnlen, and implementation for
1043                 systems that don't have it, or that have it implemented
1044                 incorrectly.  Went a little paranoid here, since
1045                 AC_FUNC_STRNLEN doesn't set a define in config.h,
1046                 so I had to do it manually, and check in case autoconf
1047                 changes in the future... ugh.  See src/strnlen.h for
1048                 the gory details.
1049         - added code in probe.cc to fetch the device's description.
1050                 The description is now part of the probe results
1051                 along with the PIN.  Updates to protocol.h, adding
1052                 a new attribute definition.
1053                 Thanks to Rick Scott for pointing out the code in
1054                 XmBlackberry where he implemented this first.
1055         - fixed header dependency in record-internal.h
1056         - updated the "required autoconf" version to 2.61 for root build
1057         - moved nested structs out of the record classes that contain them,
1058                 in order to better support SWIG and Python
1059 2007/08/17
1060         - changed bcharge to use getopt() for its argument processing
1061         - added options -p and -s to bcharge, to adjust usb suspend
1062                 settings automatically where possible
1063         - updated the udev rules to use the new bcharge settings
1064         - updated the bcharge man page with the new arguments
1065 2007/08/16
1066         - cleaned up Usb exception handling, moving libusb error code
1067                 processing into the Usb::Error exception class.
1068                 error.cc is now an empty shell
1069         - added return codes to the Usb::Error exceptions
1070         - removed aboutdialog.{h,cc} from the backup GUI since even
1071                 Debian stable now has up-to-date gtkmm libraries
1072         - added more user friendly error message for the "device busy"
1073                 case, recommending 'rmmod usb_storage'.
1074 2007/08/09
1075         - added better error checking to bcharge.cc
1076         - version bump:
1077                 - configure.ac
1078                 - src/Makefile.am
1079                 - src/version.cc
1080                 - gui/src/BackupWindow.cc
1081                 - src/Doxygen
1082                 - rpm/barry.spec
1083                 - debian/changelog
1084                 - opensync-plugin/src/barry_sync.cc
1085         - removed usb_set_configuration() check from bcharge.cc, since
1086                 that may fail under normal operation, in this case
1088 Release: version 0.8 - 2007/08/03
1089 ------------------------------------------------------------------------------
1090 2007/08/03
1091         - moved Interface implementation to usbwrap.cc file
1092         - added dout debugging messages to usbwrap.cc
1093         - clarified unhandled packet error message in socket.cc
1094         - added temporary workaround in opensync-plugin environment's
1095                 Reconnect(), for odd message seen on newer Blackberry
1096                 devices
1097         - fixing issues with Brian Edginton's MessageRecord patch (2007/06/29)
1098                 - fixed missing size check in message oriented ParseHeader()
1099                 - fixed endian conversion issues (also found one pre-existing
1100                         endian bug in the process)
1101                 - moved message timestamp converter code to time.cc
1102         - added Barry version number to opensync plugin name
1103         - changed maintainer scripts and rpm.spec to use bzip2 instead of gzip
1104         - added opensync-plugin to configure script build
1105         - added -S option to btool, to list supported parsers and builders
1106         - slight change to opensync-plugin/buildgen.sh to cleanup config.h.in~
1107         - opensync-plugin/README update
1108         - added opensync-plugin/patches for others who may be building and
1109                 testing the plugin with OpenSync 0.22
1110         - added debian package build scripts to maintainer/
1111 2007/08/01
1112         - added entry to doc/TroubleShooting.txt
1113 2007/07/28
1114         - added doc/TroubleShooting.txt
1115 2007/07/27
1116         - opensync plugin:
1117                 - fixed bug in vcard.cc that was using the FN field
1118                         for the broken-down name instead of N
1119                 - added dbId and dbName to DatabaseSyncState
1120                 - added Reconnect() functionality to BarryEnvironment class
1121                         and moved connect logic out of barry_sync.cc
1122                 - changed the batch commit functionality in barry_sync.cc
1123                         to single-change-commit.  Why?  Because opensync
1124                         0.22 groups all batch changes into one group
1125                         and calls one batch commit function, even if you
1126                         registered two.  Moving to single change commit
1127                         mode removes a chunk of unneccessary code
1128                         from the plugin as well, and can in theory
1129                         ease memory pressure in the library.
1130                 - added FinishSync() to perform actions needed on successful
1131                         syncing completion
1132                 - disconnect on successful sync completion, and reconnect,
1133                         since the device's dirty flags don't seem to
1134                         be updated until a disconnect occurs.
1135 2007/07/26
1136         - added ReadDataArray() to data.h, using an istream instead of
1137                 requiring a file
1138         - added raw data version of BuildField() to record-internal.h
1139                 This is so that btool doesn't add extra null terminators
1140                 to unknown data, when restoring with option -s
1141         - fixed bugs in r_contact.cc:
1142                 - fixed bug that caused a LastName/FirstName swap
1143                         if FirstName was empty and you wrote a contact
1144                         record into the device.... First/Last Name
1145                         fields are position sensitive, and the code
1146                         was missing the empty FirstName case on writing
1147                 - fixed bug in BuildFields() and Dump() where they
1148                         were not updated to handle the new field
1149                         table added for the postal address changes
1150                         on 2007/07/20, oops
1151         - opensync plugin:
1152                 - changed the plugin config file, so it is possible to
1153                         turn debug output on/off without recompiling
1154                 - moved the standalone Map2Uid() function into
1155                         the DatabaseSyncState class, and changed the
1156                         code to produce "contact-#" and "calendar-#"
1157                         UID strings, instead of just numbers
1158                 - changed default PIN to -1, so that if the user doesn't
1159                         configure properly, it will fail... this is a
1160                         safety measure to avoid syncing with different
1161                         devices and corrupting the cache/idmap...
1162                         this should be fixed someday, to handle this
1163                         automatically
1164                         On second thought... is this right?  Perhaps
1165                         it is better to fail if the PIN is not what
1166                         is expected, so a user doesn't accidentally
1167                         sync the wrong device and lose data.
1168                         Actions to take on new PIN:
1169                                 - force slow_sync, or
1170                                 - fail
1171                 - incorporated the new VCardConverter code into the
1172                         main barry_sync.cc plugin code
1173                 - fixed bug that did not clear the devices dirty flags
1174                         in the case where a sync only read data from it,
1175                         and didn't write
1176                 - changed PIN error message number to hex
1177 2007/07/20
1178         - minor wording change in backup GUI prompt: "Backup working..." to
1179                 "Backup in progress..."
1180         - renamed Contact class's Title field to JobTitle for clarity
1181         - added record function ParseFieldString(), which properly handles
1182                 strings from the device that have multiple null terminators,
1183                 and changed the record parsing code to use this new function
1184         - moved FullName() function from ldif.cc to r_contact.cc since it
1185                 is generally useful in areas outside of LDIF processing
1186         - refactored postal addresses in the Contact record class into
1187                 a new class called PostalAddress
1188         - renamed Address class in record.h to EmailAddress
1189         - moved Contact::GetPostalAddress() to record.cc as part of the
1190                 new PostalAddress class and renamed it
1191                 PostalAddress::GetLabel()
1192         - opensync plugin:
1193                 - refactored vformat helpers into separate base class
1194                         called vBase
1195                 - added vCard converter class
1196                 - commented out the code that skipped over the adding
1197                         of empty attribute values and parameters,
1198                         since VCARD depends on some of this behaviour
1199                 - movified vformat.c:vformat_find_attribute() to take
1200                         an extra nth argument, in order to search
1201                         for multiple attributes with the same name...
1202                         the way this is coded is a bit inefficient...
1203                         but we're moving away from vformat when we move
1204                         to OpenSync 0.3x / 0.40, so this is just temporary
1205                         pain
1206 2007/07/19
1207         - added SUBSYSTEM=="usb_device" to example udev rules, in order
1208                 to avoid running bcharge for each endpoint that is
1209                 added by udev, when first plugged in.  Running bcharge
1210                 back-to-back multiple times can crash some
1211                 Blackberries.
1212 2007/07/14
1213         - opensync plugin:
1214                 - fixed ID mapping bug in the case of a non-numeric UID
1215                         from syncing external -> Barry, and then the
1216                         new Barry ID would look like a new change
1217                         when syncing back from Barry -> external.
1218                 - added support for slow sync
1219                 - added clear() to idmap class
1220                 - added vformat attr parameter extraction class
1221                 - added more trace logging during vformat/Barry conversions
1222                 - added Notification time support
1223                 - handled "all day" vformat special case, when DTEND
1224                         does not exist in a vformat data block
1225         - changed the min1900_t time conversion functions to handle
1226                 the 0xffffffff special case, when notifications
1227                 are turned off on a calendar event (src/time.cc)
1228         - also made the calendar data dump output clearer for
1229                 disabled timestamps, and added debug output
1230                 for the raw min1900 value, in case there are more
1231                 special cases in the future
1232 2007/07/13
1233         - fixed null pointer access in opensync's HasMultipleVEvents()
1234 2007/07/12
1235         - upper management directive: revert all OpenSync 0.3x changes
1236                 and proceed with OpenSync 0.22.  Reverting the
1237                 opensync-plugin/src tree to Barry 0.7 status.
1238 2007/07/06
1239         - reorganized exception and trace code in opensync plugin
1240         - added XmlToCalendar() function, based on unfinished opensync
1241                 library API that is not yet finished... will be
1242                 committed to opensync svn tree when complete
1243         - added OSyncXMLField logger to plugin trace class
1244 2007/06/29
1245         - applied email MessageRecord patch from Brian Edginton (thanks!)
1246         - updated Message::Dump() to output more valid mbox data...
1247                 the goal is to be able to do:
1248                         btool -d "Messages" > email.mbox
1249                         mutt -f email.mbox
1250         - changed some TODO's to FIXME's to keep it grep-consistent
1251         - applied Folder support patch from Brian Edginton
1252         - fixed pedantic compile warnings, and changed order in src/Makefile.am
1253         - removed unneeded cast in src/r_folder.cc
1254 2007/06/28
1255         - minor adjustment to ctags building in buildgen.sh
1256         - applied patch from Brian Edginton for better boost detection
1257                 in configure.ac
1258         - added boost usage message to btool -h output
1259 2007/06/21
1260         - more porting of OpenSync module to 0.30
1261         - added ctags build for opensync source tree to buildgen.sh
1262 2007/06/14
1263         - changed PKG_CONFIG_PATH setting in rpm script, so that systems
1264                 like SuSE that have an extensive PKG_CONFIG_PATH
1265                 in general use will not break on build
1266         - added PKG_CONFIG_PATH to debian script too, just in case :-)
1267         - added debian/changelog to doc/ReleaseChecklist.txt
1268         - added comment to rpm/barry.spec regarding SuSE RPM builds
1269 2007/06/08
1270         - applied patch from Niels de Vos fixing debian package build
1271                 dependency
1272         - applied Brian Edginton's Saved Email Messages patch
1273         - updated r_saved_messages.cc comment to match header
1274         - added GetRecType()/GetUniqueId() to r_saved_messages.h, since
1275                 SetIds() is already there
1276         - removed Address version of operator<<() from message related headers
1277                 and moved into record.h
1278         - added std::hex to message related dumps, and changed output to
1279                 be more mbox-like
1280         - updated doc/CodingStyle.txt to cover switch() statements
1281         - opensync compiles again, with 0.30!  (not functional yet)
1282                 - moving closer to more modular and reusable plugin functions
1283         - updated release checklist for opensync version number
1284 2007/06/07
1285         - added doc/CodingStyle.txt... preliminary version
1286 2007/06/06
1287         - applied Brian Edginton's PIN message patch
1288         - changes to PIN message patch:
1289                 - fixed missing backslash in src/Makefile.am
1290                 - fixed tab alignment throughout
1291                 - removed typedef from Address struct
1292                 - added clear() to Address... might as well, if it it is
1293                         going to be a standalone type
1294                 - fixed missing comma in PINMessageFieldLinks table
1295                 - changed MessageRecordId in PINMessage to load from a new
1296                         uint32_t field in CommonField, instead of piggy
1297                         backing on a field for other use
1298         - did some testing and found that PINMessage's MessageRecordId
1299                 is the same as the RecordId given through the SetIds()
1300                 API... but these Id's are duplicated in the protocol...
1301                 RecordId is stored in the protocol header, while
1302                 MessageRecordId is stored in the record it self as
1303                 a common field... added RecType and RecordId to
1304                 PIN Message so that we store both of these
1305         - updated AUTHORS
1306 2007/05/27
1307         - added item to gui/TODO
1308         - applied Brian Edginton's s11n-boost.h patch
1309 2007/05/25
1310         - renamed template values to more consistent naming scheme
1311         - applied memos and tasks patch from Brian Edginton, slightly
1312                 modified to split into the new separate files system
1313         - changes to memos and tasks classes:
1314                 - reformatted the code to match coding style
1315                         (come on Brian) :-)
1316                 - added copyright notice
1317                 - changed class to singular (Memo, not Memos)
1318                 - placed in Barry namespace
1319                 - added #ifdef header protectors
1320                 - added new files to Makefile.am
1321                 - added new r_*.h headers to record.h
1322         - added support for Memos and Tasks to tools/btool.cc, based on
1323                 Brian Edginton's patch
1324                 (currently commented out, for Boost library reasons):
1325         - added doc/CommitPolicy.txt
1326         - updated AUTHORS
1327 2007/05/24
1328         - added ctags generation to buildgen.sh
1329         - applied record.{h,cc} fix patch from Brian Edginton
1330                 - ClassFlag
1331                 - FreeBusyFlag
1332                 - Clear() fixes
1333         - fixed broken formatting in above patch
1334         - refactored record parser classes into separate files for each
1335         - changed the ConvertHtoB<> template to inline, as it caused
1336                 linker errors with the new file layout
1337 2007/05/17
1338         - fixed bug in Debian packaging that put util commands in
1339                 /bin and /sbin instead of /usr/bin and /usr/sbin
1340         - commited byteswap.h replacement code from gm2net
1341         - backup gui:
1342                 - removed unneeded debug messages on stdout
1343                 - changed the default for debug output to "off"
1344                         and added a command line option to turn
1345                         it on if necessary  (--debug-output)
1346                 - command line option --help now also works
1347         - fixed bug in Calendar class where it didn't initialize
1348                 RecType properly... and cleaned up other RecType
1349                 code to use the GetDefaultRecType() functions,
1350                 localizing the constants in one place
1351 2007/05/11
1352         - applied patches from Brian Edginton, parsing more
1353                 fields in Contact and Calendar records
1354         - added Brian Edginton to AUTHORS
1355         - reformatted record.{h,cc} to match the rest of the code,
1356                 removed commented out code, and removed mention of
1357                 Outlook from the comments.
1358         - updated udev/10-blackberry.rules.Debian for Debian Etch
1359         - updated debian/rules to use new udev rules file
1360         - removed debian/postinst, as stable versions of Debian now
1361                 have a recent udev, and don't need the special handling
1362         - updated Debian build scripts to build separate packages:
1363                 libbarry
1364                 libbarry-dev
1365                 barry-util
1366                 barrybackup-gui
1367         - added menu support to Debian barrybackup-gui package
1368         - made the buttons bigger in the backup GUI, as they were too
1369                 small on Debian Etch
1370         - opensync plugin:
1371                 - more progress in porting to opensync 0.30, heavily
1372                         based on the example plugin in the opensync
1373                         svn tree...  this is a work in progress, and so far
1374                         is incomplete
1375 2007/05/04
1376         - opensync plugin:
1377                 - partial porting to opensync 0.30 (in progress!)
1378                 - fixed bug in sync_done where it reported context error
1379                         and then success afterward
1380         - checking in new INSTALL files based on Etch's autoconf run
1381         - added item to gui's todo list
1382         - bumped version numbers to 0.8 in:
1383                 - configure.ac
1384                 - src/Makefile.am
1385                 - src/version.cc
1386                 - gui/src/BackupWindow.cc (about dialog)
1387                 - src/Doxygen
1388                 - rpm/barry*.spec
1390 Release: version 0.7 - 2007/05/02
1391 ------------------------------------------------------------------------------
1392 2007/05/02
1393         - added rpm building to maintainer/release scripts
1394         - added "HEAD" feature to tarball creation script, for easier testing
1395         - updated maintainer/README
1396         - updated maintainer/release.sh to use new HEAD feature too
1397 2007/05/01
1398         - added pppob to rpm barry.spec
1399         - bumped release number in barry.spec
1400 2007/04/30
1401         - opensync plugin:
1402                 - fixed size check bugs (strlen() == 0 when empty)
1403                 - finished refactoring calendar conversion routines
1404                 - started timezone parsing, but this may go away
1405                         if we use opensync 0.30's time functions and
1406                         xml data format...
1407                 - added development note to README
1408 2007/04/29
1409         - updated README and opensync-plugin/README with more current
1410                 build instructions
1411         - opensync plugin:
1412                 - refactored some calendar conversion routines
1413                 - added Barry->vCalendar conversion for recurring appointments
1414 2007/04/27
1415         - opensync module:
1416                 - removed some unneeded trace logs
1417                 - fixed VEventConverter constructor bug, with uninitialized
1418                         m_Data pointer
1419                 - eased up the requirement that every calendar event
1420                         must have a summary... defaults to "<blank subject>"
1421                         if empty
1422                 - added more VCALENDAR fields to match Barry::Calendar record
1423                 - fixed case sensitive compares in vformat.c
1424 2007/04/26
1425         - opensync module work:
1426                 - added id map class to map string uid's from OpenSync to
1427                         numeric ID's from the Blackberry
1428                 - fixed bug in CommitChange() where it was still using
1429                         a hard coded calendar record state table
1430                 - added lots of logging throughout
1431                 - fixed bug where newly added records didn't use the
1432                         change object's uid, but created a new ID,
1433                         causing another sync on the next run
1434                         i.e. (CommitData_t was missing an argument)
1435                 - fixed bug where uninitialized notification time was
1436                         written to the Blackberry
1437         - more opensync module work:
1438                 - refactored the environment class into another subclass
1439                         called DatabaseSyncState, and moved some stand-
1440                         alone functions from barry_sync.cc into
1441                         the environment classes
1442                 - added a tagged constructor to the trace class
1443                 - fixed idmap::Load() to clear map before loading
1444 2007/04/20
1445         - renamed barry-config to barry-sync, the default configuration
1446                 file for the opensync module... and filled it with
1447                 a sample configuration
1448         - added code to update the calendar cache, and write it to disk
1449                 on success (opensync module)
1450         - added code to clear dirty flags in the device (opensync module)
1451         - allowed comments in the config file
1452         - added vformat.c from libopensync 0.22, since the vformat
1453                 routines are not available from the plugin side
1454 2007/04/19
1455         - updated gui/TODO
1456         - added -d switch to bcharge to switch back from 0001 to 0004 mode,
1457                 changed the auto-detection logic to ignore iProduct and
1458                 only use idProduct, and updated man page
1459         - updated breset to recognize the Pearl in 00004 mode as well
1460         - changed src/probe.cc logic to assume that the second endpoint
1461                 pair is the one needed for database communication, instead
1462                 of doing a reverse search from the end... newer Pearls
1463                 in Dual mode seem to have at least 3 or 4 endpoint pairs,
1464                 and the old search didn't always work
1465         - applied sourceforge patch #1696884 from Peter Silva, updating
1466                 the Debian build for Etch, and including all files in one deb
1467         - added Peter Silva to AUTHORS file
1468         - uncommented the "make distclean" in debian/rules, and removed
1469                 the reliance on /tmp when installing 99-barry-perms.rules
1470         - applied bb_task_format.txt patch from Peter Silva
1471         - fixed each misspelling of "recurrance" to "recurrence"
1472         - tweaked src/probe.cc again for paranoia's sake... start at
1473                 offset 1 if more than 1 endpoint pair, otherwise start
1474                 search at 0
1475         - split up opensync module into multiple source files, and started
1476                 using the opensync vformat routines for parsing and building
1477                 the vevent20 data (experimental)
1478 2007/04/04
1479         - more incremental work on the opensync plugin, adding ADDED
1480                 and MODIFIED functionality... (experimental!)
1481 2007/03/30
1482         - added code to dump extra descriptors during device discovery,
1483                 if found
1484         - bumped opensync version number in configure.ac, and made
1485                 the configure scripts more consistent with the rest
1486                 of the project
1487         - fixed printf-format size bug in opensync module
1488 2007/03/29
1489         - applied patch from Niels de Vos, fixing deb udev rules for Pearl
1490         - updated AUTHORS
1491         - fixed extra space bug in LDIF output (added space when creating
1492                 FullName, even if there was no last name)
1493         - fixed Address Book record parsing in Contact class... the
1494                 Blackberry database uses field id 0x20 for both the
1495                 first and last names, and if only a last name exists,
1496                 the first name will be empty.  Fixed parser to handle
1497                 this special case, without relying on string length.
1498                 Thanks to Troy Engel for reporting above two LDIF bugs.
1499         - added a few more constants to bcharge.cc
1500         - renamed opensync's configure.in to configure.ac
1501 2007/03/17
1502         - fixed bcharge to avoid endless reset loop... oops
1503 2007/03/16
1504         - reorganized bcharge.cc to make it possible to switch between
1505                 Pearl modes 0004 and 0001
1506         - added flag to BadPassword exception class, to signal whether
1507                 the library considers the device "out of retries" or not
1508         - updated socket.cc for new BadPassword exception
1509         - added special case to Controller class destructor to reset the
1510                 device if being destroyed in a half-open state... this is
1511                 a temporary fix until we understand how to handle
1512                 the "already open" message we get when opening the Desktop
1513                 in some cases
1514         - added password prompt dialog to the backup GUI
1515         - fixed possible memory leak in GUI's DeviceInterface::Connect()
1516 2007/03/08
1517         - committed Troy Engel's bbrules_mass_symlinks.patch, fixing
1518                 udev rules for the Pearl
1519         - updated 10-blackberry.rules.Debian to match 10-blackberry.rules's
1520                 functionality
1521         - applied Troy Engel's barry.spec patch to generate all required
1522                 RPM's... Thank you!  Notes in the README taken from
1523                 the sourceforge tracker entry containing the patch.
1524         - added libusb lib flags to tools/ and examples/ makefiles,
1525                 and tweaked configure.ac with a better default,
1526                 to build cleanly on RHEL 4
1527         - modified rpm/barry.spec:
1528                 - does not create doc-only barry base package anymore
1529                 - fixed "barry-backup" typo
1530                 - removed the patch step, as version 0.7 shouldn't need it
1531                 - added license file to each package
1532                 - commented out console perms scripts, pending mailing list
1533                         discussion
1534         - updated AUTHORS
1535         - applied Troy Engel's barry.spec patch to fix RHEL4 compile issues
1536         - fixed 80 column wrapping error in barry.spec, thanks to Troy Engel
1537                 for the bug report
1538         - applied Troy Engel's udev permissions patch for Redhat/Fedora
1539                 systems, which automatically set the ownership of a
1540                 newly plugged in device to the currently logged in console
1541                 user.
1542         - added udev/README to document what all those files are for...
1543                 part of the text comes from the sourceforge comment
1544                 on the above udev permissions patch from Troy Engel
1545         - uncommented the console perms scripts for rpm/barry.spec
1546         - added libglademm-2.4 to gui/README's dependency list
1547         - made usbwrap.* calls more threadsafe
1548         - added Usb::Timeout exception for timeout errors
1549         - added preliminary UsbSerData support to library for GPRS modem
1550                 functionality, using Rick Scott's XmBlackBerry's serdata.c
1551                 as a guide
1552         - added overloaded Socket::Send() for sending without receiving
1553         - added preliminary pppob command line tool
1554 2007/03/02
1555         - version bump in:
1556                 - configure.ac
1557                 - src/Makefile.am
1558                 - src/version.cc
1559                 - gui/src/BackupWindow.cc (about dialog)
1560                 - src/Doxyfile
1561                 - rpm/barry.spec
1562         - build system tweaks for opensync-plugin, and added a buildgen.sh
1563                 for it
1564         - added better debug messages in probe.cc and usbwrap.cc's
1565                 device discovery code
1566         - changed error handling for null interface->altsetting pointers
1567                 when doing device discovery in usbwrap.cc.  Seems that
1568                 some devices report a higher number in bNumInterfaces
1569                 than are really available... in this case, let's
1570                 just ignore the missing data and assume success
1571         - applied udev script patch #1663986 from Troy Engel
1572         - applied barry-bcharge.spec patch #1672178 from Troy Engel
1573         - ReleaseChecklist update
1574         - added rpm/README based on Troy Engel's patch notes
1575         - updated new barry-bcharge.spec for version 0.7, removing patch
1576                 dependency
1578 Release: version 0.6 - 2007/02/28
1579 ------------------------------------------------------------------------------
1580 2007/02/28
1581         - fixed size checks for device database records larger than 64K
1582                 Thanks to Michael Brown for the bug report.
1583         - added initial release maintainer scripts
1584         - fixed odd backup success message in GUI when doing a backup with
1585                 no databases selected in configuration
1586                 Thanks to Michael Brown for the bug report.
1587         - added udev permissions file patch from Michael Brown
1588         - added Michael Brown to AUTHORS
1589         - updated README, gui/README, and doc/USB-capture.txt
1590         - added -o command line switch to bcharge.cc, and updated man page
1591 2007/02/23
1592         - changed library behaviour so it only turns on libusb debug output
1593                 if in data dump mode.  In btool, -v controls this output.
1594         - minor stream formatting fix in btool
1595         - added OpenSSL dependency to build for password hash support
1596         - made debug dout() output conditional on Init() flag... In btool,
1597                 -v now controls this as well
1598         - reverse engineered more of the initial probe packets, and
1599                 implemented probing in struct based code... changes include:
1600                 - added support for "attribute fetch" packets, used at
1601                         the beginning of USB conversations
1602                 - defined object/attribute id codes for the PIN number
1603                 - made Protocol::SocketCommand more robust, and implemented
1604                         its sequence number behaviour
1605                 - moved ModeSelectCommand into SocketCommand, as it is a
1606                         socket 0 level command
1607                 - added initial protocol struct: PasswordChallenge
1608                 - renamed Barry::Packet to DBPacket
1609                 - added ZeroPacket for socket 0 packet creation and analysis
1610                 - Barry::Packet is now the base class for the above
1611                 - implemented socket 0 behaviour in socket.cc
1612                 - changed return values for Send/Receive/Packet/NextRecord
1613                         members in the Socket class from bool to void, as they
1614                         don't generate errors themselves, but only can
1615                         have an error if Usb::Device throws an exception.
1616                         Cleaned up all code that called these members as well.
1617                 - removed "last status" from Socket class as it was unused
1618                 - updated probe.cc to use new socket 0 implementation
1619                 - removed two of the hard coded packet handshakes in favour
1620                         of socket 0 packets
1621                 - updated controller.cc:
1622                         - uses new socket 0 implementation
1623                         - removed "flag" hack when opening sockets and
1624                                 selecting modes, as it should use the
1625                                 socket 0 sequence number
1626         - added initial, incomplete prototype header for the C API
1627         - updated some .cvsignore files
1628         - updated TODO
1629         - updated ReleaseChecklist.txt, adding rpm spec file
1630         - added the following to ZeroPacket:
1631                 - ChallengeSeed()
1632                 - RemainingTries()
1633                 - SocketResponse()
1634                 - SocketSqeuence()
1635         - moved Command() to base Packet class
1636         - added comments to protostructs.h and size constants for the
1637                 new PasswordChallenge struct
1638         - added password support to Socket and Controller classes
1639                 Thanks to Rick Scott's XmBlackBerry for the openssl
1640                 password hashing logic.
1641         - updated btool to use new password support, and updated its man page
1642 2007/02/22
1643         - updated Doxygen input files and version, and added to ReleaseChecklist
1644         - fixed btool PIN output for LDIF mode, now commented in output
1645         - major LDIF overhaul:
1646                 - split LDIF specific code out of the record class and
1647                         into its own
1648                 - fixed "full name" behaviour that added an extra space
1649                         in dn attributes, as reported by Troy Engel
1650                 - added support for mapping of LDIF attributes to Barry
1651                         contact field names
1652                 - fixed base64 handling, so attributes are only so encoded
1653                         if necessary
1654                 - fixed base64 attribute reading inconsistency... some
1655                         notes fields were missed in old version if not
1656                         encoded
1657                 - added support for specifying alternate attribute for
1658                         constructing a FQDN, instead of just "cn"
1659                 - updated btool and upldif to use new features
1660         - large update to btool manpage
1661         - fixed initialization bug in Contact constructor (missed RecType)
1662 2007/02/15
1663         - added ktrans.cc to make reading of kernel usbfs_snoop logs easier
1664         - removed commented code from translate.cc
1665         - added Pearl handshake support to bcharge.cc, which resets the
1666                 Pearl so that the vendor specific 0xFF class exists.
1667                 This should allow use of btool on the Pearl.
1668         - added Data::AppendHexString to data.cc
1669         - added better probing support for the Pearl, so it detects the
1670                 Product ID 0x0004 mode, and does a search for class 0xFF
1671                 instead of hardcoding it.
1672 2007/02/10
1673         - applied README patch from Ian Darwin
1674         - minor tweaks to README
1675         - added missing errno.h header in src/usbwrap.cc for AMD64
1676                 Thanks to Jonathan Hudson for reporting the bug.
1677         - tightened up size checks in Data::ReleaseBuffer()
1678         - stable libusb *does* return the actual length of the USB packet...
1679                 fixed this in usbwrap.cc to set the actual size of read data,
1680                 and removed the size hacks elsewhere in the code:
1681                 probe.cc, protocol.cc, socket.cc, usbwrap.cc
1682 2007/02/09
1683         - added proper return codes for error conditions in btool.cc
1684         - clarified some stream output code in the library, for hex/dec numbers
1685         - removed old, non-working connect.cc test program
1686         - added iomanip to debug.h
1687         - changed usbwrap to call libusb again if EINTR and EAGAIN
1688                 This should fix one of the OpenBSD issues
1689 2007/02/04
1690         - updated AUTHORS
1691         - fixed bug in barrybackup GUI that didn't create the target path
1692                 if the user didn't do Edit | Config first.
1693                 Thanks to Ian Darwin for reporting the bug.
1694         - applied gui/src/ConfigFile.cc header fix patch for OpenBSD
1695                 from Ian Darwin
1696 2007/02/03
1697         - added initial btool.1 man page from Ian Darwin
1698         - updated man/Makefile.am for new btool.1
1699         - updated AUTHORS
1700         - applied btool -h help clarification patch from Ian Darwin
1701 2007/02/02
1702         - reworked exception hierarchy, so applications can handle all
1703                 Barry related exceptions, including Usb errors, with
1704                 one base class: Barry::Error
1705         - fixed all the ripple changes this caused throughout the codebase
1706         - added BadPassword exception
1707 2007/02/01
1708         - version bump in:
1709                 - configure.ac
1710                 - src/Makefile.am
1711                 - src/version.cc
1712                 - gui/src/BackupWindow.cc (about dialog)
1713         - updated doc/ReleaseChecklist.txt
1714         - added usb-level breset.cc command line tool
1715         - fixed bug in gui/src/tarfile.* for systems where
1716                 sizeof(int) != sizeof(void*)
1717                 - TarFile class now uses a plugin style for the compression
1718                         operations, to allow for threadsafe versions if needed
1719                         in the future.
1720                 - also fixed leaked file handle bug in open_compressed()
1721                 - Thanks to Jonathan Hudson for reporting this for 64bit systems
1722         - minor signed comparison fixes in the library
1723         - added better protocol data dumping code in probe.cc
1724         - added Usb::Device::BulkDrain(), to prevent Barry from hanging
1725                 due to pending reads
1727 Release: version 0.5 - 2007/01/26
1728 ------------------------------------------------------------------------------
1729 2007/01/26
1730         - added missing errno.h header to gui/src/util.cc
1731         - lots more endian fixes after testing on iMac  
1732         - iostream output size fixes
1733         - added option to btool to reset the device via software
1734         - beefed up exception handling in barrybackup
1735         - checked in opensync work-in-progress: trace logging, pointer bugfix
1736                 this is still experimental
1737         - added aboutdialog.* files from gtkmm24 2.10.6, so we have a dialog
1738                 class for systems running older versions of gtkmm, like
1739                 Debian stable
1740         - uncommented the about box menu handler
1741         - added "cleanall" option to root buildgen.sh script
1742         - update ReleaseChecklist.txt
1743         - removed CVS auto-history strings from aboutdialog.*
1744 2007/01/25
1745         - found a link between the unknown field in tagged protocol headers
1746                 and the unknown field in RecordStateTable entries.  This
1747                 field matters when uploading certain databases, such as
1748                 Browser Options.  It is unknown what this field really
1749                 means, but we're calling it RecType.  Updated the API
1750                 to use this in all parser objects and builder objects
1751                 and record objects that use it.
1752         - changed some uses of uint64_t to uint32_t, in Contact and
1753                 Calendar record objects... unique IDs only seem to be
1754                 32 bits
1755         - added new static function to record classes: GetDefaultRecType()
1756                 This returns the default rectype that should work
1757                 for that record.  Ideally this should be retrieved from
1758                 the device, but in the case where a database has no
1759                 records, this info would be good to know.
1760         - updated convenience template function Controller::AddRecordByType()
1761                 to use GetDefaultRecType()
1762         - documented the recurrence data and how to use it in Calendar objects
1763         - added data debug output for incoming USB packets in the
1764                 socket class... when we ported to the stable libusb
1765                 we lost some of the verbose output... this should get it
1766                 back.  (In the official release, you need to uncomment
1767                 ddout() in debug.h for the full blast of debug output).
1768         - backup GUI updates:
1769                 - changed error_done signal into a pure error signal,
1770                         and changed the logic so the restore continues
1771                         even if there was a protocol error on one database
1772                 - changed status bar messages to show what's happening
1773                         i.e. Backup or Restore
1774                 - default to not restore the "Handheld Agent" database as
1775                         it appears to be read-only on the device
1776                 - added temporary Restore & Backup mode for debugging
1777                 - added extra hyphen to backup files to show date/time better
1778                 - updated GUI to save and restore the new RecType field
1779                         supported now by the library
1780 2007/01/21
1781         - added future considerations to doc/ReleaseChecklist.txt
1782         - applied big endian patch from Jonathan Hudson
1783         - changes to patch:
1784                 - removed endian.h include from barry.h, since applications
1785                         using the library should not care about endianness
1786                 - hard coded the path to config.h in endian.h
1787                         so that endian.h never makes it into the final
1788                         install
1789                 - removed DEFAULT_INCLUDES setting from src/Makefile.am
1790                         for the same reason
1791                 - removed config.h dependency in btool.cc and used library
1792                         Version call instead
1793         - added big/little endian text to the Barry::Version call
1794         - updated AUTHORS
1795         - fixed install location of bcharge when building with ./configure;
1796                 now goes to sbin/ for both source compile and binary packages
1797                 Thanks to Jonathan Hudson for reporting this bug.
1798 2007/01/20
1799         - added smarter timeout values to controller, and allowed
1800                 timeout overrides in the packet, socket, and usbwrap code...
1801                 extra timeouts are needed for erasing databases for
1802                 some older devices
1803         - added an explicit DataDumpParser class to btool.cc, as the
1804                 library doesn't always have extreme verbose debugging on...
1805                 this makes sure anyone can always get raw database packets
1806                 through btool, for development
1807         - added thread callback signals for error finishes and erase_db
1808                 operations, so the GUI is updated properly
1809         - more GUI cleanups (status bar updates, etc)
1810         - finished implementation of GUI restore
1811         - fixed gtkmm/glibmm exception handling when the exceptions
1812                 occur in sigc signal handlers... in that case,
1813                 exceptions need to be handled with
1814                 Glib::add_exception_handler()
1815         - added filename-only reading support to TarFile class
1816         - added pending gui/TODO items
1817 2007/01/19
1818         - backup GUI now properly shows progress
1819         - the buttons become insensitive when backup is busy
1820         - refactored directory check code, and added mkdir check
1821                 when to the backup setup (so the directory exists
1822                 when we try to write to it)
1823         - updated code to use Barry::Data in new namespace
1824 2007/01/18
1825         - moved Data class into Barry namespace
1826 2007/01/13
1827         - updated copyright dates for the new year
1828         - clarified exception message in controller.cc
1829         - fixed pointer initialization bug in controller.cc
1830         - added documentation comments to parser.h and builder.h
1831         - updated ReleaseChecklist.txt
1832         - updated README
1833         - changed Barry library configure scripts to make better
1834                 use of pkg-config for autodetecting dependencies
1835         - added initial Barry Backup GUI (gui/ directory), capable of making
1836                 backups only at this point
1837 2007/01/11
1838         - added doc/ReleaseChecklist.txt
1839         - added version API, returning version number and string
1840         - added Troy Engel to AUTHORS
1841         - added special case to bcharge.cc for the Blackberry Pearl,
1842                 which doesn't reset itself after the charge handshake
1843                 Thanks to Troy Engel for testing.
1844 2007/01/05
1845         - added pkg-config support for the library (libbarry-0.pc.in)
1846         - fixed compile error on g++ 3.3 systems (missing stdint.h
1847                 in probe.h)
1848         - fixed protocol hang at end of Controller operation... in
1849                 controller destructor, it was deleting the USB interface
1850                 before closing the socket at the BlackBerry level, thereby
1851                 leaving the device in Desktop mode
1852 2007/01/04
1853         - support the newer udev packages on Ubuntu, which need slightly
1854                 different rules
1855         - modified bcharge.cc to search for Pearl devices too.
1856                 USB product ID 6
1857         - added Pearl product ID to probe code, but likely not functional
1858                 yet until we find someone able to get a USB capture for us
1859 2006/12/29
1860         - version bump in configure.ac and src/Makefile.am
1862 Release: version 0.4 - 2006/12/29
1863 ------------------------------------------------------------------------------
1864 2006/12/29
1865         - added bcharge.cc to the tools/ directory (whoohoo!)
1866         - added initial release version of rpm/barry.spec (aka bcharge.spec)
1867                 This begins the barry binary release, currently only
1868                 including the bcharge utility, but possibly more in
1869                 the future.  Future binary packages will likely include
1870                 libbarry, libbarry-devel, etc, which barry will then
1871                 depend on.
1872         - added udev rule script for BlackBerry devices
1873         - added man/ directory and bcharge.1 manpage
1874         - added debian/ directory for building deb packages, with initial
1875                 package scripts
1876         - added rpm/make-rpm-tarball.sh for building RPMs
1877         - split out technical docs into separate libbarry.docs file for
1878                 a future Debian install
1879         - added more cleaning to buildgen.sh
1880         - added new udev rule file for Debian stable
1881         - hardcoded g++ to 3.3 in debian/rules as I have multiple versions
1882                 on my system and need to compile releases with stable
1883 2006/12/21
1884         - ported Barry to use the stable branch of libusb
1885                 NOTE: no longer depends on the devel libusb tarball!
1886                         Just use your distro's libusb packages.
1887         - fixed more endian issues
1888         - minor update to TODO
1889 2006/12/15
1890         - moved Exceptions, Hacking, and VersionNotes to doc/
1891         - added doc/USB-capture.txt
1892 2006/12/08
1893         - added Controller::AddRecord() and template helper
1894         - added beginning version of generic RecordFetch<> template
1895         - set default of Barry::Init() to false (no data dump mode)
1896         - added examples/ directory, with first addcontact.cc example
1897 2006/12/07
1898         - added autoconf support based on Peter McAlpine's patch
1899         - renamed Makefiles to Makefile.orig and added script to turn
1900                 on old build system if wanted
1901         - fixed boost-specific error path in btool
1902         - moved platform specific code out of time.h and into time.cc
1903         - moved btool.cc, translate.cc, and upldif.cc out of src/ and
1904                 into their own tools/ subdirectory
1905         - added NEWS file to make autotools happy
1906         - added a "clean" option to the buildgen.sh script... maintainer's
1907                 use only
1908         - reworked autoconf and automake files, to support
1909                 barry as a library, to move the programs into their
1910                 own tools directory, and support a proper installation
1911         - fixed headers in parser.h, btool.cc, and upldif.cc to work
1912                 properly when installed standalone
1913         - added tools/Makefile.plain for testing compiling against
1914                 installed barry library
1915         - added commentary on version number system
1916         - removed Makefile.conf and Makefile.orig, as new autoconf
1917                 system supercedes it
1918         - added support for boost serialization library in autoconf build
1919         - added library version number to autoconf build
1920         - changed boost flag to __BARRY_BOOST_MODE__ to avoid collisions
1921         - removed debug.h dependency from btool.cc
1922         - removed libusb check in favour of specific --with-libusb
1923                 option... may need to revisit this later
1924         - quick installation update in README
1925 2006/12/01
1926         - fixed some missed endian conversions in record.cc and added
1927                 some size checks
1928         - fixed endian issues in time.h
1929         - added 2 more functions to the time zone API, and adjusted
1930                 the time zone table for better defaults in North America
1931         - added btool and upldif to the make install sequence
1932         - added support for Calendar recurrence data
1933         - small doc/TimeZones.txt update
1934 2006/11/24
1935         - added BlackBerry time zone code list, reverse engineered from a 7750
1936         - added GetTimeZone() to convert device time zone codes to useful data
1938 Release: version 0.0.3 - 2006/11/24
1939 ------------------------------------------------------------------------------
1940 2006/11/23
1941         - added return code check to Controller::SaveDatabase()
1942         - fixed Data() class constructor, so it doesn't auto-convert
1943                 from any int
1944         - fixed size checking bug in Packet::ReturnCode() that caused
1945                 uploading to device to fail
1946 2006/11/10
1947         - added Exceptions doc file, documenting the C++ exceptions used,
1948                 and their hierarchy
1949         - fixed small bug in 'make install' which didn't build first
1950         - minor documentation and cleanup in upldif.cc
1951         - added utility functions to the RecordStateTable class,
1952                 GetIndex() and MakeNewRecordId()
1953         - changed btool so that the -d command modifiers can be
1954                 specified multiple times to work with multiple records
1955                 at once
1956         - added Calendar sync code to the opensync module (not complete)
1957         - cleaned up exception handling in the opensync module, making
1958                 more use of the base exception to make sure no
1959                 exceptions leak into the C library code
1961 Release: version 0.0.2 - 2006/10/12
1962 ------------------------------------------------------------------------------
1963 2006/10/12
1964         - fixed casting error in opensync module
1965         - minor updates to documentation to prepare for release
1966 2006/09/29
1967         - added stdint.h to parser.h for uint32_t.  Thanks Ron Gage for
1968                 the bug report
1969 2006/09/08
1970         - large refactoring of the packet parsing and building code,
1971                 splitting the code into 3 groups:
1972                 - record: handles record specific parsing and building...
1973                         this is mostly subfields with CommonField structs
1974                         as their headers, but sometimes has a specific
1975                         header of its own, in the case of email
1976                         Note: email's header is as yet undecoded.
1977                         Record does not know the details of the packet
1978                         formats, only the formats of its own record data.
1979                 - packet: handles building of complete command packets
1980                         and handles parsing of commonly used header values,
1981                         providing an API for it... packet does not know
1982                         the record format details, but does know the
1983                         details of each Database Operation (protocol.h)
1984                         packet format.
1985                         So far, it seems that there is a real separation
1986                         of operation formats and record formats, with the
1987                         record formats being the same even with different
1988                         database operation codes (GET_RECORDS /
1989                         OLD_GET_RECORDS), which was not confirmed before.
1990                         See the header size of the email record after
1991                         refactoring.
1992                 - controller: handles device state, and the management of
1993                         sockets, commands, and checking for response values.
1994                         The Controller object does not know the format
1995                         of either the record or the packet it is sending,
1996                         but does know the protocol handshake logic used
1997                         to talk to the device.
1998         - implemented SetRecord (SET_RECORD_BY_INDEX)... syncing, here
1999                 we come!
2000         - spelling correction in opensync-plugin/AUTHORS
2001 2006/09/01
2002         - added sample hotplug scripts
2003         - added .cvsignore files for doxygen and opensync directories
2004         - added src/endian.h... still need to add configure support to
2005                 handle non-little-endian machines
2006         - added exception handler in opensync plugin commit_change()
2007         - removed the device reset code in probe.cc, as resetting a device
2008                 can renumber the devices in /proc on kernel 2.4.x,
2009                 and cause a failure to reach the device...
2010                 FIXME - this should be changed someday to reset if probing
2011                 fails, and restart the probe on reset, as sometimes
2012                 the blackberry devices respond differently when not reset
2013                 Ideally, the probe protocol should be properly reverse
2014                 engineered.
2015         - added support for retrieving record state table, which is needed
2016                 for smarter syncing
2017         - added support for retrieving, deleting, and clearing the dirty
2018                 flags of individual blackberry device records
2019         - added endian macros throughout the code
2020 2006/07/13
2021         - added opensync-plugin to root Makefile's clean
2022         - updated time conversion calls to match opensync's latest SVN
2023         - added opensync_change_set_changetype() (only add for now,
2024                 for development)
2025         - removed slow sync functions for now
2026 2006/07/07
2027         - added quick "install" makefile target, to src/install by default
2028         - added static library target... this is temporary until autoconf
2029                 stuff is added properly... needed for the opensync plugin
2030         - documented in comments that Barry::BError is intended to be
2031                 the base classes for all exceptions
2032         - added first round of implementation of an opensync plugin, based
2033                 on the example plugin code from the opensync sources
2034 2006/06/22
2035         - added to Contact record class:
2036                 - Clear()
2037                 - ReadLdif() to load and parse LDAP data
2038         - added fragmented send support to Socket class
2039         - added Probe::FindActive() to make client programs more streamlined
2040         - fixed hex/decimal printing of record counts in btool
2041         - added upldif.cc, a utility to take ldapsearch output on stdin
2042                 and upload it to a blackberry
2043         - updated src/.cvsignore
2044 2006/06/16
2045         - added parsing of service book fields:
2046                 - old and new name
2047                 - old and new unique ID (UID)
2048                 - content ID (CID)
2049                 - old and new description
2050                 - DSID
2051                 - bes domain / domain
2052         - date change in legal.txt
2053         - added initial parsing of ServiceBook field 0x09, and calling it
2054                 ServiceBookConfig for now, for lack of a better name
2055         - added parsing for ServiceBook field 0x02 on 72xx Blackberries...
2056                 seems to be a name or description, but doesn't appear
2057                 in the device's own GUI... called "Hidden Name" for now
2058 2006/06/09
2059         - added ServiceBook record class and parser code, based on some
2060                 of Ron Gage's reverse engineering... code is by Chris Frey
2061         - added AUTHORS file
2062         - fixed the libusb set_configuration/claim_interface order
2063                 bug in controller.{h,cc}... already fixed in probe,
2064                 but not controller.  Thanks Ron Gage for finding this.
2065 2006/05/25
2066         - renamed Changelog to ChangeLog in preparation for autoconf
2067         - renamed Todo to TODO in preparation for autoconf
2068 2006/05/18
2069         - make clean cleans up tests properly now
2070 2006/03/31
2071         - turned source code browsing on in Doxyfile
2072         - added LoadDatabaseByName() and LoadDatabaseByType() template members
2073                 to the Controller class
2074                 - new file: controllertmpl.h
2075         - documentation fixes in builder.h
2076         - added static GetDBName() functions to all record classes, in
2077                 support of the template Controller functions
2078         - fleshed out DatabaseDatabase::GetDBNumber() and GetDBName(),
2079                 returning errors properly
2080         - documented sample btool.cc code better, and added example
2081                 of Controller template member usage
2082 2006/03/29
2083         - copyright dates updated for 2006
2084 2006/01/05
2085         - backed out update to latest libusb DEVEL tree, since it is buggy.
2086                 Stick with libusb 2005/11/26
2087 2005/12/30
2088         - added clean target to convenience Makefile
2089         - added Boost to list of dependencies in README
2090         - fixed minor compile warnings in base64.cc
2091         - fixed new USB discovery code, and changed endpoint usage to use
2092                 it, instead of the READ_ENDPOINT and WRITE_ENDPOINT
2093                 constants... constants are now removed
2094                 common.h, controller.cc, probe.cc, probe.h, usbwrap.cc
2095         - added ClearHalt() to Usb::Device (usbwrap.cc)
2096         - updated usbwrap.h to match latest libusb CVS devel tree
2097         - updated README to refer to 2005/12/30 libusb CVS devel tree
2098         - added roadmap to Todo list
2099 2005/12/29
2100         - added convenience Makefile in root directory
2101         - added Hacking document
2102         - minor touchups to README
2103         - added caution warning to README, since this release will support
2104                 delete / overwrite / upload functionality
2105         - minor compile order change in Makefile (speed reasons)
2106         - added dynamic endpoint discovery to probe.cc
2107         - changed claim_interface/set_configuration() function call order in
2108                 probe.cc based on feedback on the libusb mailing list
2109         - added USB discovery code to usbwrap.{h,cc}
2110 2005/12/23
2111         - fixed packing bug in new upload header struct
2112         - renamed CommonField union from data to u to be consistent
2113         - added return_code field to DBAccess struct, for error checking
2114         - added response checking during upload: if response is non-zero
2115                 throw exception in controller.cc
2116         - added sorting operators to record parser classes... when writing
2117                 contact data to the device, it may be important to write
2118                 group link items last, since they reference other contacts...
2119                 This needs to be tested, and if not required, removed.
2120         - added GROUP_FLAG field code to Contact parser class
2121         - fixed offset bug in Contact and Calendar Build() functions
2122         - fixed name bug in Contact::Build(), now output only with data
2123         - added appointment type flag support to Calendar record parser
2124                 class, and "all day event" flag support
2125 2005/12/22
2126         - added autoconf to Todo list
2127         - refactored the protocol structures so that record structs can
2128                 be reused for upload and download
2129         - with new protostructs, more header control is handled by
2130                 controller.cc instead of record.cc parsers and builders
2131         - parser code now accepts an offset, to govern start of record data
2132         - changed Data sizes from int to size_t and removed casts
2133         - removed unneeded Parser::GetHeaderSize() (new protostructs make
2134                 this obsolete)
2135         - added Calendar::Build() for calendar uploads
2136 2005/12/10
2137         - added s11n-boost.h serialization templates for boost::serialization
2138         - added boost::serialization to build
2139         - minor change in usbwrap.cc to display error codes in decimal
2140         - added SizePacket special case code to Socket::Send()... this is
2141                 required when uploaded packet size is a multiple of 0x40,
2142                 a special 3 byte size packet is sent
2143         - moved some record class variables to public: so they can be
2144                 properly serialized
2145         - fixed variable name but in RecordBuilder template
2146         - added -f switch to btool, for saving and loading of record data
2147         - added -s switch to btool, for uploading saved data back to handheld
2148         - added Controller::SaveDatabase()
2149 2005/12/08
2150         - fixed potential casting / pointer bug in controller.cc
2151         - added builder.h, to support uploading
2152         - minor comment fixes in parser.h
2153         - added preliminary Contact protocol record building support
2154         - fixed field order bug in ContactRecord protocol struct
2155         - Contact record.h class now saves unknown Group Link field,
2156                 for later saving
2157 2005/12/07
2158         - added -fno-strict-aliasing to compiler flags so gcc-4.0.x won't
2159                 optimize away protocol struct casts
2160                 see: 
2161                 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25235
2162                 http://mail-index.netbsd.org/tech-kern/2003/08/11/0001.html
2163                 http://groups.google.ca/group/comp.lang.c++.moderated/ \
2164                         browse_thread/thread/e7bf096832526f8e/5714701b \
2165                         02a2a3cc?hl=en#5714701b02a2a3cc
2166         - changed headers so that any low level protocol-specific sizes and
2167                 structs are completely hidden in the library...
2168                 this adds library-only header: protostructs.h
2170 Release: version 0.0.1 - 2005/11/25
2171 ------------------------------------------------------------------------------
2172 2005/11/25
2173         - added barry.h for documentation purposes and application usage
2174         - updated README for release
2175         - renamed SBError exception class to BError
2176         - updated Doxyfile to version 1.4.5
2177         - added more doxygen comments
2178 2005/11/24
2179         - added conversion routines (and tests) between time_t and min1900_t
2180         - added -v option to btool to dynamically control protocol dumping
2181         - removed duplicated database database table display in controller.cc
2182         - minor spelling corrections
2183         - added copyright to usbwrap.{h,cc} as per earlier meeting
2184         - added support for Old protocol Calendar entries
2185 2005/11/20
2186         - added legal.txt, to save typing when adding new source files
2187         - ignore test-base64 file (cvsignore)
2188         - added contact-to-ldif generation, and updated supporting code
2189         - added argument to btool to support contact-to-ldif operation
2190         - added Contact::GetPostalAddress()
2191         - added README documentation in preparation for future release
2192 2005/11/19
2193         - added parser.{h,cc} virtual wrapper to generalize LoadDatabase()
2194         - added code to socket.cc's Packet() command to re-receive on
2195                 reception of empty packets... this seems to be a signal
2196                 from the device that it needs more time for long transfers
2197                 Current limit: 10 blank packets before exception is thrown
2198                 Observed maximum blank count: 1
2199         - added MessageRecord and OldMessageRecord to protocol.h
2200         - changed common record field structs to one CommonField struct
2201         - increased default USB timeout to 10 seconds (some loaded devices
2202                 seem to need more time...)
2203         - reorganized record.{h,cc} to try to reduce the code duplication
2204         - record.h classes now "know" the sizes of their corresponding
2205                 protocol structs... this may cause trouble down the line
2206                 with Python, if used(?)
2207         - added Message class for Email records
2208         - removed the "Get*" database functions and replaced with
2209                 general LoadDatabase() call, which loads any database
2210                 available, and parses it with a Parser object
2211         - added GetDBID() for searching for database numbers via name
2212         - added test code to retrieve and display all email
2213         - cleaned up comments
2214         - renamed blackberry.{h,cc} to controller.{h,cc}
2215         - renamed bbtool.cc to btool.cc
2216         - added Makefile.conf
2217         - added copyright notices to source files
2218         - added COPYING file with GPL
2219         - put parser in Barry namespace, and added auto_ptr-like mode for
2220                 store object pointers
2221         - added doxygen docs
2222         - added header comments to convo.awk script
2223         - removed Test() function in Controller object, and made class
2224                 better suited to its general API purpose
2225         - changed OpenMode() so it loads command table and DBDB... it is now
2226                 a public API function
2227         - moved Controller test code to btool.cc and made tool more
2228                 generically useful... can now download any DB by name on
2229                 the command line
2230         - added mode checks to Controller
2231         - added -t and -d command line options to btool
2232         - added base64 routines from John Walker / Fourmilab and Citadel/UX
2233         - converted base64 routines into an API, instead of hardcoded
2234                 file based
2235 2005/11/18
2236         - changed project name to Barry, including namespaces
2237         - renamed sbcommon.* to common.*
2238         - increased USB default timeout to 2 seconds
2239         - fixed formatting bug in Data operator<< output
2240         - cleaned up the protocol packet structs, getting rid of the
2241                 confusing param/simple split... param is now the tableCmd
2242                 from the Command Table
2243         - moved protocol structs from record.h to protocol.h
2244         - added support for older version of the USB protocol, which matches
2245                 the Cassis spec more closely
2246         - fixed the hardcoded offsets in blackberry.cc's protocol parsing
2247         - fixed Socket::Close() so on error, socket flags are reset.
2248                 This stops Close() from being called twice on exception
2249                 destructors
2250 2005/11/17
2251         - added Doxyfile to the project
2252         - tuned Makefile
2253         - added mode selection support to Blackberry class (RIM Desktop,
2254                 RIM Bypass, and RIM_JavaLoader)
2255                 Mode selection governs which socket is used in subsequent
2256                 data transfers.
2257         - added Command Table parsing and protocol support
2258                 Blackberry class, and CommandTable record class
2259         - added Database database parsing and protocol support
2260                 Blackberry class and DatabaseDatabase record class
2261         - added Address book retrieval support - dumps data to stdout for now
2262         - fixed bug in CopyOnWrite mode in Data class, where could allocate
2263                 less buffer than data copied
2264         - added "easy exception" debug output macro
2265         - fixed minor spelling error in protocol.cc
2266         - fixed ModeSelectCommand protocol structure - it is not a parameter
2267                 command, but uses the unknown slots for socket and flag
2268                 data
2269         - removed hardcoded socket numbers from protocol.h
2270         - fixed bug in socket.cc:Open() where packet size was not properly
2271                 saved
2272         - implemented socket::Close()
2273         - fixed sequence number checks, so it is reset properly on socket 0
2274         - added Socket::NextRecord() for multiple record data transfers
2275         - fixed input handling bug in translate.cc
2276 2005/11/11
2277         - added .cvsignore files to project
2278         - added README notes to document the source architecture
2279         - added dbsetup data script, which shows how to get into database
2280                 mode, using the RIM Desktop mode, and open a socket
2281         - added blackberry.{h,cc} class
2282         - added command line parameters to bbtool.cc
2283                 -l = list only
2284                 -p = specify pin of blackberry device
2285         - added blackberry test code in bbtool.cc - debugging the initial
2286                 opening protocol: sockets, modes, etc... see dbsetup for
2287                 results
2288         - added copy-on-write functionality to Data class, so it can be used
2289                 with plain data buffers with little performance impact
2290         - added eout() and ddout() debugging - to separate:
2291                 - regular debug output
2292                 - exception debug output (should probably be logged to
2293                         syslog someday, and never turned off)
2294                 - raw data dump output
2295         - changed errno SBError exception handler to try to decode the error
2296                 numbers into english (limited success)
2297         - fixed probe and socket USB Bulk message handling, so they don't
2298                 use PollCompletions(), but use IO::Wait() (libusb_io_wait())
2299         - added common packet size checker in protocol.cc
2300         - fixed unpacked protocol packet structs... using gcc's
2301                 __attribute__ ((packed)) ... see protocol.h
2302         - added ModeSelectCommand structure (protocol.h)
2303         - finished Socket::Open() call  (Close() not yet implemented)
2304         - moved Socket::Send/Receive() out of private, as they can be used
2305                 for socket 0 operations.
2306         - cleaned up pointer management with macros:
2307                 MAKE_PACKET()
2308                 COMMAND()
2309                 IS_COMMAND()
2310         - added IO::Wait() and IO::Cancel() to correspond with libusb API
2311         - added datadumping in usbwrap for easy protocol capture
2312         - added preliminary record.{h,cc} classes
2313         - added Contact record parsing, and test code
2314 2005/10/20
2315         - syncberry tree started