Revision 7153da40

b/trunk/NetSparkle/NetSparkleForm.cs
41 41
                    {
42 42
                        //Download the content instead of navigating to it, to bypass
43 43
                        //the Content-Disposition header
44
                        NetSparkleBrowser.DocumentText = client.DownloadString(item.ReleaseNotesLink);
44
                        string notes = client.DownloadString(item.ReleaseNotesLink);
45
                        NetSparkleBrowser.DocumentText = notes;
45 46
                    }
46 47
                }
47 48
                else
b/trunk/Pithos.Client.WPF/Properties/AssemblyInfo.cs
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.20313.0")]
97
[assembly: AssemblyFileVersionAttribute("0.7.20313.0")]
96
[assembly: AssemblyVersion("0.7.20314.0")]
97
[assembly: AssemblyFileVersionAttribute("0.7.20314.0")]
b/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs
240 240
        public void CheckForUpgrade()
241 241
        {
242 242
            ShowBalloonFor(new Notification{Title="Checking for upgrades",Message="Contacting the server to retrieve the latest Pithos+ version."});
243
            Log.Error("Test Error message");
244 243
            _sparkle.StopLoop();
245 244
            _sparkle.updateDetected -= OnUpgradeDetected;
246 245
            _sparkle.checkLoopFinished -= OnCheckFinished;
b/trunk/Pithos.Installer/rnotes.0.7.20314.html
1
<html>
2
<body>
3
<h2>Pithos MS Client v. 0.7.20314</h2>
4
Release Date: March 20, 2012, 18:00
5
<br/>
6
Includes:
7
<br/>
8
<ul>
9
<li> Fixed handling of directories generated by Firefox</li>
10
</ul>
11
</body>
12
</html>
b/trunk/Pithos.Installer/versioninfo.xml
5 5
		<title>Pithos MS Client</title>      
6 6
		<link>https://code.grnet.gr/projects/pithos-ms-client/repository/revisions/master/changes/trunk/Pithos.Installer/versioninfo.xml</link>     
7 7
		<description></description>      
8
		<language>en</language>      		
8
		<language>en</language>      				
9
		<item>            
10
			<title>Version 0.7.20314</title>
11
			<sparkle:releaseNotesLink>https://code.grnet.gr/projects/pithos-ms-client/repository/revisions/master/raw/trunk/Pithos.Installer/rnotes.0.7.20314.html</sparkle:releaseNotesLink>
12
			<pubDate>Tue, 20 Mar 2012 18:00:00 +0200</pubDate>
13
			<enclosure 
14
				url="https://code.grnet.gr/attachments/download/1027/PithosPlus_Setupv0.7.20314.0.exe"
15
				length="4335120" 
16
				type="application/octet-stream"
17
				sparkle:version="0.7.20314" 
18
			/>
19
		</item>
9 20
		<item>            
10 21
			<title>Version 0.7.20313</title>
11 22
			<sparkle:releaseNotesLink>https://code.grnet.gr/projects/pithos-ms-client/repository/revisions/master/raw/trunk/Pithos.Installer/rnotes.0.7.20313.html</sparkle:releaseNotesLink>
b/trunk/Pithos.Interfaces/ObjectInfo.cs
345 345
        {
346 346
            get
347 347
            {
348
                return String.Equals(Content_Type, @"application/directory",StringComparison.InvariantCultureIgnoreCase);
348
                if (Content_Type.StartsWith(@"application/directory",StringComparison.InvariantCultureIgnoreCase))
349
                    return true;
350
                if (Content_Type.StartsWith(@"application/folder",StringComparison.InvariantCultureIgnoreCase))
351
                    return true;
352
                return false;
349 353
            }
350 354
        }
351 355

  

Also available in: Unified diff