Updating version numbers/ReleaseNotes
This commit is contained in:
parent
3b80d5668c
commit
8b2baa8bbc
4 changed files with 10 additions and 4 deletions
Binary file not shown.
|
@ -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")]
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
</head>
|
||||
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
||||
<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>
|
||||
<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>
|
||||
|
|
|
@ -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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue