Skip to content

Commit 04961b7

Browse files
authored
Merge pull request #333 from MediaPortal/MP1.35_Final_Test1
MP1.35 Final Release
2 parents 8ae80e8 + 77b39ce commit 04961b7

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

Common-MP-TVE3/SolutionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
// You can specify all the values or you can default the Revision and Build Numbers
5151
// by using the '*' as shown below:
5252

53-
[assembly: AssemblyVersion("1.34.100.0")]
54-
[assembly: AssemblyFileVersion("1.34.100.0")]
53+
[assembly: AssemblyVersion("1.35.000.0")]
54+
[assembly: AssemblyFileVersion("1.35.000.0")]
5555

5656
//[assembly: AssemblyInformationalVersion("")]
5757
//[assembly: CompatibleVersion("1.1.8.*", "1.1.8.*")]

Tools/InstallationScripts/include/MediaPortalCurrentVersion.nsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232

3333
!define VER_MAJOR 1
34-
!define VER_MINOR 34
35-
!define VER_REVISION 100
34+
!define VER_MINOR 35
35+
!define VER_REVISION 000
3636

3737
#**********************************************************************************************************#
3838

Tools/MediaPortal.DeployTool/Utils.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ public static Version GetPackageVersion(string type)
782782
case "max":
783783
major = 1;
784784
minor = 34;
785-
revision = 000;
785+
revision = 100;
786786
break;
787787
}
788788
Version ver = new Version(major, minor, revision);
@@ -802,8 +802,8 @@ public static bool IsPackageUpdatabled(Version pkgVer)
802802
public static Version GetCurrentPackageVersion()
803803
{
804804
int major = 1;
805-
int minor = 34;
806-
int revision = 100;
805+
int minor = 35;
806+
int revision = 000;
807807

808808
Version ver = new Version(major, minor, revision);
809809
return ver;
@@ -853,7 +853,7 @@ public static Version VersionFromRegistry(string regkey)
853853

854854
public static string GetDisplayVersion()
855855
{
856-
return "1.35 Pre Release";
856+
return "1.35 Horizon";
857857
}
858858

859859
/// <summary>

TvEngine3/TVLibrary/TVDatabase/TvBusinessLayer/BusinessLayer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3399,7 +3399,7 @@ public bool IsChannelMappedToCard(Channel dbChannel, Card card, bool forEpg)
33993399
/// </summary>
34003400
public void SetLogLevel()
34013401
{
3402-
var logLevel = (LogLevel)int.Parse(GetSetting("loglevel", "5").Value); // debug is "5", info is "4"
3402+
var logLevel = (LogLevel)int.Parse(GetSetting("loglevel", "4").Value); // debug is "5", info is "4"
34033403
Log.SetLogLevel(logLevel);
34043404
}
34053405
}

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.35.Pre.Release.{build}
1+
version: 1.35.Final.{build}
22
image: Visual Studio 2019
33
clone_folder: c:\project\mediaportal
44
environment:

mediaportal/Configuration/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<loadFromRemoteSources enabled="true" />
2424
</runtime>
2525
<appSettings>
26-
<add key="version" value="1.35-Pre Release" />
26+
<add key="version" value="1.35-Horizon" />
2727
</appSettings>
2828
<startup useLegacyV2RuntimeActivationPolicy="true">
2929
<supportedRuntime version="v4.0.30319" />

mediaportal/Configuration/Sections/General.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public General(string name)
4242
InitializeComponent();
4343
}
4444

45-
private string loglevel = "3"; // 1= error, 2 = info, 3 = debug
45+
private string loglevel = "2"; // 1= error, 2 = info, 3 = debug
4646

4747
/// <summary>
4848
/// Erforderliche Designervariable.

mediaportal/MediaPortal.Application/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<loadFromRemoteSources enabled="true" />
3636
</runtime>
3737
<appSettings>
38-
<add key="version" value="1.35-Pre Release" />
38+
<add key="version" value="1.35-Horizon" />
3939
<add key="edtftp.log.level" value="ALL" />
4040
<add key="ClientSettingsProvider.ServiceUri" value="" />
4141
</appSettings>

mediaportal/Utils/ServiceImplementations/LogImpl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public LogImpl()
6363
//BackupLogFiles();
6464
using (Settings xmlreader = new MPSettings())
6565
{
66-
_minLevel = (Level)Enum.Parse(typeof (Level), xmlreader.GetValueAsString("general", "loglevel", "3")); // set loglevel to 2:info 3:debug
66+
_minLevel = (Level)Enum.Parse(typeof (Level), xmlreader.GetValueAsString("general", "loglevel", "2")); // set loglevel to 2:info 3:debug
6767
}
6868
bConfiguration = false;
6969
}

0 commit comments

Comments
 (0)