Update NEWS and bump version

This commit is contained in:
Hylke Bons 2012-08-29 13:06:46 +01:00
parent 7caac5010f
commit 3bcd1ed05b
5 changed files with 10 additions and 4 deletions

6
NEWS
View file

@ -1,3 +1,9 @@
0.9.2 for Linux, Mac and Windows (Wed Aug 29 2012)
Hylke:
- This release fixes a crash that can happen after adding a new
project as well ssh-agent sometimes not starting on Windows
0.9.1 for Linux, Mac and Windows (Mon Aug 27 2012)
Hylke:

View file

@ -19,7 +19,7 @@ using System;
using System.Reflection;
[assembly:AssemblyTitle ("SparkleLib")]
[assembly:AssemblyVersion ("0.9.1")]
[assembly:AssemblyVersion ("0.9.2")]
[assembly:AssemblyCopyright ("Copyright (c) 2010 Hylke Bons and others")]
[assembly:AssemblyTrademark ("SparkleShare is a trademark of SparkleShare Ltd.")]

View file

@ -62,10 +62,10 @@ namespace SparkleShare {
}
}
private XmlDocument xml = new XmlDocument ();
private string plugin_directory;
public SparklePlugin (string plugin_path)
{
this.plugin_directory = System.IO.Path.GetDirectoryName (plugin_path);

View file

@ -2,7 +2,7 @@
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Name='SparkleShare' Id='184950D5-67F6-4D06-9717-7E2F1607A7B0' UpgradeCode='D3DF1D99-87F5-47A7-A349-863DD6E4B73A'
Language='1033' Codepage='1252' Version='0.9.1' Manufacturer='SparkleShare'>
Language='1033' Codepage='1252' Version='0.9.2' Manufacturer='SparkleShare'>
<Package Id='*' Keywords='Installer' Description="SparkleShare Setup" Manufacturer='SparkleShare'
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />

View file

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
m4_define([sparkleshare_version], [0.9.1])
m4_define([sparkleshare_version], [0.9.2])
AC_PREREQ([2.54])
AC_INIT([SparkleShare], sparkleshare_version)