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