diff --git a/trunk/LSLEditor.RES b/trunk/LSLEditor.RES index 029e245..34647d4 100644 Binary files a/trunk/LSLEditor.RES and b/trunk/LSLEditor.RES differ diff --git a/trunk/Properties/AssemblyInfo.cs b/trunk/Properties/AssemblyInfo.cs index b65e7b7..105a890 100644 --- a/trunk/Properties/AssemblyInfo.cs +++ b/trunk/Properties/AssemblyInfo.cs @@ -70,7 +70,7 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.45.0.*")] +[assembly: AssemblyVersion("2.45.1.*")] // // In order to sign your assembly you must specify a key to use. Refer to the @@ -99,6 +99,5 @@ using System.Runtime.InteropServices; // [assembly: AssemblyDelaySign(false)] //[assembly: AssemblyKeyName("")] -[assembly: AssemblyKeyFile("..\\..\\Resource\\test.snk")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyFileVersionAttribute("2.45.0.0")] +[assembly: AssemblyFileVersionAttribute("2.45.1.0")] diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index 8f2e106..734b2f2 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -7,6 +7,10 @@
+
+

2012-03-18 - Release 2.45.1

+
- Fixed: Problem with updater. Our BZip2 decompression code did not work, which prevented the updater creating the new file.
+

2012-03-14 - Release 2.45.0

- Added new constants, event, and functions for the character/path-finding feature in testing on aditi. NOTE: these are still in alpha testing and not finalised, so they may change without notice. More info available here Pathfinding in Second Life diff --git a/trunk/UpdateApplicationForm.cs b/trunk/UpdateApplicationForm.cs index 749aca1..6f6c595 100644 --- a/trunk/UpdateApplicationForm.cs +++ b/trunk/UpdateApplicationForm.cs @@ -48,6 +48,8 @@ using System.Reflection; using System.ComponentModel; using System.Windows.Forms; +using LSLEditor.Decompressor; + namespace LSLEditor { public partial class UpdateApplicationForm : Form @@ -267,6 +269,7 @@ namespace LSLEditor web = wzip; } */ + strHashWeb = web.hash; this.labelOurVersionString.Text = current.version.ToString(); this.labelLatestVersionString.Text = web.version.ToString(); @@ -433,7 +436,7 @@ namespace LSLEditor switch (strExtension) { case ".bz2": - //BZip2Decompress.Decompressor.Decompress(File.OpenRead(strZipFile), File.Create(strNewFile)); + Decompressor.BZip2.Decompress(File.OpenRead(strZipFile), File.Create(strNewFile)); break; case ".gz": case ".gzip":