]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.39
- Work on getting wx-console building on MinGW. wxWidgets now builds
[bacula/bacula] / bacula / kes-1.39
1               Technical notes on version 1.39  
2                         Kern Sibbald
3
4 General:
5 01Ma06
6 - Work on getting wx-console building on MinGW. wxWidgets now builds
7   started adding Makefile ...
8 - Moved MinGW library objects to src/win32/lib to reduce clutter.
9 30Apr06
10 - Reloading a bad configuration file doesn't kill director any more.
11   Thanks to fix from Eric Bollengier.
12 29Apr06
13 - Fix problem of accents with new Win32 code.
14 - Integrate Howard's VSS patch. Tweak it a bit. VSS now
15   works in the MinGW build with the exception that there
16   is a problem with accented characters -- i.e. there is
17   some mapping problem with wide characters.
18 - The code no longer compiles with Microsoft VC++.
19 28Apr06
20 - Start implementing Christopher's St.Bernard code.
21 - Add Christopher's mods for opening files.
22 - Strip \r \n from Win32 error messages (Christopher)
23 - Add more info about Win32 system if unknown (Christopher)
24 - Use bstrn(cpy, cat) routines to avoid overrun in compat.cpp
25 - Fix a number of incorrect strings marked for translation, when
26   they should not be (e.g. commands).
27 - Fix StartTime bug reported for ClientRunBeforeJob and RunBeforeJob
28   Patches supplied by user in bugs #608 and #599.
29 - Use most recent of st_ctime and st_mtime in restore tree DIR
30   listing. This fixes some problems with Win32 printing incorrect
31   values.
32 - Correct the clock shift comm time calculation between the DIR
33   and the FD. It was added rather than subtracted.
34 - Strip all backslashes in filenames to be restored on Win32
35   machines -- the names should all be in Unix format, and if
36   there are any backslashes it is most likely due to an improper
37   FileSet definition, and the files will not otherwise be 
38   restorable.
39 - Remove lib/regex.c (replaced by bregex.c).
40 - Delete src/win32/License.txt
41 - Modify installer to install LICENSE
42 26Apr06
43 - Fix bug in build-win32-cross-tools script reported by Howard
44 - Implement cross compiled bconsole
45 25Apr06
46 - Fix barcode test, eliminate BOOL (doesn't exist on Linux).
47 - Write first cut of README.mingw32
48 - Add back ua_label barcode fix from Rufolf Cejka.
49 - Integrate the majority of the Mingw cross-tools submission
50   made by Howard Thomson. Everything compiles, with zlib, openssl,
51   and VSS turned off. Linking needs a pthreads library ...
52 23Apr06
53 - Add 'Dir Status' button to the gnome console.
54 - More work on migration.
55 - Restore non-compatible base64 coding to permit compatibility.
56 - Display heap stats in Storage daemon without debug level.
57 22Apr06
58 - Integrate most of the MinGW changes -- more to do.
59 21Apr06
60 - Implement using pg_config for finding PostgreSQL files.
61   Fixes bug #600. Patch supplied by user.
62 - Remove -t option from mktemp in mtx_changer.in and use
63   working directory. Fixes bug #578.
64 - Update job start time after the any run before job so that
65   files created by the script are only backed up once. Fixes
66   bug #599.
67 - Strip trailing newline only from filenames entered in
68   the restore command when reading a file. This permits
69   the user to enter filenames with trailing spaces. Fixes
70   bug #549. The user supplied a patch that I modified slightly.
71 - Use the most recent time (st_mtime, st_ctime) in the dir
72   command in restore. This gives the user a better idea of what
73   the newest file really is. This fixes bug #574. The fix
74   was suggested by the user.
75 - Implement a compatible version of base64. This permits external
76   programs to duplicate Bacula's base64 algorithm using standard
77   routines. This fixes bugs #296, and 565. Patch submitted by   
78   author of bug #565.  
79   ================= Note ========================
80   Previous Signatures stored in the database are no longer
81   compatible with this. The main downside is for Verify jobs,
82   and doing an InitCatalog run will fix the problem. Also, the
83   authentication between the deamons is changed, so all daemons
84   must be simultaneously upgraded.
85   ==============================================
86   If you don't like this fix, set:
87     const bool compatible = true;
88   to
89     const bool compatible = false;
90   in src/lib/base64.c
91 20Apr06
92 - Ensure that DB signature is never NULL.
93 - Ensure that DB table names are not translated.
94 - Fix scheduler to handle time skew (eg daylight savings).
95 - Fix scheduler to use lock_jobs() to avoid most problems
96   with reload. Window is now milliseconds.
97 19Apr06
98 - Apply patch from Christopher Hull
99   - Allow multiple connections to database with different
100     parameters.
101   - Invalidate the scheduler when doing a reload. Fixes seg
102     fault, but still 60 second window.
103   - Additional info in Reschedule message.
104   - Use set_jcr_job_status() everywhere to prevent loss of
105     cancel, error.
106   - Display peer IP in FD if error from connecting DIR.
107   - Don't increment file count for DIRBEGIN.
108   - Replace illegal characters in Win32 filename by _.
109   - Add SE_CREATE_PERMANENT_NAME privilege in Win32.
110   - Hash hard link filenames rather than linked list.
111   - Fix for security failure in chdir on Win32.
112   - Add CreateDirectoryA/W win32 API entry points.
113 - Add /silent option to Win32 FD for Install/Remove service.
114 - Always print Heap statistics in FD.
115 18Apr06
116 - Remove the -f option from the chown in Makefile.in for more
117   portability.
118 - Change setting the group in Makefile.in to use chgrp for
119   more portability.
120 - Implement a write_store and read_store to replace
121   dirstore in reserve.c
122 - Implement a Bacula read/write lock for Python rather
123   than using the Python lock to avoid recursive problems.
124 - Correct the uninstall directory names in filed/Makefile.in
125   as reported by a user.
126 17Apr06
127 - Correct some problems with database creation (new tables).
128 - Replace a bunch of old 0x%x by %p.
129 - Get first cut of Migration with Job selection working.
130 16Apr06
131 - Change store_bit() to store_bool() for the Spooling in 
132   dird_conf.c -- bug reported by Robert Nelson.
133 15Apr06
134 - Correct Makefile bug found by Dan Langille.
135 14Apr06
136 - Correct Makefile for Solaris /bin/sh
137 - Correct mtx-changer.in for Solaris /bin/sh
138 - Abort if a conf resource does not have a Name =
139 12Apr06
140 - Change the name of the regex program to bregex.
141 - Add the bwild program to the tools directory. It is similar
142   to the bregex program.
143 - Implement create bregex.h and bregex.c in src/lib from the
144   Python regexp program.  
145 - Use the new bregex.c to implement Regex expressions on Win32.
146 11Apr06
147 - More work on migration.
148 - Implement wild program in tools directory for testing
149   wild-cards. Almost identical to the regex program.
150 - Up port VSS single thread locking code.
151 - Replace N_(..) by NT_(...) to inhibit translation of
152   commands.
153 - Modify Makefile to change the permissions on Working Directory
154   to 770 if the directory is created.
155 - Do not fail the Makefile if changing the permissions or 
156   owner/group on WorkingDir fails.
157 - Remove early selection of Scratch Volumes in the recycling
158   algorithm.
159 - Correct the old recycling algorithm so that Scratch Volumes
160   are selected when looking for a Volume in the changer.
161 - Correct a typo in the Verify SQL reported by Joe Park.
162 10Apr06
163 - Remove automatic case folding on Windows FDs. You must
164   explictly use the 'Ignore Case = yes' option.
165 - Remove the code added to 1.38.6 and 1.38.7 that pulls a
166   scratch volume in an Autochanger early in the 'recycling'
167   algorithm.  
168 09Apr06
169 - Make weof() and clrerror() methods of class DEVICE.
170 08Apr06
171 - Tweak license to include Microsoft restrictions.
172 - Move mysql.reconnect to after real_connect().  Thanks to
173   Frank Sweetser for the patch.
174 - Disallow a backslash in a File = directive (Windows junk)
175   unless the string is quoted.                     
176 - Apply Eric's patch to ua_label.c so that daemon protocol
177   is not translated.
178 - Add NT_ definition for strings that should not be translated.
179 - Apply NT_() to ua_label.c
180
181 - Remove timed wait for VSS on Win2K3 as it is not yet
182   implemented.
183 - Correct bacula.in script to reference bacula-ctl-xx in the
184   sysconfig directory rather than the bin directory.
185 26Mar06
186 - Fix a long standing bug in the bacula start/stop scripts.
187 - Attempt to add the new bacula-ctl-* files to the rpm.
188 - Switch to using typeof() for list traversing to avoid
189   as many FC5 g++ compiler warnings as possible.
190 25Mar06
191 - Split the bacula start/start script into four files:
192    bacula         -- starts and stops calling other scripts
193    bacula-ctl-dir -- starts/stops the director
194    bacula-ctl-fd  -- starts/stops the File daemon
195    bacula-ctl-sd  -- starts/stops the Storage daemon
196 24Mar06
197 - Create datestyle fix for PostgreSQL. Fixes bug #574.
198 - Correct editing of JobId from int to int64 in fd_cmds.c
199 - Eliminate FileSet name race with bash_spaces() and multiple
200   threads by bashing in a local.
201 - Fix error return from 'use storage' to print a correct error
202   message rather than nothing.
203 - Correct false re-read last block error message when two jobs 
204   are simultaneously writing at the end of a tape.
205 - Simplify exit conditions in the reserve.c code to avoid  
206   possible non-release of reservation_lock().
207 - Suffle lock order in reserve to avoid deadlock between
208   reservation lock and device mutex.
209 21Mar06
210 - Initialize jcr mutex before first use. Thanks to Thorsten for
211   tracking this down for me !!!! as it broke the Win32 build.
212 20Mar06
213 - Integrate addition of line count limitation to bsmtp -l from
214   Sebastian Stark <stark at tuebingen.mpg.de>
215 17Mar06
216 - Implement regex test program in tools directory.
217 - Attempt to fix time problem with bsmtp with foreign langs.
218 - Add strip_trailing_newline() submitted by user.
219 - Implement regex matching in migrate.c
220 16Mar06
221 - Fix bug #537 to allow arbitrary time to mount a volume for
222   restore, if polling is turned on.     
223 - If dir_user or dir-group is specified in ./configure apply it to
224   the working-dir. Fixes bug #533.
225 - If rescheduling a job cancel the previous incarnation with the SD.
226   Fixes bugs #566 and 557.
227 - Fix bug #567 do_message() definition type conflict.
228
229 14Mar06
230 - Add more jcr methods and make mutex and use_count private.
231 - Create lock/unlock methods for jcr.
232 - Fix PostgreSQL bug doing sql_data_seeek() by explicitly reading
233   records to get to seek position.
234 - Integrate patch from bug #561 to correct conio.c signal definitions.
235 - Fix Rescheduling failed Jobs. Ensure that SD message thread 
236   terminates correctly by doing pthread_kill(). Do not destroy
237   SD cond wait variable between executions of the job. Use local
238   mutex for cond variable to avoid blocking jcr chain. Fix poor 
239   use of jcr use count in jobq.c for restarted jobs.
240 - Fix obsolete usage of foreach_dlist() to use foreach_jcr() in
241   lib/jcr.c -- prevents locking the jcr chaing.
242 - Apply patch from bug #564, which corrects listing volumes with
243   multiple autochangers. Apply same fix to next volume list.
244 - Fix bug #562 where restore bootstrap file is not unique.
245 - More details in implementing David's migration syntax proposal.
246 - Save and restore dcr when swapping drives so that if we have
247   a write dcr it is not lost.
248 - Use new routine lock_reservations() to lock the reservations
249   system, and call it while looking for a volume in askdir.c.
250   This could possibly fix bug #543.
251 - Stop SD command loop if job is canceled.
252
253 08Mar06
254 - Remove old code from findlib/create_file.c
255 - Rename mac.c migrate.c
256 - Add user friendly display of VolBytes in job report.
257 - Rename target... to previous... to make it a bit easier to
258   understand.
259 - Add selection type and selection pattern to Migration (idea
260   given by David Boyes). 
261
262 04Mar06
263 - The po files should now be current.
264 - Fix new sql_use_result() code to properly release the
265   buffers in all cases.
266 - Use the keyword ujobid to mean the unique job id; job or jobname
267   to mean the Job name given on the Name directive, and jobid to
268   be the numeric (non-unique) job id.
269 - Allow listing by any of the above.
270 - Add the user friendly job report code for reporting job elapsed time
271   and rates with suffexes from John Kodis <kodis at comcast.net>.
272 - Add Priority and JobLevel as Python settable items.
273 - Use TEMPORARY table creation where the table is created by
274   Bacula.
275 - Add new code submitted by Eric for waiting on specific jobid.
276 - Add ACL checking for the dot commands.
277 - Fix restore of writable FIFOs.
278 - Fix a bug in bpipe where the string was freed too early.
279 27Feb06
280 - Modify the Python class examples to inherit object -- new way
281   of defining classes. Patch from Felix Schwarz.
282 - Implement jobuid to replace old usage of job in keywords as
283   suggested by Eric Bollengier.
284 - Apply patch for enhancing wait from Eric Bollengier. On can now:
285    wait  (wait for all jobs to stop)
286    wait jobid=nn
287    wait jobuid=unique id
288    wait job=job-name
289 - Implement write variables for Python to set Priority (anytime), and
290   Job Level, only during JobInit event.
291 26Feb06
292 - Fix the block listing bug pointed out by Arno.
293 - Update the po files at Eric's request.
294 24Feb06
295 - Fix Maximum Changer Wait, Maximum Open Wait, Maximum Rewind Wait to 
296   accept time qualifiers.
297 - Make catalog respect ACL.
298 - Add recycle count to Media record.
299
300 Changes to 1.39.6-beta1 24Feb04
301 23Feb06
302 - Add Rudolf Cejka's new rc-chio-changer.
303 - Implement pulling Volume from Scratch Pool if the
304   Volume is in the autochanger.
305 - Implement additional command arguments for update Volume.
306
307 Changes to 1.39.5 
308 22Feb06
309 - Back port changes to 1.38.5
310 - Fix recycle SQL for StorageId.
311 - Fix misplaced quote in mtx-changer script.
312 20Feb06
313 - Note. Your database must be updated, or you must create 
314   a new database. I have not yet incremented the database level.
315 - Add Location table. 
316 - Add LocationId, DeviceId, and MediaTypeId to Media record.
317 18Feb06
318 - Implement create/get mac record in database for adding extended
319   Migration data to the job record.
320 - Add new MAC table to update/make database scripts.
321 - Return Storage name used when getting VolumeNames for a job.
322 - Change bsr file keyword Storage to Device, which is more accurate.
323 - Ensure that Mac records are pruned/purged.
324 - Tweak SD tools to deal with changing media type.
325 - Integrate more dev.c subroutines as methods (e.g. strerror, bsr, ...)
326 - Pass pointer to dcr pointer to acquire_device_for_read() so
327   that the subroutine can switch devices, and hence dcrs.
328 - Modify the multiple MediaType read code to re-use the same
329   dcr when switching devices. This makes the code much more
330   robust.
331 - Integrate patch from Karl Hakimian that reads JobIds, FileIndexes
332   from a table for restore.
333 - Add Storage name to VolParams, but it really should be Device.
334 14Feb06
335 - Add disk-changer to scripts directory + configure/Makefile
336 - Eliminate PoolId from jcr -- it is in jcr->jr.PoolId
337 - Implement store_bit scanner to replace store_yesno.  Mostly done.
338 - Implement new store_bool that stores in a bool. 
339 - Add true/false to yes/no conf directives.
340 - Make first cut at changing appropriate store_yesno to store_bool.
341 - Complete implementation of Pool storage devices.
342 - Move starting clones to job.c
343 - Move create_restore_bootstrap_file() to job.c
344 - Make copy_storage() more general to be able to handle
345   Pool storage.
346 - Cleanup a lot of migration code for manual running, including
347   using Pool storage.
348 - Move getting a scratch Volume into a subroutine.
349 - Make all places a Volume that is added to a pool to 
350   respect max vols.
351 - Fix bug in autochanger recycle code (improper edit 64 bit).
352 - Fix segfault in restore command when no value specified.
353 - Start adding code to handle multiple MediaTypes in restore.
354 - Eliminate race condition in getting Volume name for
355   two drive autochanger.
356 - More debug code in autochanger.
357 - Add storage keyword to bootstrap file, add parsing.
358 - Move slot in bsr file into Volume record as there will be
359   a different slot for each Volume.
360 - Create reserve.h
361 07Feb06
362 - Implement Pool storage overrides.
363 06Feb06
364 - Implement first cut of Migration.
365 - Implement mysql_use_result() from patch by Karl Hakimian.
366   This reduces significantly the memory consumption during
367   the restore tree building, and hence runs faster too.
368 - Implement StorageId patch supplied by user (reggie) in bug
369   #536.  This should permit Bacula to work correctly with two
370   autochangers.
371 - Implement Job listing variations suggested by a user.
372 - Move updating bootstrap code in backup.c to subroutine
373   update_bootstrap_file().
374 - Add new job status elapsed time and bytes written user
375   friendly job report output patch sent by John Kodis
376   <kodis at comcast.ne>.
377 - Implement a storage list in Pools.
378 - Separate out setup_job() code from run_job().
379 - Get migration working -- lots of changes in mac.c in both
380   DIR and SD.
381 - Apply patch from user (Eric Bollinger I think) that fixes a  
382   DIR crash when no arguments are supplied to a dot command.
383 - Fix typo (strcpy->strcmp) in ua_prune.c as reported by Martin.
384 - Fix command arg name->volume in label command of gnome-console.
385 - Fix SD acquire.c to release correct DCR by explicitly testing
386   on the dcr address rather than trying to devine if it is a read
387   or write dcr.  This failed in error conditions when the device was
388   not fully setup.
389  
390 30Jan06
391 - Apply user supplied patch for more readable rate output
392   in job report.
393 - Continue implementing migration.
394 - Implement support for removable filesystems in SD.
395 - Ensure that btraceback scripts can be read by anyone.
396 - Replace dvd-freespace and dvd-writepart by dvd-handler.
397 - Correct bug where canceling restore before the FD contacts
398   the SD causes the drive to be left in read mode.
399 - Move ofline_or_rewind into DEVICE::close().
400 - Eliminate close_device.
401 - Convert several dev subroutines to methods (e.g. bsf,
402   eod, ...)
403 - Eliminate force_close_device().
404 - Implement Device Type directive in Device resource that
405   can have values File, Tape, Fifo, DVD, or Prog.
406 - Add has_cap() method to Device.
407 Changes to 1.39.4
408 17Jan06
409 - Add patch from bug #527 to allow RedHat user to specify
410   options/user/group for starting each daemon in      
411   /etc/sysconf/bacula.
412 16Jan06
413 - Add two new queries to query.sql provided by Arno. One
414   list volumes known to the Storage device, and the other
415   lists volumes possibly needing replacement (error, ...).
416 15Jan06
417 - Add periodic (every 24 hours) garbage collection of memory 
418   pool by releasing free buffers.
419 14Jan06
420 - Correct bug counting sized (for display only) in smartall.c
421 - Print FD mempool stats if debug > 0 rather than 5.
422 12Jan06
423 - Make db_lock() mutex error fail the job rather than abort
424   Bacula.  Canceling the job caused the mutex to fail.
425 - Correct bug in alist.c that re-allocated the list if the
426   number of items goes to zero.
427 - Move the reservation system thread locking to the top level
428   so that one job at a time tries all possible drives before
429   waiting.
430 - Implement a reservation 'fail' message queue that is built         
431   and destroyed on each pass through the reservation system.
432   These messages are displayed in a 'Jobs waiting to reserve
433   a drive' list during a 'status storage='.  Note, multiple
434   messages will generally print for each JobId because they
435   represent the different problems with either the same drive
436   or different drives.  If this output proves too confusing
437   of voluminous, I will display it only when debug level 1
438   or greater is enabled in the SD.
439 11Jan06
440 - Add enable/disable job=<job-name>.  This command prevents
441   the specified job from being scheduled. Even when disabled,
442   the job can be manually started from the console.
443 - During 'update slots' clear all InChanger flags where the
444   StorageId is zero (old Media records).
445
446 Beta release 1.38.4:
447 09Jan06
448 - Fix autochanger code to strip leading spaces from returned
449   slots number. Remove bc from chio-changer.
450 - Back port a bit of 1.39 crypto code to reduce diffs.
451 - Fix first call to autochanger that missed close()ing the
452   drive. Put close() just before each run_program().  Fixes
453   Arno's changer bug.
454 07Jan06
455 - Add PoolId to Job record when updating it at job start time.
456 06Jan06
457 - Pull in more code from 1.39 so that there are fewer file
458   differences (the new ua_dotcmds.c, base64.h, crypto.h
459   hmac.c jcr.c (dird and lib) lib.h md5.h parse_conf.c 
460   util.c. Aside from ua_dotcmds.c these are mostly crypto
461   upgrades.
462 - Implement new method of walking the jcr chain. The
463   incr/dec of the use_count is done within the walking
464   routines.  This should prevent a jcr from being freed
465   from under the walk routines.
466
467
468 Changes to 1.39.3:
469 04Jan06
470 - Start implementing Verify list output.
471 - Move the suitable_drive flag to a better place to prevent
472   premature termination of the reservation if all drives
473   are busy -- should fix Arno's diff/inc pool failures.
474 26Dec05
475 - Add mutex to single thread VSS code in Win32.
476 22Dec05
477 - Simplify code in askdir.c that waits for creating an appendable
478   volume so that it can handle multiple returns from the wait
479   code.
480 - Modify the wait code to permit multiple returns.
481 - Return a zero when "autochanger drives" is called and
482   it is not an autochanger.
483 - Make rewind_dev() a method taking a DCR as an argument.
484   This permits closing and reopening the drive if the
485   rewind fails as happens if the drive was loaded while the
486   file descriptor was open. This refreshes the file descriptor.
487 - Remove the ST_OPENED flag and always rely on fd < 0 for knowing
488   if the device is open or not.  This should eliminate
489   Arnos problem.
490 - Return error if reserve cannot find at least one suitable device.
491 - Make wait_for_sysop() return correct state information.
492 - Fix Win32 state file problem. write was not using compat
493   code. This should fix bug #500.
494 21Dec05
495 - Modify gui on command to set only GUI mode and not batch.
496 - Modify .messages command to always print messages regardless
497   of the mode.
498 - If GUI mode is on, suppress automatic printing of 
499   You have messages. 
500 - Delete old bnet packet code.
501 - Ignore new BNET_START_SELECT and BNET_END_SELECT signals in
502   wx-console.
503 - Modify restore command in wx-console to set gui on and to use
504   only .messages instead of messages.  Hopefully this fixes bug
505   #514.
506 - Fix seg fault in exit of acquire when canceling a job --
507   reported by Wolfgang Denk
508 - Pull in latest reservation system changes from 1.38
509 - Make .messages command always print messages regardless
510   of the automessages flag.
511 17Dec05
512 - Fix seg fault if user labels a drive directory bug #513
513 - Remove quotes around Version as it breaks things.
514 16Dec05
515 - Merge in Aleksandar Milivojevic's mods to the spec file.
516 - Apply sparse code fix for raw drives and fifos. Bug 506
517 - Thorsten fixed Unicode cd problem with wx-console bug 505.
518 14Dec05
519 - Correct reservation system to do a last ditch try
520   for any mounted volume, then anyone anywhere.
521 - Add quotes around table Version because of
522   error in MySQL 4.1.15 -- bug report submitted.
523 - Correct some minor problems with btape in the fill
524   command.
525 - Updates to ssh-tunnel from Joshua Kugler.
526 - Added a report.pl program from Jonas Bjorklund.            
527 - Simplify the O_NONBLOCK open() code for tape drives,
528   and always open nonblocking.
529 - Do not wait for open() if EIO returned (shouldn't happen).
530 - Eliminate 3 argument to tape open().
531 - Correct the slot # edited in the 3995 Bad autochanger unload
532   message.
533 - With -S on bscan (show progress) do not divide by zero.
534 13Dec05
535 - Make cancel pthread_cond_signal() pthread_cond_broadcast().
536 - When dcr is freed, also broadcast dev->wait_next_vol signal.
537 - Remove unused code in wait_for_device.  
538 - Make wait_for_device() always return after 60 seconds of wait.
539
540 Changes to 1.39.2:
541 13Dec05
542 - Add stubs for non-crypto build.
543 12Dec05
544 - Use localhost if no network configured
545 11Dec05
546 - Eliminated duplicate MaxVolBytes in cat update -- bug 509.
547 - Remove debug print.
548 - Add bail_out in error during state file reading.
549 10Dec05
550 - Merge changes made to 1.38.3 into HEAD
551 - Add stubs for pygtk-console code
552 - Create Makefile.in for pygtk-console code
553 09Dec05
554 - Merge updates into 1.38 branch
555 - Update specs to include mysql4 define.
556 - Fix when attributes are sent, must be after binit().
557 - Stop read_record() if status not ok in second loop.
558 - Return rec->FileIndex in dcr->VolLastIndex for normal
559   and partial records in read_record().  This allows bscan
560   to get FileIndex at EOT correct.
561 - Fix butil.c to correctly set dcr -- fixes seg fault in bls.
562 08Dec05
563 - Fix Win32 built to work with new crypto code.
564 - Apply patch supplied by user (slightly modified) to fix
565   correct detection of holes in block devices and FIFOs. 
566   Bug # 506.
567 - Apply patch supplied by user (slightly modified) 
568   to fix SD hang with multiple pools and bad client
569   IP. Fixes bug # 508.
570 07Dec05
571 - Add nagios plugin to the examples directory. Submitted by
572   Christian Masopust.
573 - Remove warning message about multiple saves of hardlinked files
574   from find_one.c as it can generate too many warning messages.
575 - Modify most restore error messages to be queued so that they
576   appear at the end of the job rather than mixted with the restore
577   listing where they could be "lost".
578 06Dec05
579 - Reset timeout values before select() per patch from 
580   Frank Sweetser for problems with non-blocking sockets.
581 - Unlink the state file if either reading or writing it gets
582   errors.  Hopefully this will fix Win32 exit problems.
583 - Add sanity check in append.c to ensure that dcr is not NULL.
584   This can happen if multiple drive autochanger SCSI control
585   channel and drive indicies do not correspond.
586 05Dec05
587 - Get next volume from Scratch pool before creating a volume.
588 - Set new Pool defaults in Vol when moved from Scratch Pool.
589 - Remove argument from create_bacula_database for SQLite as it
590   caused an error.
591 - Add back index code so that two drive autochangers can get
592   a second tape.
593 - Change a bunch of debug levels to aid debugging autochangers.
594 - Fix reservation so that mutexes are properly applied.
595 - Rework reservation algorithm so that two drives can be used
596   at the same time.
597 04Dec05
598 - Landon merged his data encription changes into the HEAD
599 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at 
600   If this patch is applied, the number of days can be specified with
601   "list nextvol days=xx"
602   or
603   "status dir days=xx"
604   My use case is to be able to preview the next scheduled job (and the 
605   next tape to be used) on fridays if there are no scheduled jobs during 
606   the weekend.
607 Changes to 1.39.1:
608 03Dec05
609 - Fix font code in gnome2 console user patch. Fixes bug #501.
610 - Fix malformatted bnet error message that caused seg fault
611   fixes bug 502
612 - Applied user patch to improve README.vc8 in src/win32.
613 29Nov05
614 - Add Migrate, Copy, Archive Job types (some where there)
615 - Correct some more editing of JobId's (for 64 bit compatibility).
616 - Ensure that StorageId is stored in Media record when ever possible.
617 - Add Migration Job to Job.
618 - Add Migration Time, Migration High Bytes, Migration Low Bytes
619   Next Pool to Pool resource.
620 - Add more code to mac.c (migration archive copy).
621 - Change Start Storage daemon job to require read and write storage
622   pointers.
623 - Pass read storage data to SD as well as write storage data.
624 - Remove old code from winservice.cpp
625 - Break on error in scan.
626 - Fix typo in signal.c
627 - Separate read/write DCR in SD.  Add jcr->read_dcr.
628 - Cleanup how find_device() works.
629 - Add read output to Status in SD.
630 Changes to 1.39.0:
631 23Nov05
632 - Add red-black btree routines
633 21Nov05
634 - Remove abs() in bfile.c so that it compiles on Solaris. 
635   Bug #491.
636 20Nov05
637 - Fix crash in tray-monitor when daemon disconnects. Bug #479.
638 - Fix bnet-server bug found on OpenBSD. Bug #486
639 - Fix cancel failure bug. Bug #481
640 - Fix failure when Pool name has spaces. Bug #487   
641 - Fix SD crash in autochanger code. Mutex failure. Bug #488
642 - Fix a couple of free()s in src/filed/acl.c
643 - Fix memory overrun in bfile.c in building OS X resource
644   fork filename. Bug #489 
645 - Add Pool name to SD status output.
646 14Nov05
647 - Apply SunOS patch for ACLs submitted by David Duchscher.                  
648 - Make sure to set storage before trying to set drive.
649 - Add bacula_mail_summary.sh to examples directory. It makes
650   a single email summary of any number of jobs. Submitted
651   by Adrew J. Millar.
652 - Make sure when we do a mount to unblock the device even
653   if the drive could not be opened.  
654 13Nov05
655 - Remove the USE_WIN32STREAMEXTRACTION #defines (always on)
656   and correct a few minor problems to make it build on Linux.
657 10Nov05
658 - Remove delete of CVS from all Makefiles
659 - Fix seg fault when clicking on Add button in wx-console
660   restore panel.  Bug #470.
661 - Fix copyright date and URL typo -- bug #468.
662 - Change autostart install for FreeBSD to look for rc.conf  
663   rather than rc.local as suggested fix for bug #466.
664 - Apply patch supplied by Eric Bollinger to fix PostgreSQL    
665   grant on status. Bug #465
666 - Apply patch supplied by Eric Bollinger to fix PostgreSQL
667   update script. Bug #464
668 - Tweak #ifdefing a bit in new Win32 stream code.
669 - Fix #ifdeffing for FD_NO_SEND_TEST.
670 - Add documentation of performance #defines