* Updated ChangeLog
[BackupPC.git] / ChangeLog
index 7f5534a..ab0bfbf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 # Version __VERSION__, __RELEASEDATE__
 #------------------------------------------------------------------------
 
+* Split BackupPC_Admin into a set of modules, one for each major action.
+  Each action is now a seperate module in lib/BackupPC/CGI.
+
+* Added directory history display to BackupPC_Admin, allowing the
+  user to quickly see which files changed between backups.
+
+* Swapped the Server and Hosts sections on the Nav bar.  Moved the
+  host search text box to the top of the hosts section.  This was
+  done to move the variable-length part of the Nav bar (when all
+  hosts are displayed) to the bottom.
+
+#------------------------------------------------------------------------
+# Version 2.0.0, 14 Jun 2003
+#------------------------------------------------------------------------
+
+* Minor tweaks to disable utf8 on utf8-capable machines (eg: RH8+).
+  Added "no utf8" to all programs, and added binmode() to relevant
+  file handles.
+
+#------------------------------------------------------------------------
+# Version 2.0.0beta3, 1 Jun 2003
+#------------------------------------------------------------------------
+
+* Several improvements to restore: cancel now reports the correct
+  message and cleans up correctly.
+
+* Rsync with whitespace and wildcard excludes fixed by replacing
+  argList with argList+ in config.pl plus a fix to Lib.pm for
+  shell escaping array arguments.
+
+* Fixed rsync restore for character and block special devices
+  (major and minor device numbers weren't correctly restored).
+
+* Fixed typo in bin/BackupPC_restore (XferLOG -> RestoreLOG).
+
+* (Re)-fixed "Bad command" in log file when restore via tar or zip
+  file download is done.
+
+* Added untaint to exec in Lib.pm to avoid tainted errors.
+
+* Applied additional tweak to hilight patch from Tim Demarest.
+
+* $Conf{CgiAdminUsers} = '*' now allows privileged even with REMOTE_USER
+  not set.
+
+* Don't display RsyncdPasswd when displaying config.pl files.
+
+* Replace pipe with socketpair in bin/BackupPC_dump and bin/BackupPC_restore,
+  which increases typical buffering from 4K to 16K-64K.  This improves the
+  performance.
+
+* Add check on $ENV{LANG} setting do configure.pl: if LANG includes utf
+  then a warning is printed.
+
+#------------------------------------------------------------------------
+# Version 2.0.0beta2, 11 May 2003
+#------------------------------------------------------------------------
+
 * Added German translation, provided by Manfred Herrmann.
 
 * Fixed large-file problem with rsync, reported by Manfred Herrmann.
 * Fixed directory browsing and top-level directory browsing in 2.0.0beta0.
   Reported by several users.
 
-* Added suse-linux init.d script from Leon Letto.
-
-* Added Gentoo linux init.d script from Tim Demarest.
-
-* Applied additional i18n strings from GFK and the translation team.
-
-* Fixed option parsing so that getopts errors are reported and we exit.
-
-* Changed reporting of Xfer PIDs so that rsync cancel works correctly.
-
 * Added -v option to BackupPC_dump for verbose output (useful when
   you run the command manually).  Added messages for all exits.
 
 
 * Fixed command queue CGI display; submitted by Tim Demarest.
 
+* BackupPC_trashClean now logs an error if it can't remove all the
+  trash and then goes back to sleep, rather than continually trying.
+
+* Moved correct user (uid) check into BackupPC::Lib so that all
+  applications do a user check if $Cong{BackupPCUserVerify} is
+  set.  The avoids the risk of manually running BackupPC_dump as
+  the wrong user.
+
+* Loss of blackout now applies to "host not found" as well as no ping.
+  Reported by Dale Renton.
+
+* "Host not found" is now treated in a similar manner to "no ping".
+
+* Added suse-linux init.d script from Leon Letto.
+
+* Added Gentoo linux init.d script from Tim Demarest.
+
+* Applied additional i18n strings from GFK and the translation team.
+
+* Fixed option parsing so that getopts errors are reported and we exit.
+
+* Changed reporting of Xfer PIDs so that rsync cancel works correctly.
+
 #------------------------------------------------------------------------
 # Version 2.0.0beta1, 30 Mar 2003
 #------------------------------------------------------------------------
 
+* Added Spanish translation es.pm from Javier Gonzalez.
+
+* Fixed CGI browse navigation bug that causes BackupPC_Admin to wedge
+  when directories were selected in a certain order.
+
+* Fixed BackupPC::PoolWrite so that it can recover when the initial
+  file size is wrong.  This is needed since rsync could write a file
+  whose size is different from the initial size returned in the
+  file list when that file is updated while rsync is running.
+
+* Added binmode(STDIN) to BackupPC_tarExtract, suggested by Pat LoPresti
+  to fix a problem a RedHat8 with perl 5.8.0.  It's unclear why this
+  helps, but it should be benign.  See:
+    http://sourceforge.net/mailarchive/forum.php?thread_id=1853018&forum_id=503
+
+#------------------------------------------------------------------------
+# Version 2.0.0beta0, 23 Feb 2003
+#------------------------------------------------------------------------
+
 * Support for rsync and rsyncd backup and restore.  Changes to
   BackupPC_dump, BackupPC_restore, and new modules BackupPC::Xfer::Rsync
   and BackupPC::Xfer::RsyncFileIO.
   now supports English and French, and adding more languages is
   now easy.  New config paramater $Conf{Language} sets the language.
 
-* Added Spanish translation es.pm from Javieri Gonzalez.
-
 * Added optional user-defined pre/post dump/restore commands, allowing
   things like database shutdown/startup for dumps.
 
 * Added catching of SIG_PIPE to BackupPC_dump, and changed catch_signal
   to ignore multiple signals of the same type.
 
-* Added binmode(STDIN) to BackupPC_tarExtract, suggested by Pat LoPresti
-  to fix a problem a RedHat8 with perl 5.8.0.  It's unclear why this
-  helps, but it should be benign.  See:
-    http://sourceforge.net/mailarchive/forum.php?thread_id=1853018&forum_id=503
-
 * Added reporting of the largest number of hardlinks in the pool to the
   log file.