Revision 0771dfd7

b/trunk/Pithos.Client.WPF/App.xaml.cs
214 214
            var description = e.IsTerminating
215 215
                              ? WPF.Properties.Resources.Unexpected_Error_Terminating
216 216
                              : WPF.Properties.Resources.Unexpected_Error;
217
            var message = String.Format(@"{0}\r\n{1}\r\n\r\n{2}",
217
            var message = String.Format(@"{0}<LineBreak/>{1}<LineBreak/><LineBreak/>{2}",
218 218
                description,
219 219
                WPF.Properties.Resources.We_Apologize,
220 220
                WPF.Properties.Resources.Please_Submit_Error);
b/trunk/Pithos.Client.WPF/Properties/AssemblyInfo.cs
56 56
[assembly: AssemblyCopyright("Copyright © GRNet 2011-2012")]
57 57
[assembly: AssemblyTrademark("")]
58 58
[assembly: AssemblyCulture("")]
59
[assembly: AssemblyInformationalVersion("2012-03-20")]
59
[assembly: AssemblyInformationalVersion("2012-03-23")]
60 60

  
61 61
// Setting ComVisible to false makes the types in this assembly not visible 
62 62
// to COM components.  If you need to access a type in this assembly from 
......
93 93
// You can specify all the values or you can default the Build and Revision Numbers 
94 94
// by using the '*' as shown below:
95 95
// [assembly: AssemblyVersion("1.0.*")]
96
[assembly: AssemblyVersion("0.7.20314.0")]
97
[assembly: AssemblyFileVersionAttribute("0.7.20314.0")]
96
[assembly: AssemblyVersion("0.7.20315.0")]
97
[assembly: AssemblyFileVersionAttribute("0.7.20315.0")]
b/trunk/Pithos.Core/Agents/BlockExtensions.cs
58 58

  
59 59
        public static int Read(this FileInfo fileInfo,byte[] buffer,long offset,int count)
60 60
        {
61
            if (offset <= 0)
61
            if (offset < 0)
62 62
                throw new ArgumentOutOfRangeException("offset", offset, "The file offset can't be negative");
63 63
            Contract.EndContractBlock();
64 64
            //Open the stream only long enough to read a block

Also available in: Unified diff