bump version 0.4.2

This commit is contained in:
Hylke Bons 2011-12-02 13:15:50 +01:00
parent 2184419290
commit f78c6807db
6 changed files with 10 additions and 8 deletions

4
NEWS
View file

@ -1,3 +1,7 @@
0.4.2 for Linux and Mac (Fri Dec 2 2011):
Hylke: Fix crash trying to add a project
0.4.1 for Linux and Mac (Tue Nov 29 2011):
Hylke: Just some small tweaks and fixes:

View file

@ -11,7 +11,7 @@
<RootNamespace>SparkleShare</RootNamespace>
<AssemblyName>SparkleShare</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<ReleaseVersion>0.4.1</ReleaseVersion>
<ReleaseVersion>0.4.2</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

View file

@ -16,6 +16,6 @@ Global
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = SparkleShare.csproj
version = 0.4.1
version = 0.4.2
EndGlobalSection
EndGlobal

View file

@ -140,9 +140,6 @@ namespace SparkleShare {
invite_listener.InviteReceived += delegate (SparkleInvite invite) {
Console.WriteLine (invite.Host + " " + invite.Path + " " + invite.Token);
return;
if (OnInvite != null && !FirstRun)
OnInvite (invite);
};

View file

@ -144,7 +144,8 @@ namespace SparkleShare {
invite_xml = ASCIIEncoding.ASCII.GetString (buffer);
} catch (WebException e) {
SparkleHelpers.DebugInfo ("Invite", "Failed downloading: " + received_message);
SparkleHelpers.DebugInfo ("Invite", "Failed downloading: " +
received_message + " " + e.Message);
continue;
}

View file

@ -1,9 +1,9 @@
dnl Process this file with autoconf to produce a configure script.
m4_define([sparkleshare_version],
[0.4.1])
[0.4.2])
m4_define([sparkleshare_asm_version],
[0.4.1])
[0.4.2])
AC_PREREQ([2.54])
AC_INIT([SparkleShare], sparkleshare_version)