Changeset 126

Show
Ignore:
Timestamp:
05/21/07 09:15:10 (3 years ago)
Author:
bradfitz
Message:

Checking in changes prior to tagging of version 1.00. Changelog diff is:

Index: Changes
===================================================================
--- Changes (revision 125)
+++ Changes (working copy)
@@ -1,3 +1,11 @@
+1.00 (may 21, 2007)
+
+ RELEASE NOTE: The author/maintainer of Brackup is finally happy now,
+ and has 40 GB of data stored on Amazon, encrypted. You can
+ trust this now. And the file formats aren't changing (or aren't
+ changing without being compatible with old *.brackup/Amazon
+ formats...)
+

  • track in meta header the default (most often occuring) modes for files and directories, then don't list those for each file/dir with those mode. saves on disk space on *.brackup files
Location:
trunk
Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        88.brackup-digest.db 
        99*-2007*.brackup 
         10META.yml 
  • trunk/Changes

    r124 r126  
     11.00 (may 21, 2007) 
     2 
     3  RELEASE NOTE: The author/maintainer of Brackup is finally happy now, 
     4    and has 40 GB of data stored on Amazon, encrypted.  You can 
     5    trust this now.  And the file formats aren't changing (or aren't 
     6    changing without being compatible with old *.brackup/Amazon 
     7    formats...) 
     8 
    19  - track in meta header the default (most often occuring) modes for 
    210    files and directories, then don't list those for each file/dir 
  • trunk/MANIFEST

    r122 r126  
    4242t/data/test-file.txt 
    4343TODO 
     44META.yml                                 Module meta-data (added by MakeMaker) 
  • trunk/lib/Brackup.pm

    r80 r126  
    22use strict; 
    33use vars qw($VERSION); 
    4 $VERSION = '0.91'; 
     4$VERSION = '1.00'; 
    55 
    66use Brackup::Config; 
  • trunk/lib/Brackup/Test.pm

    r110 r126  
    133133 
    134134            my $meta = {}; 
    135             $meta->{size} = $st->size; 
     135            $meta->{size} = $st->size unless -d $path; 
    136136            $meta->{is_file} = 1 if -f $path; 
    137137            $meta->{is_link} = 1 if -l $path;