From: <die...@us...> - 2007-01-27 18:27:35
|
Revision: 33 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=33&view=rev Author: diehard2 Date: 2007-01-27 10:27:22 -0800 (Sat, 27 Jan 2007) Log Message: ----------- Code cleanup. Small config fix Modified Paths: -------------- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj Removed Paths: ------------- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/Release/DirecTV.TunerPlugin.dll Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo =================================================================== (Binary files differ) Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs =================================================================== --- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs 2007-01-27 17:40:21 UTC (rev 32) +++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SetupForm.cs 2007-01-27 18:27:22 UTC (rev 33) @@ -158,24 +158,16 @@ private void EnableAdavancedSettings() { + advancedBox.Enabled = true; baudComboBox.Enabled = true; timeoutNumUpDown.Enabled = true; - keyMapComboBox.Enabled = true; - commandSetBox.Enabled = true; - channelSetBox.Enabled = true; - powerOnBox.Enabled = true; - debugBox.Enabled = true; } private void DisableAdavancedSettings() { + advancedBox.Enabled = false; baudComboBox.Enabled = false; timeoutNumUpDown.Enabled = false; - keyMapComboBox.Enabled = false; - commandSetBox.Enabled = false; - channelSetBox.Enabled = false; - powerOnBox.Enabled = false; - debugBox.Enabled = false; } } Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj =================================================================== --- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-27 17:40:21 UTC (rev 32) +++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-27 18:27:22 UTC (rev 33) @@ -62,7 +62,7 @@ <Reference Include="Accessibility" /> <Reference Include="Core, Version=1.0.2579.42468, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\Copy of MP\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\Desktop\Release\Core.dll</HintPath> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> @@ -71,7 +71,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=1.0.2579.42459, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\Copy of MP\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\Desktop\Release\Utils.dll</HintPath> </Reference> </ItemGroup> <PropertyGroup> Deleted: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/Release/DirecTV.TunerPlugin.dll =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pat...@us...> - 2007-01-29 16:38:50
|
Revision: 41 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=41&view=rev Author: patrick_sf Date: 2007-01-29 08:38:44 -0800 (Mon, 29 Jan 2007) Log Message: ----------- Updated to allow digital subchannels in the format of 9-2 or 003603 Modified Paths: -------------- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SerialInterface/SerialInterface.cs trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/TunerPlugin.csproj.FileList.txt Removed Paths: ------------- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo Deleted: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/DirecTV.suo =================================================================== (Binary files differ) Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SerialInterface/SerialInterface.cs =================================================================== --- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SerialInterface/SerialInterface.cs 2007-01-29 13:20:56 UTC (rev 40) +++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/SerialInterface/SerialInterface.cs 2007-01-29 16:38:44 UTC (rev 41) @@ -446,6 +446,7 @@ // it was, so now check if the command succeeded WriteDebug("DirecTV.SerialInterface.SendCommand(): data is being processed by box"); + // The HTL-HD box sends a null byte back before the Successful so check for it bool okContinue = false; ReadResponse(Response.NULL_BYTE, out expect, out reponse); if (reponse == (byte)Response.NULL_BYTE) Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj =================================================================== --- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-29 13:20:56 UTC (rev 40) +++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/TunerPlugin.csproj 2007-01-29 16:38:44 UTC (rev 41) @@ -60,15 +60,19 @@ </ItemGroup> <ItemGroup> <Reference Include="Accessibility" /> - <Reference Include="Core, Version=1.0.2546.32606, Culture=neutral, processorArchitecture=x86"> + <Reference Include="Core, Version=1.0.2585.19609, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\MediaPortal-References-v0.2.2-Release\Core.DLL</HintPath> + <HintPath>..\..\..\..\References-MP-SVN\Core.dll</HintPath> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> + <Reference Include="Utils, Version=1.0.2585.19595, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\References-MP-SVN\Utils.dll</HintPath> + </Reference> </ItemGroup> <PropertyGroup> <PostBuildEvent> Modified: trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/TunerPlugin.csproj.FileList.txt =================================================================== --- trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/TunerPlugin.csproj.FileList.txt 2007-01-29 13:20:56 UTC (rev 40) +++ trunk/plugins/DirectTv/TVE 2 DirecTV Plugin/TunerPlugin/obj/TunerPlugin.csproj.FileList.txt 2007-01-29 16:38:44 UTC (rev 41) @@ -6,3 +6,4 @@ bin\Release\Core.DLL obj\Release\DirecTV.TunerPlugin.dll obj\Release\DirecTV.TunerPlugin.pdb +bin\Release\Utils.dll This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |