From 8b2baa8bbc621ddcb57a4593f38b69097e7ccbdf Mon Sep 17 00:00:00 2001 From: Ima Mechanique Date: Sun, 18 Mar 2012 05:52:21 +0000 Subject: [PATCH] Updating version numbers/ReleaseNotes --- trunk/LSLEditor.RES | Bin 84720 -> 84952 bytes trunk/Properties/AssemblyInfo.cs | 5 ++--- trunk/Resource/ReleaseNotes.htm | 4 ++++ trunk/UpdateApplicationForm.cs | 5 ++++- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/trunk/LSLEditor.RES b/trunk/LSLEditor.RES index 029e245d1add9d28fb4fe1e491dc8b89f3b92605..34647d47ad3b1455909ca6f7c89de7d2ee3ce1bb 100644 GIT binary patch delta 191 zcmew`mG#DS)(r
+
+

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":