Skip to content

Commit

Permalink
Updated version numbers for 1.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
arion-p committed Dec 8, 2011
1 parent 7b8ed71 commit 35889b2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Common-MP-TVE3/SolutionInfo.cs
Expand Up @@ -51,8 +51,8 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]
[assembly: AssemblyVersion("1.2.2.0")]
[assembly: AssemblyFileVersion("1.2.2.0")]

//[assembly: AssemblyInformationalVersion("")]
//[assembly: CompatibleVersion("1.1.8.*", "1.1.8.*")]
Expand Up @@ -32,7 +32,7 @@

!define VER_MAJOR 1
!define VER_MINOR 2
!define VER_REVISION 1
!define VER_REVISION 2
;!define VER_TYPE "" # can be "RC", "Beta". Please comment if Final release

#**********************************************************************************************************#
Expand Down
4 changes: 2 additions & 2 deletions Tools/MediaPortal.DeployTool/Utils.cs
Expand Up @@ -552,7 +552,7 @@ public static Version GetPackageVersion(string type)
case "max":
major = 1;
minor = 2;
revision = 0;
revision = 1;
break;
}
Version ver = new Version(major, minor, revision);
Expand Down Expand Up @@ -602,7 +602,7 @@ public static Version VersionFromRegistry(string regkey)

public static string GetDisplayVersion()
{
return "1.2.1";
return "1.2.2";
}

#endregion
Expand Down
2 changes: 1 addition & 1 deletion mediaportal/Configuration/App.config
Expand Up @@ -30,6 +30,6 @@
</assemblyBinding>
</runtime>
<appSettings>
<add key="version" value="1.2.1.0"/>
<add key="version" value="1.2.2.0"/>
</appSettings>
</configuration>
2 changes: 1 addition & 1 deletion mediaportal/MediaPortal.Application/App.config
Expand Up @@ -32,7 +32,7 @@
</assemblyBinding>
</runtime>
<appSettings>
<add key="version" value="1.2.1.0"/>
<add key="version" value="1.2.2.0"/>
<add key="edtftp.log.level" value="ALL"/>
</appSettings>
</configuration>

0 comments on commit 35889b2

Please sign in to comment.