Skip to content

Commit

Permalink
Merge pull request #352 from MediaPortal/MP1.35.Final-Bump_version_nu…
Browse files Browse the repository at this point in the history
…mber_and_set_DEBUG_level_to_INFO

MP1.35.Final: Bump version number and set DEBUG level to INFO
  • Loading branch information
andrewjswan authored Dec 4, 2024
2 parents cbd63e8 + dabe353 commit f20275d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Common-MP-TVE3/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,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.35.000.0")]
[assembly: AssemblyFileVersion("1.35.000.0")]
[assembly: AssemblyVersion("1.36.000.0")]
[assembly: AssemblyFileVersion("1.36.000.0")]

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


!define VER_MAJOR 1
!define VER_MINOR 35
!define VER_MINOR 36
!define VER_REVISION 000

#**********************************************************************************************************#
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 @@ -781,7 +781,7 @@ public static Version GetPackageVersion(string type)
break;
case "max":
major = 1;
minor = 34;
minor = 35;
revision = 100;
break;
}
Expand All @@ -802,7 +802,7 @@ public static bool IsPackageUpdatabled(Version pkgVer)
public static Version GetCurrentPackageVersion()
{
int major = 1;
int minor = 35;
int minor = 36;
int revision = 000;

Version ver = new Version(major, minor, revision);
Expand Down Expand Up @@ -853,7 +853,7 @@ public static Version VersionFromRegistry(string regkey)

public static string GetDisplayVersion()
{
return "1.35 Horizon";
return "1.36 Polar Express";
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.35.Final.{build}
version: 1.36.Final.{build}
image: Visual Studio 2019
clone_folder: c:\project\mediaportal
environment:
Expand Down
2 changes: 1 addition & 1 deletion mediaportal/Configuration/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<loadFromRemoteSources enabled="true" />
</runtime>
<appSettings>
<add key="version" value="1.35-Horizon" />
<add key="version" value="1.36-Polar Express" />
</appSettings>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319" />
Expand Down
2 changes: 1 addition & 1 deletion mediaportal/MediaPortal.Application/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<loadFromRemoteSources enabled="true" />
</runtime>
<appSettings>
<add key="version" value="1.35-Horizon" />
<add key="version" value="1.36-Polar Express" />
<add key="edtftp.log.level" value="ALL" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
Expand Down

0 comments on commit f20275d

Please sign in to comment.