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