Skip to content

Commit b81d2da

Browse files
author
cbarratt
committed
Updates in preparation for 3.0.0beta2:
* Config Editor "Save" button is now always visible, but greyed out until there are changes to save. * Config editor allows other tabs to be selected when there is an error, which allows you to fix an error (eg: missing binary) in an exiting config file. Errors are now displayed at the top of the page in addition to next to the erroneous setting. * Fixed config.pl editor writing to solve bug with multi-line text strings ending in newline. Reported and root caused by Les Stott and Jerry Groendyke. * Fixed error recovery case in BackupPC::PoolWrite, reported by Samuel Bancal. * New directory/file/hardlink and symlink image icons from Jono Woodhouse, making directory browse more compact. * Reordered the Server navigation bar links, suggested by David Relson. * Fixed typos in init.d/src/gentoo-backuppc, configure.pl and config.pl reported by David Relson.
1 parent a565069 commit b81d2da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+305
-217
lines changed

ChangeLog

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,44 @@
2121
# Version __VERSION__, __RELEASEDATE__
2222
#------------------------------------------------------------------------
2323

24+
* Config Editor "Save" button is now always visible, but greyed out
25+
until there are changes to save.
26+
27+
* Config editor allows other tabs to be selected when there is an
28+
error, which allows you to fix an error (eg: missing binary) in
29+
an exiting config file. Errors are now displayed at the top of
30+
the page in addition to next to the erroneous setting.
31+
2432
* configure.pl checks version of Encode.pm. Reported by Chris Stone.
2533

2634
* Several fixes to bin/BackupPC_fixupBackupSummary from Stian Jordet.
2735

36+
* Fixed config.pl editor writing to solve bug with multi-line text
37+
strings ending in newline. Reported and root caused by Les Stott
38+
and Jerry Groendyke.
39+
40+
* Fixed error recovery case in BackupPC::PoolWrite, reported by
41+
Samuel Bancal.
42+
2843
* Fixed table width in backup browsing to avoid Firefox layout anomoly,
2944
provided by Jono Woodhouse.
3045

31-
* CSS file updates from Jono Woodhouse. Priod (v2) version is included
46+
* CSS file updates from Jono Woodhouse. Prior (v2) version is included
3247
as BackupPC_stnd_orig.css in case people prefer the old skin.
3348

3449
* More compact host summary, including disabled host indication,
3550
from Jono Woodhouse.
3651

52+
* New directory/file/hardlink and symlink image icons from Jono
53+
Woodhouse, making directory browse more compact.
54+
3755
* BackupPC.pid is now world readable, suggested by Casper Thomsen.
3856

57+
* Reordered the Server navigation bar links, suggested by David Relson.
58+
59+
* Fixed typos in init.d/src/gentoo-backuppc, configure.pl and config.pl
60+
reported by David Relson.
61+
3962
#------------------------------------------------------------------------
4063
# Version 3.0.0beta1, 30 Jul 2006
4164
#------------------------------------------------------------------------
@@ -45,6 +68,8 @@
4568
* Added some CGI utf8 conversions from Rodrigo Real and Vincent
4669
Fleuranceau.
4770

71+
* Rsync transfers now correctly handle file names with \n or \r.
72+
4873
* Host name is forced to lower case, to match 2.x.
4974

5075
* Fixed LOG file naming in BackupPC_restore and BackupPC_archive.

bin/BackupPC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#
4848
#========================================================================
4949
#
50-
# Version 3.0.0beta1, released 30 Jul 2006.
50+
# Version 3.0.0beta2, released 11 Nov 2006.
5151
#
5252
# See http://backuppc.sourceforge.net.
5353
#

bin/BackupPC_archive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#
3030
#========================================================================
3131
#
32-
# Version 3.0.0beta1, released 30 Jul 2006.
32+
# Version 3.0.0beta2, released 11 Nov 2006.
3333
#
3434
# See http://backuppc.sourceforge.net.
3535
#

bin/BackupPC_archiveHost

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#
3939
#========================================================================
4040
#
41-
# Version 3.0.0beta1, released 30 Jul 2006.
41+
# Version 3.0.0beta2, released 11 Nov 2006.
4242
#
4343
# See http://backuppc.sourceforge.net.
4444
#

bin/BackupPC_attribPrint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#
3232
#========================================================================
3333
#
34-
# Version 3.0.0beta1, released 30 Jul 2006.
34+
# Version 3.0.0beta2, released 11 Nov 2006.
3535
#
3636
# See http://backuppc.sourceforge.net.
3737
#

bin/BackupPC_compressPool

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#
5050
#========================================================================
5151
#
52-
# Version 3.0.0beta1, released 30 Jul 2006.
52+
# Version 3.0.0beta2, released 11 Nov 2006.
5353
#
5454
# See http://backuppc.sourceforge.net.
5555
#

bin/BackupPC_dump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
#
7171
#========================================================================
7272
#
73-
# Version 3.0.0beta1, released 30 Jul 2006.
73+
# Version 3.0.0beta2, released 11 Nov 2006.
7474
#
7575
# See http://backuppc.sourceforge.net.
7676
#

bin/BackupPC_fixupBackupSummary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#
3131
#========================================================================
3232
#
33-
# Version 3.0.0beta0, released 11 Jul 2006.
33+
# Version 3.0.0beta2, released 11 Nov 2006.
3434
#
3535
# See http://backuppc.sourceforge.net.
3636
#

bin/BackupPC_link

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#
4040
#========================================================================
4141
#
42-
# Version 3.0.0beta1, released 30 Jul 2006.
42+
# Version 3.0.0beta2, released 11 Nov 2006.
4343
#
4444
# See http://backuppc.sourceforge.net.
4545
#

bin/BackupPC_nightly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#
5656
#========================================================================
5757
#
58-
# Version 3.0.0beta1, released 30 Jul 2006.
58+
# Version 3.0.0beta2, released 11 Nov 2006.
5959
#
6060
# See http://backuppc.sourceforge.net.
6161
#

0 commit comments

Comments
 (0)