Updating version numbers/ReleaseNotes

This commit is contained in:
Ima Mechanique 2012-03-18 05:52:21 +00:00
parent 3b80d5668c
commit 8b2baa8bbc
4 changed files with 10 additions and 4 deletions

Binary file not shown.

View file

@ -70,7 +70,7 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // 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 // 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: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyName("")] //[assembly: AssemblyKeyName("")]
[assembly: AssemblyKeyFile("..\\..\\Resource\\test.snk")]
[assembly: ComVisibleAttribute(false)] [assembly: ComVisibleAttribute(false)]
[assembly: AssemblyFileVersionAttribute("2.45.0.0")] [assembly: AssemblyFileVersionAttribute("2.45.1.0")]

View file

@ -7,6 +7,10 @@
</head> </head>
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3"> <body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
<div> <div>
<div>
<h3><span class="date">2012-03-18</span> - Release 2.45.1</h3>
<div>- Fixed: Problem with updater. Our BZip2 decompression code did not work, which prevented the updater creating the new file.</div>
</div>
<div> <div>
<h3><span class="date">2012-03-14</span> - Release 2.45.0</h3> <h3><span class="date">2012-03-14</span> - Release 2.45.0</h3>
- 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 <a href="https://wiki.secondlife.com/wiki/Pathfinding_in_Second_Life">Pathfinding in Second Life</a> - 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 <a href="https://wiki.secondlife.com/wiki/Pathfinding_in_Second_Life">Pathfinding in Second Life</a>

View file

@ -48,6 +48,8 @@ using System.Reflection;
using System.ComponentModel; using System.ComponentModel;
using System.Windows.Forms; using System.Windows.Forms;
using LSLEditor.Decompressor;
namespace LSLEditor namespace LSLEditor
{ {
public partial class UpdateApplicationForm : Form public partial class UpdateApplicationForm : Form
@ -267,6 +269,7 @@ namespace LSLEditor
web = wzip; web = wzip;
} }
*/ */
strHashWeb = web.hash;
this.labelOurVersionString.Text = current.version.ToString(); this.labelOurVersionString.Text = current.version.ToString();
this.labelLatestVersionString.Text = web.version.ToString(); this.labelLatestVersionString.Text = web.version.ToString();
@ -433,7 +436,7 @@ namespace LSLEditor
switch (strExtension) switch (strExtension)
{ {
case ".bz2": case ".bz2":
//BZip2Decompress.Decompressor.Decompress(File.OpenRead(strZipFile), File.Create(strNewFile)); Decompressor.BZip2.Decompress(File.OpenRead(strZipFile), File.Create(strNewFile));
break; break;
case ".gz": case ".gz":
case ".gzip": case ".gzip":