Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
BinaryConstruct committed Mar 1, 2014
1 parent a6ee6f7 commit 1740825
Show file tree
Hide file tree
Showing 6 changed files with 1,165 additions and 1,060 deletions.
2 changes: 1 addition & 1 deletion TEdit3Installer/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="TEdit 3" Language="1033" Version="3.4.13298.0" Manufacturer="BinaryConstruct" UpgradeCode="1d9a5baf-12ad-4a55-9e83-bbfd95c7c820">
<Product Id="*" Name="TEdit 3" Language="1033" Version="3.4.13358.0" Manufacturer="BinaryConstruct" UpgradeCode="1d9a5baf-12ad-4a55-9e83-bbfd95c7c820">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<Media Id="1" Cabinet="disk1.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
Expand Down
4 changes: 2 additions & 2 deletions TEditXna/Editor/Undo/UndoManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public UndoBuffer Buffer

public void SaveUndo()
{
ValidateAndRemoveChests();
//ValidateAndRemoveChests();
_maxIndex = _currentIndex;
_buffer.Write(string.Format(UndoFile, _currentIndex));
_currentIndex++;
Expand Down Expand Up @@ -120,7 +120,7 @@ private void ValidateAndRemoveChests()
}
else if (lastTile.Tile.Type == 55 || lastTile.Tile.Type == 85)
{
if (existingLastTile.Type != 55 && existingLastTile.Type != 85 || !existingLastTile.IsActive)
if ((existingLastTile.Type != 55 && existingLastTile.Type != 85) || !existingLastTile.IsActive)
{
var cursign = _wvm.CurrentWorld.GetSignAtTile(lastTile.Location.X, lastTile.Location.Y);
if (cursign != null)
Expand Down
2 changes: 1 addition & 1 deletion TEditXna/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.4.0.0")]
[assembly: AssemblyFileVersion("3.4.13304.0")]
[assembly: AssemblyFileVersion("3.4.13358.0")]
2 changes: 1 addition & 1 deletion TEditXna/Terraria/World.Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace TEditXNA.Terraria
{
public partial class World
{
public static uint CompatibleVersion = 73;
public static uint CompatibleVersion = 77;
private static readonly Dictionary<string, XNA.Color> _globalColors = new Dictionary<string, XNA.Color>();
private static readonly Dictionary<string, int> _npcIds = new Dictionary<string, int>();
private static readonly Dictionary<int, int> _npcFrames = new Dictionary<int, int>();
Expand Down
Loading

0 comments on commit 1740825

Please sign in to comment.