Skip to content

Commit

Permalink
Revert "Merge branch 'git-based-build' into Release_1.2.x"
Browse files Browse the repository at this point in the history
This reverts commit e4c4b61, reversing
changes made to aad43cd.

The original merge was accidental and reverted versions from 1.2.1 to 1.2.0
  • Loading branch information
arion-p committed Nov 28, 2011
1 parent 10f5c04 commit 177a6f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Common-MP-TVE3/SolutionInfo.cs
Original file line number Diff line number Diff line change
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.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]

//[assembly: AssemblyInformationalVersion("")]
//[assembly: CompatibleVersion("1.1.8.*", "1.1.8.*")]
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

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

#**********************************************************************************************************#
Expand Down
6 changes: 3 additions & 3 deletions Tools/MediaPortal.DeployTool/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -551,8 +551,8 @@ public static Version GetPackageVersion(string type)
break;
case "max":
major = 1;
minor = 1;
revision = 8; // 1.1.8 = 1.2.0 RC1
minor = 2;
revision = 0;
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.0";
return "1.2.1";
}

#endregion
Expand Down
2 changes: 1 addition & 1 deletion mediaportal/Configuration/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</assemblyBinding>
</runtime>
<appSettings>
<add key="version" value="1.2.0.0"/>
<add key="version" value="1.2.1.0"/>
</appSettings>
</configuration>
2 changes: 1 addition & 1 deletion mediaportal/MediaPortal.Application/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</assemblyBinding>
</runtime>
<appSettings>
<add key="version" value="1.2.0.0"/>
<add key="version" value="1.2.1.0"/>
<add key="edtftp.log.level" value="ALL"/>
</appSettings>
</configuration>

0 comments on commit 177a6f1

Please sign in to comment.