From: <an...@us...> - 2008-08-04 04:22:55
|
Revision: 1999 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1999&view=rev Author: and-81 Date: 2008-08-04 04:22:52 +0000 (Mon, 04 Aug 2008) Log Message: ----------- Preparing for 1.4.2.0 Final release Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverReplacement.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverVista.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverXP.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/Input Service/Input Service/Abstract Remote Maps/iMon/Imon PAD.xml Added Paths: ----------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remote Presets/Imon PAD.xml Modified: trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2008-08-04 04:22:52 UTC (rev 1999) @@ -14,7 +14,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>false</DebugSymbols> + <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverReplacement.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverReplacement.cs 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverReplacement.cs 2008-08-04 04:22:52 UTC (rev 1999) @@ -184,6 +184,8 @@ public override void Start() { #if DEBUG + try + { DebugOpen("MicrosoftMceTransceiver_DriverReplacement.log"); DebugWriteLine("Start()"); DebugWriteLine("Device Guid: {0}", _deviceGuid); @@ -202,6 +204,14 @@ _notifyWindow.DeviceArrival += new DeviceEventHandler(OnDeviceArrival); _notifyWindow.DeviceRemoval += new DeviceEventHandler(OnDeviceRemoval); +#if DEBUG + } + catch + { + DebugClose(); + throw; + } +#endif } /// <summary> Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverVista.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverVista.cs 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverVista.cs 2008-08-04 04:22:52 UTC (rev 1999) @@ -581,26 +581,36 @@ /// </summary> public override void Start() { + try + { #if DEBUG - DebugOpen("MicrosoftMceTransceiver_DriverVista.log"); - DebugWriteLine("Start()"); - DebugWriteLine("Device Guid: {0}", _deviceGuid); - DebugWriteLine("Device Path: {0}", _devicePath); + DebugOpen("MicrosoftMceTransceiver_DriverVista.log"); + DebugWriteLine("Start()"); + DebugWriteLine("Device Guid: {0}", _deviceGuid); + DebugWriteLine("Device Path: {0}", _devicePath); #endif - _notifyWindow = new NotifyWindow(); - _notifyWindow.Create(); - _notifyWindow.Class = _deviceGuid; - _notifyWindow.RegisterDeviceArrival(); + _notifyWindow = new NotifyWindow(); + _notifyWindow.Create(); + _notifyWindow.Class = _deviceGuid; + //_notifyWindow.RegisterDeviceArrival(); - OpenDevice(); - InitializeDevice(); + OpenDevice(); + InitializeDevice(); - StartReceive(_receivePort, PacketTimeout); - StartReadThread(ReadThreadMode.Receiving); + StartReceive(_receivePort, PacketTimeout); + StartReadThread(ReadThreadMode.Receiving); - _notifyWindow.DeviceArrival += new DeviceEventHandler(OnDeviceArrival); - _notifyWindow.DeviceRemoval += new DeviceEventHandler(OnDeviceRemoval); + _notifyWindow.DeviceArrival += new DeviceEventHandler(OnDeviceArrival); + _notifyWindow.DeviceRemoval += new DeviceEventHandler(OnDeviceRemoval); + } + catch + { +#if DEBUG + DebugClose(); +#endif + throw; + } } /// <summary> @@ -875,15 +885,18 @@ return; } - _readThreadMode = ReadThreadMode.Stop; + //if (_eHomeHandle != null) + // CancelIo(_eHomeHandle); - //_readThread.Abort(); + if (_readThread.IsAlive) + { + _readThread.Abort(); - if (_eHomeHandle != null) - CancelIo(_eHomeHandle); + if (Thread.CurrentThread != _readThread) + _readThread.Join(); + } - //if (Thread.CurrentThread != _readThread) - //_readThread.Join(); + _readThreadMode = ReadThreadMode.Stop; _readThread = null; } @@ -918,10 +931,15 @@ bool success = false; _eHomeHandle.DangerousAddRef(ref success); if (success) + { + //_notifyWindow.UnregisterDeviceArrival(); // If the device is present then we don't want to monitor arrival. _notifyWindow.RegisterDeviceRemoval(_eHomeHandle.DangerousGetHandle()); + } #if DEBUG else + { DebugWriteLine("Warning: Failed to initialize device removal notification"); + } #endif Thread.Sleep(PacketTimeout); // Hopefully improves compatibility with Zalman remote which times out retrieving device capabilities. (2008-01-01) @@ -1061,7 +1079,22 @@ if (receiveParamsPtr != IntPtr.Zero) Marshal.FreeHGlobal(receiveParamsPtr); - StopReceive(); + try + { + if (_eHomeHandle != null) + StopReceive(); + } +#if DEBUG + catch (Exception ex) + { + DebugWriteLine(ex.ToString()); + } +#else + catch + { + // Ignore this exception, we're closing it down anyway. + } +#endif } #if DEBUG Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverXP.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverXP.cs 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverXP.cs 2008-08-04 04:22:52 UTC (rev 1999) @@ -183,6 +183,8 @@ public override void Start() { #if DEBUG + try + { DebugOpen("MicrosoftMceTransceiver_DriverXP.log"); DebugWriteLine("Start()"); DebugWriteLine("Device Guid: {0}", _deviceGuid); @@ -201,6 +203,14 @@ _notifyWindow.DeviceArrival += new DeviceEventHandler(OnDeviceArrival); _notifyWindow.DeviceRemoval += new DeviceEventHandler(OnDeviceRemoval); +#if DEBUG + } + catch + { + DebugClose(); + throw; + } +#endif } /// <summary> Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2008-08-04 04:22:52 UTC (rev 1999) @@ -15,7 +15,7 @@ <ApplicationIcon>Icon.ico</ApplicationIcon> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>false</DebugSymbols> + <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> Modified: trunk/plugins/IR Server Suite/IR Server Suite.sln =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite.sln 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/IR Server Suite.sln 2008-08-04 04:22:52 UTC (rev 1999) @@ -361,12 +361,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Media Center Blaster", "Applications\Media Center Blaster\Media Center Blaster.csproj", "{349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imon USB Receivers", "IR Server Plugins\Imon USB Receivers\Imon USB Receivers.csproj", "{EC37743A-64B2-472A-9EB6-CB052AD2B35C}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -611,10 +605,6 @@ {E83E5C73-5F70-4B52-B6BD-E906BAE90DF6}.Debug|Any CPU.Build.0 = Debug|Any CPU {E83E5C73-5F70-4B52-B6BD-E906BAE90DF6}.Release|Any CPU.ActiveCfg = Release|Any CPU {E83E5C73-5F70-4B52-B6BD-E906BAE90DF6}.Release|Any CPU.Build.0 = Release|Any CPU - {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}.Release|Any CPU.Build.0 = Release|Any CPU {EC37743A-64B2-472A-9EB6-CB052AD2B35C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EC37743A-64B2-472A-9EB6-CB052AD2B35C}.Debug|Any CPU.Build.0 = Debug|Any CPU {EC37743A-64B2-472A-9EB6-CB052AD2B35C}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -646,7 +636,6 @@ {FEB70334-6F8E-41D5-9B0A-D5714A296830} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {4C18B138-BF94-4224-9085-4D3EDA680EDA} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {DCE0C464-3843-45F1-A48B-C1A3FF532C1D} = {0C209E91-5AD5-4662-AD0E-976A940D4806} - {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {7C686499-7517-4338-8837-7E8617549D9A} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} Modified: trunk/plugins/IR Server Suite/Input Service/Input Service/Abstract Remote Maps/iMon/Imon PAD.xml =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service/Abstract Remote Maps/iMon/Imon PAD.xml 2008-08-03 22:07:57 UTC (rev 1998) +++ trunk/plugins/IR Server Suite/Input Service/Input Service/Abstract Remote Maps/iMon/Imon PAD.xml 2008-08-04 04:22:52 UTC (rev 1999) @@ -51,4 +51,8 @@ <RemoteTable RawCode="1124" AbstractButton="Teletext" /> <RemoteTable RawCode="1198" AbstractButton="Guide" /> <RemoteTable RawCode="1150" AbstractButton="Home" /> + + <RemoteTable RawCode="1226" AbstractButton="LeftClick" /> + <RemoteTable RawCode="1228" AbstractButton="RightClick" /> + </DocumentElement> \ No newline at end of file Added: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remote Presets/Imon PAD.xml =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remote Presets/Imon PAD.xml (rev 0) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remote Presets/Imon PAD.xml 2008-08-04 04:22:52 UTC (rev 1999) @@ -0,0 +1,189 @@ +<?xml version="1.0" standalone="yes"?> +<remotes> + <remote name="iMon Pad"> + + <button name="PowerTV"> + <code value="1002"/> + </button> + <button name="Power2"> + <code value="1016"/> + </button> + <button name="Record"> + <code value="1064"/> + </button> + <button name="Play"> + <code value="1128"/> + </button> + <button name="Open"> + <code value="1114"/> + </button> + <button name="Rewind"> + <code value="1130"/> + </button> + <button name="Pause"> + <code value="1144"/> + </button> + <button name="Forward"> + <code value="1192"/> + </button> + <button name="Replay"> + <code value="1208"/> + </button> + <button name="Stop"> + <code value="1220"/> + </button> + <button name="Skip"> + <code value="1066"/> + </button> + + <button name="Back"> + <code value="1032"/> + </button> + <button name="Ok"> + <code value="1148"/> + </button> + <button name="WinStart"> + <code value="1194"/> + </button> + <button name="WinMenu"> + <code value="1060"/> + </button> + + <button name="LeftClick"> + <code value="1226"/> + </button> + <button name="RightClick"> + <code value="1228"/> + </button> + + <button name="Enter"> + <code value="1034"/> + </button> + <button name="Esc"> + <code value="1252"/> + </button> + <button name="Eject"> + <code value="1086"/> + </button> + <button name="AppLauncher"> + <code value="1124"/> + </button> + <button name="Start"> + <code value="1178"/> + </button> + <button name="TaskSwitcher"> + <code value="1150"/> + </button> + + <button name="Mute"> + <code value="1218"/> + </button> + <button name="VolumeUp"> + <code value="1038"/> + </button> + <button name="ChannelUp"> + <code value="1022"/> + </button> + <button name="Timer"> + <code value="1198"/> + </button> + <button name="VolumeDown"> + <code value="1042"/> + </button> + <button name="ChannelDown"> + <code value="1014"/> + </button> + + <button name="NumPad1"> + <code value="1058"/> + </button> + <button name="NumPad2"> + <code value="1242"/> + </button> + <button name="NumPad3"> + <code value="1050"/> + </button> + <button name="NumPad4"> + <code value="1138"/> + </button> + <button name="NumPad5"> + <code value="1090"/> + </button> + <button name="NumPad6"> + <code value="1170"/> + </button> + <button name="NumPad7"> + <code value="1214"/> + </button> + <button name="NumPad8"> + <code value="1136"/> + </button> + <button name="NumPad9"> + <code value="1160"/> + </button> + <button name="ShiftTab"> + <code value="1096"/> + </button> + <button name="NumPad0"> + <code value="1234"/> + </button> + <button name="Tab"> + <code value="1056"/> + </button> + + <button name="MyVideos"> + <code value="1200"/> + </button> + <!-- TeleText Red !--> + <button name="MyMusic"> + <code value="1082"/> + </button> + <!-- TeleText Green !--> + <button name="MyPictures"> + <code value="1224"/> + </button> + <!-- TeleText Blue !--> + <button name="MyTV"> + <code value="1040"/> + </button> + <!-- TeleText Yellow !--> + <button name="Bookmark"> + <code value="1008"/> + </button> + <button name="Thumbnail"> + <code value="1188"/> + </button> + <button name="AspectRatio"> + <code value="1106"/> + </button> + <button name="FullScreen"> + <code value="1166"/> + </button> + <button name="MyDVD"> + <code value="1102"/> + </button> + <button name="Menu"> + <code value="1230"/> + </button> + <button name="Caption"> + <code value="1074"/> + </button> + <button name="Language"> + <code value="1202"/> + </button> + + <button name="Up"> + <code value="1250"/> + </button> + <button name="Down"> + <code value="1248"/> + </button> + <button name="Left"> + <code value="1246"/> + </button> + <button name="Right"> + <code value="1244"/> + </button> + + </remote> +</remotes> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <an...@us...> - 2008-08-20 07:12:05
|
Revision: 2065 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2065&view=rev Author: and-81 Date: 2008-08-20 07:12:01 +0000 (Wed, 20 Aug 2008) Log Message: ----------- minor updates (Translator Suspend/Resume commands should be working properly now) Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/Translator/Program.cs trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs Modified: trunk/plugins/IR Server Suite/Applications/Translator/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Translator/Program.cs 2008-08-19 17:46:55 UTC (rev 2064) +++ trunk/plugins/IR Server Suite/Applications/Translator/Program.cs 2008-08-20 07:12:01 UTC (rev 2065) @@ -415,11 +415,11 @@ switch (e.Mode) { case PowerModes.Resume: - MapEvent(MappingEvent.PC_Resume); + MapEvent(MappingEvent.PC_Resume, true); break; case PowerModes.Suspend: - MapEvent(MappingEvent.PC_Suspend); + MapEvent(MappingEvent.PC_Suspend, false); break; } } @@ -428,11 +428,11 @@ switch (e.Reason) { case SessionEndReasons.Logoff: - MapEvent(MappingEvent.PC_Logoff); + MapEvent(MappingEvent.PC_Logoff, false); break; case SessionEndReasons.SystemShutdown: - MapEvent(MappingEvent.PC_Shutdown); + MapEvent(MappingEvent.PC_Shutdown, false); break; } } @@ -658,7 +658,7 @@ return; } - MapEvent(MappingEvent.Translator_Quit); + MapEvent(MappingEvent.Translator_Quit, false); Application.Exit(); } @@ -692,7 +692,7 @@ if (_firstConnection) { _firstConnection = false; - MapEvent(MappingEvent.Translator_Start); + MapEvent(MappingEvent.Translator_Start, true); } } static void Disconnected(object obj) @@ -978,7 +978,7 @@ Mouse.Button((Mouse.MouseEvents)buttons); } - static void MapEvent(MappingEvent theEvent) + static void MapEvent(MappingEvent theEvent, bool async) { if (_inConfiguration) return; @@ -1006,7 +1006,7 @@ try { IrssLog.Info("Event mapped: {0}, {1}", eventName, mappedEvent.Command); - ProcessCommand(mappedEvent.Command, true); + ProcessCommand(mappedEvent.Command, async); } catch (Exception ex) { Modified: trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs 2008-08-19 17:46:55 UTC (rev 2064) +++ trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs 2008-08-20 07:12:01 UTC (rev 2065) @@ -483,6 +483,7 @@ #region Suspend case PowerBroadcastStatus.Suspend: + // TODO: if anyone has any trouble with on-suspend commands then try changing this to QuerySuspend. IrssLog.Info("Entering standby ..."); bool suspendedTransmit = false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <an...@us...> - 2008-11-02 07:25:07
|
Revision: 2283 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2283&view=rev Author: and-81 Date: 2008-11-02 07:25:00 +0000 (Sun, 02 Nov 2008) Log Message: ----------- Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/Abstractor/MainForm.cs trunk/plugins/IR Server Suite/Applications/Abstractor/Program.cs trunk/plugins/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Program.cs trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Dbox Tuner/SetupForm.cs trunk/plugins/IR Server Suite/Applications/Debug Client/MainForm.cs trunk/plugins/IR Server Suite/Applications/Debug Client/Program.cs trunk/plugins/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/Program.cs trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/IR Blast/Program.cs trunk/plugins/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/Program.cs trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/FormMain.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/IrCode.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/IrDecoder.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/MceDetectionData.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/Program.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/Pronto.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/IR File Tool/RemoteDetectionData.cs trunk/plugins/IR Server Suite/Applications/IR Server/Advanced.cs trunk/plugins/IR Server Suite/Applications/IR Server/Config.cs trunk/plugins/IR Server Suite/Applications/IR Server/Exclusions.cs trunk/plugins/IR Server Suite/Applications/IR Server/IRServer.cs trunk/plugins/IR Server Suite/Applications/IR Server/Program.cs trunk/plugins/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Program.cs trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/SageSetup/FormMain.cs trunk/plugins/IR Server Suite/Applications/SageSetup/Program.cs trunk/plugins/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Translator/AppProfile.cs trunk/plugins/IR Server Suite/Applications/Translator/ButtonMapping.cs trunk/plugins/IR Server Suite/Applications/Translator/Configuration.cs trunk/plugins/IR Server Suite/Applications/Translator/CopyDataWM.cs trunk/plugins/IR Server Suite/Applications/Translator/EventSchedule.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/Advanced.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/ButtonMappingForm.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/EditProgramForm.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/GetKeyCodeForm.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/MainForm.cs trunk/plugins/IR Server Suite/Applications/Translator/Forms/MenuForm.cs trunk/plugins/IR Server Suite/Applications/Translator/MappedEvent.cs trunk/plugins/IR Server Suite/Applications/Translator/Program.cs trunk/plugins/IR Server Suite/Applications/Translator/ProgramSettings.cs trunk/plugins/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Translator/Translator.csproj trunk/plugins/IR Server Suite/Applications/Tray Launcher/GetKeyCodeForm.cs trunk/plugins/IR Server Suite/Applications/Tray Launcher/Program.cs trunk/plugins/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Tray Launcher/Setup.cs trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote/MainForm.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote/Program.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote/RemoteButton.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Client.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/FormMain.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/IrssMessage.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Program.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/ServerAddress.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Client.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/FormMain.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/IrssMessage.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/ServerAddress.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/Client.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/FormMain.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/IrssMessage.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/Program.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote Skin Editor/Program.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Web Remote/Program.cs trunk/plugins/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Web Remote/RemoteButton.cs trunk/plugins/IR Server Suite/Applications/Web Remote/Setup.cs trunk/plugins/IR Server Suite/Applications/Web Remote/WebServer.cs trunk/plugins/IR Server Suite/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Commands/Command/Command.cs trunk/plugins/IR Server Suite/Commands/Command/CommandExecutionException.cs trunk/plugins/IR Server Suite/Commands/Command/CommandStructureException.cs trunk/plugins/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Control Statements/CommandAbortMacro.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Control Statements/CommandGotoLabel.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Control Statements/CommandIf.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Control Statements/CommandLabel.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Control Statements/CommandSwitch.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Exceptions/MacroExecutionException.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Exceptions/MacroStructureException.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditAbortMessage.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditBlastIR.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditIf.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditLabel.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditMacro.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditMathsOperation.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditSetVariable.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditStackFile.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditStringOperation.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditSwapVariables.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditSwitch.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Forms/EditVariablesFile.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Macro.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsAbsolute.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsAdd.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsDivide.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsModulo.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsMultiply.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsPower.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsSquareRoot.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Maths Operations/CommandMathsSubtract.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Processor.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Special Commands/CommandBlastIR.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Special Commands/CommandCallMacro.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandClearStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandLoadStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandPeekStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandPopStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandPushStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Stack Commands/CommandSaveStack.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/String Operations/CommandStringJoin.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/String Operations/CommandStringToLower.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/String Operations/CommandStringToUpper.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/String Operations/CommandStringTrim.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Variable Commands/CommandClearVariables.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Variable Commands/CommandLoadVariables.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Variable Commands/CommandSaveVariables.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Variable Commands/CommandSetVariable.cs trunk/plugins/IR Server Suite/Commands/CommandProcessor/Variable Commands/CommandSwapVariables.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandHibernate.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandKeystrokes.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandLogOff.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandPause.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandPopup.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandReboot.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandRun.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandSendWOL.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandShutdown.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/CommandStandBy.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Forms/EditKeystrokes.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Forms/EditPause.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Forms/EditPopup.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Forms/EditSendWOL.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Forms/PopupMessage.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/GeneralCommands/Win32.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandExit.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandGetFocus.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandGotoScreen.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandHibernate.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandPopup.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandReboot.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandSendAction.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandSendMessage.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandShutdown.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/CommandStandBy.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Common.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Forms/EditGotoScreen.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Forms/EditPopup.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Forms/EditSendAction.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Forms/EditSendMessage.cs trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/TestApp/Program.cs trunk/plugins/IR Server Suite/Commands/TestApp/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Commands/VariableList/VariableList.cs trunk/plugins/IR Server Suite/Common/IrssComms/Client.cs trunk/plugins/IR Server Suite/Common/IrssComms/ClientManager.cs trunk/plugins/IR Server Suite/Common/IrssComms/GenericPCQueue.cs trunk/plugins/IR Server Suite/Common/IrssComms/IrssMessage.cs trunk/plugins/IR Server Suite/Common/IrssComms/MessageManagerCombo.cs trunk/plugins/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Common/IrssComms/Server.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Audio.cs trunk/plugins/IR Server Suite/Common/IrssUtils/CDRom.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Common.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Display.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Exceptions/CommandExecutionException.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Exceptions/CommandStructureException.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Exceptions/MacroStructureException.cs trunk/plugins/IR Server Suite/Common/IrssUtils/FocusForcer.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/BeepCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/BlastCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/CloseProgramCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/DisplayModeCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/DisplayPowerCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/EjectCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/ExternalProgram.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/HttpMessageCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/IfCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/KeysCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/LabelNameDialog.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/LearnIR.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/MessageCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/MouseCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/PauseTime.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/PopupMessage.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/SerialCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/ServerAddress.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/SetVariableCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/ShowPopupMessage.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/SmsKeyboard.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/TcpMessageCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/VariablesFileDialog.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/VirtualKeyboard.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/WindowCommand.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Forms/WindowList.cs trunk/plugins/IR Server Suite/Common/IrssUtils/IRServerInfo.cs trunk/plugins/IR Server Suite/Common/IrssUtils/IrssLog.cs trunk/plugins/IR Server Suite/Common/IrssUtils/IrssMacro.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Keyboard.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Mouse.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Network.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Common/IrssUtils/SystemRegistry.cs trunk/plugins/IR Server Suite/Common/IrssUtils/VariableList.cs trunk/plugins/IR Server Suite/Common/IrssUtils/Win32.cs trunk/plugins/IR Server Suite/Common/IrssUtils/XML.cs trunk/plugins/IR Server Suite/Common/MPUtils/ExternalChannelConfig.cs trunk/plugins/IR Server Suite/Common/MPUtils/Forms/GoToScreen.cs trunk/plugins/IR Server Suite/Common/MPUtils/Forms/MPAction.cs trunk/plugins/IR Server Suite/Common/MPUtils/Forms/MPMessage.cs trunk/plugins/IR Server Suite/Common/MPUtils/MPCommon.cs trunk/plugins/IR Server Suite/Common/MPUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Common/ShellLink/AssemblyInfo.cs trunk/plugins/IR Server Suite/Common/ShellLink/ShellLinkNative.cs trunk/plugins/IR Server Suite/Common/ShellLink/ShellShortcut.cs trunk/plugins/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommandReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/CoolCommand Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/AdvancedSettings.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/DeviceSelect.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/RawInput.cs trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/Direct Input Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputListener.cs trunk/plugins/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Girder Plugin/Config.cs trunk/plugins/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.cs trunk/plugins/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.cs trunk/plugins/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/IrRemoteWrapper.cs trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IConfigure.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IKeyboardReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/ILearnIR.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IMouseReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/ITransmitIR.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/PluginBase.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR507 Receiver/RawInput.cs trunk/plugins/IR Server Suite/IR Server Plugins/IR507 Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRMan Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRTrans Transceiver/CSocketPacket.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/MceDetectionData.cs trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/RemoteDetectionData.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/RawInput.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.cs trunk/plugins/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DeviceIoOverlapped.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Driver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverReplacement.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverVista.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/DriverXP.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrCode.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MceDetectionData.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/NotifyWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Pronto.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/RemoteDetectionData.cs trunk/plugins/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/RedEye Blaster/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs trunk/plugins/IR Server Suite/IR Server Plugins/Serial IR Blaster/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.cs trunk/plugins/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Setup.cs trunk/plugins/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/DataTypes.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/Events.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/HIDImports.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/Wiimote.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/CreateIRFile.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/SocketInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLircCommand.cs trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLircServer.cs trunk/plugins/IR Server Suite/IR Server Plugins/Windows Message Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Windows Message Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs trunk/plugins/IR Server Suite/Input Service/Input Service/Abstract Remote Maps/iMon/Imon PAD.xml trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs trunk/plugins/IR Server Suite/Input Service/Input Service/InputServiceInstaller.cs trunk/plugins/IR Server Suite/Input Service/Input Service/Program.cs trunk/plugins/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Advanced.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Config.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Exclusions.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Program.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/Menu.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/Forms/MultiMapNameBox.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedEvent.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/Forms/StbSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/StbSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs trunk/plugins/IR Server Suite/setup/setup.nsi Modified: trunk/plugins/IR Server Suite/Applications/Abstractor/MainForm.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Abstractor/MainForm.cs 2008-10-31 17:15:23 UTC (rev 2282) +++ trunk/plugins/IR Server Suite/Applications/Abstractor/MainForm.cs 2008-11-02 07:25:00 UTC (rev 2283) @@ -1,31 +1,21 @@ using System; -using System.Collections; using System.Collections.Generic; -using System.ComponentModel; using System.Data; -using System.Diagnostics; -using System.Drawing; using System.IO; using System.Net; -using System.Net.Sockets; -using System.Runtime.InteropServices; -using System.Security; using System.Text; using System.Threading; using System.Windows.Forms; - using IrssComms; using IrssUtils; namespace Abstractor { - /// <summary> /// Main Form. /// </summary> - partial class MainForm : Form + internal partial class MainForm : Form { - #region Constants /* @@ -103,9 +93,12 @@ "Page Down" };*/ - static readonly string AbstractRemoteMapFolder = Path.Combine(Common.FolderAppData, "Input Service\\Abstract Remote Maps"); - static readonly string AbstractRemoteSchemaFile = Path.Combine(Common.FolderAppData, "Input Service\\Abstract Remote Maps\\RemoteTable.xsd"); + private static readonly string AbstractRemoteMapFolder = Path.Combine(Common.FolderAppData, + "Input Service\\Abstract Remote Maps"); + private static readonly string AbstractRemoteSchemaFile = Path.Combine(Common.FolderAppData, + "Input Service\\Abstract Remote Maps\\RemoteTable.xsd"); + #endregion Constants #region Enumerations @@ -183,29 +176,27 @@ PageUp, PageDown, PictureInPicture, - } #endregion Enumerations #region Variables - Client _client; + private Client _client; - string _serverHost = "localhost"; - - bool _registered; - //IRServerInfo _irServerInfo = new IRServerInfo(); - string[] _devices; - string _selectedDevice; + private string[] _devices; + private bool _registered; + private string _selectedDevice; + private string _serverHost = "localhost"; #endregion Variables - delegate void DelegateAddStatusLine(string status); - DelegateAddStatusLine _addStatusLine; - void AddStatusLine(string status) + private DelegateAddStatusLine _addStatusLine; + private DelegateSetDevices _setDevices; + + private void AddStatusLine(string status) { IrssLog.Info(status); @@ -214,10 +205,7 @@ listBoxStatus.SetSelected(listBoxStatus.Items.Count - 1, true); } - - delegate void DelegateSetDevices(string[] devices); - DelegateSetDevices _setDevices; - void SetDevices(string[] devices) + private void SetDevices(string[] devices) { _devices = devices; @@ -229,66 +217,6 @@ textBoxRemoteName.Text = devices[0]; } - #region Constructor - - public MainForm() - { - IrssLog.LogLevel = IrssLog.Level.Debug; - IrssLog.Open("Abstractor.log"); - - InitializeComponent(); - - _addStatusLine = new DelegateAddStatusLine(AddStatusLine); - _setDevices = new DelegateSetDevices(SetDevices); - - comboBoxComputer.Items.Clear(); - comboBoxComputer.Items.Add("localhost"); - - List<string> networkPCs = Network.GetComputers(false); - if (networkPCs != null) - comboBoxComputer.Items.AddRange(networkPCs.ToArray()); - - comboBoxComputer.Text = _serverHost; - - ClearMap(); - /* - DataTable table = new DataTable("RemoteTable"); - - DataColumn column; - - column = new DataColumn("RawCode", typeof(string)); - column.Caption = "Raw Code"; - column.ColumnMapping = MappingType.Attribute; - column.DefaultValue = String.Empty; - column.ReadOnly = false; - column.Unique = true; - table.Columns.Add(column); - - column = new DataColumn("AbstractButton", typeof(string)); - column.Caption = "Abstract Button"; - column.ColumnMapping = MappingType.Attribute; - column.DefaultValue = String.Empty; - column.ReadOnly = false; - column.Unique = false; - table.Columns.Add(column); - - string[] names = Enum.GetNames(typeof(MceButton)); - foreach (string name in names) - { - int button = (int)Enum.Parse(typeof(MceButton), name); - - table.Rows.Add(button.ToString(), name); - } - - //table.WriteXmlSchema(AbstractRemoteSchemaFile); - - table.WriteXml("Template.xml"); - */ - } - - #endregion Constructor - - private void MainForm_FormClosing(object sender, FormClosingEventArgs e) { buttonDisconnect_Click(null, null); @@ -300,9 +228,9 @@ } - void ReceivedMessage(IrssMessage received) + private void ReceivedMessage(IrssMessage received) { - this.Invoke(_addStatusLine, new Object[] { String.Format("Received Message: \"{0}, {1}\"", received.Type, received.Flags) }); + Invoke(_addStatusLine, String.Format("Received Message: \"{0}, {1}\"", received.Type, received.Flags)); try { @@ -324,15 +252,16 @@ return; case MessageType.ActiveBlasters: - this.Invoke(_addStatusLine, new Object[] { received.GetDataAsString() }); + Invoke(_addStatusLine, received.GetDataAsString()); break; case MessageType.ActiveReceivers: - this.Invoke(_addStatusLine, new Object[] { received.GetDataAsString() }); + Invoke(_addStatusLine, received.GetDataAsString()); - string[] receivers = received.GetDataAsString().Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); + string[] receivers = received.GetDataAsString().Split(new char[] {','}, + StringSplitOptions.RemoveEmptyEntries); - this.Invoke(_setDevices, new object[] { receivers }); + Invoke(_setDevices, receivers); break; case MessageType.RemoteEvent: @@ -350,20 +279,20 @@ return; case MessageType.Error: - this.Invoke(_addStatusLine, new Object[] { received.GetDataAsString() }); + Invoke(_addStatusLine, received.GetDataAsString()); return; } } catch (Exception ex) { - this.Invoke(_addStatusLine, new Object[] { ex.Message }); + Invoke(_addStatusLine, ex.Message); } } - void RemoteHandlerCallback(string deviceName, string keyCode) + private void RemoteHandlerCallback(string deviceName, string keyCode) { string text = String.Format("Remote Event \"{0}\", \"{1}\"", deviceName, keyCode); - this.Invoke(_addStatusLine, text); + Invoke(_addStatusLine, text); bool foundDevice = false; foreach (string device in _devices) @@ -379,7 +308,7 @@ { List<string> newDevices = new List<string>(_devices); newDevices.Add(deviceName); - this.Invoke(_setDevices, new object[] { newDevices.ToArray() }); + Invoke(_setDevices, new object[] {newDevices.ToArray()}); } // If this remote event matches the criteria then set it to an abstract button in the list view ... @@ -409,43 +338,43 @@ } } - void CommsFailure(object obj) + private void CommsFailure(object obj) { Exception ex = obj as Exception; - + if (ex != null) - this.Invoke(_addStatusLine, new Object[] { String.Format("Communications failure: {0}", ex.Message) }); + Invoke(_addStatusLine, new Object[] {String.Format("Communications failure: {0}", ex.Message)}); else - this.Invoke(_addStatusLine, new Object[] { "Communications failure" }); + Invoke(_addStatusLine, new Object[] {"Communications failure"}); StopClient(); } - void Connected(object obj) + + private void Connected(object obj) { IrssLog.Info("Connected to server"); IrssMessage message = new IrssMessage(MessageType.RegisterClient, MessageFlags.Request); _client.Send(message); } - void Disconnected(object obj) + + private void Disconnected(object obj) { IrssLog.Warn("Communications with server has been lost"); Thread.Sleep(1000); } - bool StartClient(IPEndPoint endPoint) + private bool StartClient(IPEndPoint endPoint) { if (_client != null) return false; - ClientMessageSink sink = new ClientMessageSink(ReceivedMessage); + _client = new Client(endPoint, ReceivedMessage); + _client.CommsFailureCallback = CommsFailure; + _client.ConnectCallback = Connected; + _client.DisconnectCallback = Disconnected; - _client = new Client(endPoint, sink); - _client.CommsFailureCallback = new WaitCallback(CommsFailure); - _client.ConnectCallback = new WaitCallback(Connected); - _client.DisconnectCallback = new WaitCallback(Disconnected); - if (_client.Start()) { return true; @@ -456,7 +385,8 @@ return false; } } - void StopClient() + + private void StopClient() { if (_client == null) return; @@ -481,7 +411,7 @@ _serverHost = comboBoxComputer.Text; IPAddress serverIP = Client.GetIPFromName(_serverHost); - IPEndPoint endPoint = new IPEndPoint(serverIP, IrssComms.Server.DefaultPort); + IPEndPoint endPoint = new IPEndPoint(serverIP, Server.DefaultPort); StartClient(endPoint); } @@ -490,6 +420,7 @@ AddStatusLine(ex.Message); } } + private void buttonDisconnect_Click(object sender, EventArgs e) { AddStatusLine("Disconnect"); @@ -520,29 +451,33 @@ { ClearMap(); } + private void buttonLoad_Click(object sender, EventArgs e) { LoadMap(); } + private void buttonSave_Click(object sender, EventArgs e) { SaveMap(); } - void ClearMap() + private void ClearMap() { - string[] abstractButtons = Enum.GetNames(typeof(AbstractButton)); - + string[] abstractButtons = Enum.GetNames(typeof (AbstractButton)); + listViewButtonMap.Items.Clear(); foreach (string abstractButton in abstractButtons) - listViewButtonMap.Items.Add(new ListViewItem(new string[] { abstractButton, String.Empty })); + listViewButtonMap.Items.Add(new ListViewItem(new string[] {abstractButton, String.Empty})); } - void SaveMap() + + private void SaveMap() { if (String.IsNullOrEmpty(textBoxRemoteName.Text)) { - MessageBox.Show(this, "You must include a remote name before saving", "Missing remote name", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(this, "You must include a remote name before saving", "Missing remote name", + MessageBoxButtons.OK, MessageBoxIcon.Error); return; } @@ -554,7 +489,7 @@ string fileName = Path.ChangeExtension(textBoxRemoteName.Text, ".xml"); string path = Path.Combine(directory, fileName); - this.Invoke(_addStatusLine, String.Format("Writing to file \"{0}\"", path)); + Invoke(_addStatusLine, String.Format("Writing to file \"{0}\"", path)); DataTable table = new DataTable("RemoteTable"); table.ReadXmlSchema(AbstractRemoteSchemaFile); @@ -567,11 +502,13 @@ table.WriteXml(path); } - void LoadMap() + + private void LoadMap() { if (String.IsNullOrEmpty(textBoxRemoteName.Text)) { - MessageBox.Show(this, "You must include a remote name to load", "Missing remote name", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(this, "You must include a remote name to load", "Missing remote name", MessageBoxButtons.OK, + MessageBoxIcon.Error); return; } @@ -581,22 +518,24 @@ if (!File.Exists(path)) { - MessageBox.Show(this, String.Format("Remote file not found ({0}) in device folder ({1})", fileName, _selectedDevice), "Remote file not found", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(this, + String.Format("Remote file not found ({0}) in device folder ({1})", fileName, _selectedDevice), + "Remote file not found", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } - this.Invoke(_addStatusLine, String.Format("Reading remote from file \"{0}\" (device: {1})", fileName, _selectedDevice)); + Invoke(_addStatusLine, String.Format("Reading remote from file \"{0}\" (device: {1})", fileName, _selectedDevice)); DataTable table = new DataTable("RemoteTable"); table.ReadXmlSchema(AbstractRemoteSchemaFile); table.ReadXml(path); - string[] abstractButtons = Enum.GetNames(typeof(AbstractButton)); + string[] abstractButtons = Enum.GetNames(typeof (AbstractButton)); listViewButtonMap.Items.Clear(); foreach (string abstractButton in abstractButtons) { - string[] subitems = new string[] { abstractButton, String.Empty }; + string[] subitems = new string[] {abstractButton, String.Empty}; DataRow[] rows = table.Select(String.Format("AbstractButton = '{0}'", abstractButton)); @@ -624,7 +563,75 @@ _selectedDevice = comboBoxDevice.Text; } + #region Constructor + public MainForm() + { + IrssLog.LogLevel = IrssLog.Level.Debug; + IrssLog.Open("Abstractor.log"); + + InitializeComponent(); + + _addStatusLine = AddStatusLine; + _setDevices = SetDevices; + + comboBoxComputer.Items.Clear(); + comboBoxComputer.Items.Add("localhost"); + + List<string> networkPCs = Network.GetComputers(false); + if (networkPCs != null) + comboBoxComputer.Items.AddRange(networkPCs.ToArray()); + + comboBoxComputer.Text = _serverHost; + + ClearMap(); + /* + DataTable table = new DataTable("RemoteTable"); + + DataColumn column; + + column = new DataColumn("RawCode", typeof(string)); + column.Caption = "Raw Code"; + column.ColumnMapping = MappingType.Attribute; + column.DefaultValue = String.Empty; + column.ReadOnly = false; + column.Unique = true; + table.Columns.Add(column); + + column = new DataColumn("AbstractButton", typeof(string)); + column.Caption = "Abstract Button"; + column.ColumnMapping = MappingType.Attribute; + column.DefaultValue = String.Empty; + column.ReadOnly = false; + column.Unique = false; + table.Columns.Add(column); + + string[] names = Enum.GetNames(typeof(MceButton)); + foreach (string name in names) + { + int button = (int)Enum.Parse(typeof(MceButton), name); + + table.Rows.Add(button.ToString(), name); + } + + //table.WriteXmlSchema(AbstractRemoteSchemaFile); + + table.WriteXml("Template.xml"); + */ + } + + #endregion Constructor + + #region Nested type: DelegateAddStatusLine + + private delegate void DelegateAddStatusLine(string status); + + #endregion + + #region Nested type: DelegateSetDevices + + private delegate void DelegateSetDevices(string[] devices); + + #endregion } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Abstractor/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Abstractor/Program.cs 2008-10-31 17:15:23 UTC (rev 2282) +++ trunk/plugins/IR Server Suite/Applications/Abstractor/Program.cs 2008-11-02 07:25:00 UTC (rev 2283) @@ -1,24 +1,19 @@ using System; -using System.Collections.Generic; using System.Windows.Forms; namespace Abstractor { - - static class Program + internal static class Program { - /// <summary> /// The main entry point for the application. /// </summary> [STAThread] - static void Main() + private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2008-10-31 17:15:23 UTC (rev 2282) +++ trunk/plugins/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2008-11-02 07:25:00 UTC (rev 2283) @@ -1,12 +1,12 @@ using System; using System.Reflection; -using System.Runtime.CompilerServices; +using System.Resources; using System.Runtime.InteropServices; -using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. + [assembly: AssemblyTitle("Abstractor")] [assembly: AssemblyDescription("Abstract Remote Map Creator")] [assembly: AssemblyConfiguration("")] @@ -19,9 +19,11 @@ // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. + [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM + [assembly: Guid("4d23d334-3b85-4d33-85a2-0071812ce053")] // Version information for an assembly consists of the following four values: @@ -31,8 +33,8 @@ // Build Number // Revision // + [assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.2.0")] - [assembly: CLSCompliant(true)] -[assembly: NeutralResourcesLanguageAttribute("en")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Program.cs 2008-10-31 17:15:23 UTC (rev 2282) +++ trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Program.cs 2008-11-02 07:25:00 UTC (rev 2283) @@ -4,10 +4,8 @@ using System.IO; using System.Net; using System.Text; -using System.Threading; using System.Windows.Forms; using System.Xml; - using IrssUtils; namespace DboxTuner @@ -28,28 +26,27 @@ /// <summary> /// Based on MyDbox MediaPortal plugin by Mark Koenig (kroko). /// </summary> - static class Program + internal static class Program { - #region Constants internal const string UrlPrefix = "http://"; internal static readonly string ConfigurationFile = Path.Combine(Common.FolderAppData, "Dbox Tuner\\Dbox Tuner.xml"); - internal static readonly string DataFile = Path.Combine(Common.FolderAppData, "Dbox Tuner\\Data.xml"); + internal static readonly string DataFile = Path.Combine(Common.FolderAppData, "Dbox Tuner\\Data.xml"); #endregion Constants #region Variables - static string _address; - static string _userName; - static string _password; - static StbBoxType _boxType; - static int _timeout; + private static string _address; + private static StbBoxType _boxType; + private static string _password; + private static int _timeout; - static string _url; - static DataTable _tvBouquets; + private static DataTable _tvBouquets; + private static string _url; + private static string _userName; #endregion Variables @@ -58,7 +55,7 @@ /// </summary> /// <param name="args">The command line parameters.</param> [STAThread] - static void Main(string[] args) + private static void Main(string[] args) { Console.WriteLine("Dbox Tuner"); Console.WriteLine(); @@ -74,7 +71,7 @@ IrssLog.Append("Dbox Tuner.log"); LoadSettings(); - + if (args.Length == 0) { Console.WriteLine("Usage:"); @@ -99,19 +96,19 @@ { case "SETUP": SetupForm setup = new SetupForm(); - setup.Address = _address; + setup.Address = _address; setup.UserName = _userName; setup.Password = _password; - setup.BoxType = _boxType; - setup.Timeout = _timeout; + setup.BoxType = _boxType; + setup.Timeout = _timeout; if (setup.ShowDialog() == DialogResult.OK) { - _address = setup.Address; + _address = setup.Address; _userName = setup.UserName; _password = setup.Password; - _boxType = setup.BoxType; - _timeout = setup.Timeout; + _boxType = setup.BoxType; + _timeout = setup.Timeout; SaveSettings(); Info("Setup saved"); @@ -204,25 +201,25 @@ IrssLog.Close(); } - static void Info(string format, params object[] args) + private static void Info(string format, params object[] args) { string message = String.Format(format, args); IrssLog.Info(message); Console.WriteLine(message); } - static void LoadSettings() + private static void LoadSettings() { try { XmlDocument doc = new XmlDocument(); doc.Load(ConfigurationFile); - _address = doc.DocumentElement.Attributes["Address"].Value; + _address = doc.DocumentElement.Attributes["Address"].Value; _userName = doc.DocumentElement.Attributes["UserName"].Value; _password = doc.DocumentElement.Attributes["Password"].Value; - _boxType = (StbBoxType)Enum.Parse(typeof(StbBoxType), doc.DocumentElement.Attributes["BoxType"].Value, true); - _timeout = int.Parse(doc.DocumentElement.Attributes["Timeout"].Value); + _boxType = (StbBoxType) Enum.Parse(typeof (StbBoxType), doc.DocumentElement.Attributes["BoxType"].Value, true); + _timeout = int.Parse(doc.DocumentElement.Attributes["Timeout"].Value); } catch (FileNotFoundException) { @@ -237,7 +234,8 @@ CreateDefaultSettings(); } } - static void SaveSettings() + + private static void SaveSettings() { try { @@ -245,14 +243,14 @@ { writer.Formatting = Formatting.Indented; writer.Indentation = 1; - writer.IndentChar = (char)9; + writer.IndentChar = (char) 9; writer.WriteStartDocument(true); writer.WriteStartElement("settings"); // <settings> writer.WriteAttributeString("Address", _address); writer.WriteAttributeString("UserName", _userName); writer.WriteAttributeString("Password", _password); - writer.WriteAttributeString("BoxType", Enum.GetName(typeof(StbBoxType), _boxType)); + writer.WriteAttributeString("BoxType", Enum.GetName(typeof (StbBoxType), _boxType)); writer.WriteAttributeString("Timeout", _timeout.ToString()); writer.WriteEndElement(); // </settings> @@ -264,18 +262,20 @@ IrssLog.Error(ex); } } - static void CreateDefaultSettings() + + private static void CreateDefaultSettings() { - _address = "192.168.0.100"; + _address = "192.168.0.100"; _userName = "root"; _password = "dbox2"; - _boxType = StbBoxType.Unknown; - _timeout = 4000; + _boxType = StbBoxType.Unknown; + _timeout = 4000; SaveSettings(); } - internal static string PostData(string url, string userName, string password, StbBoxType boxType, int timeout, string command) + internal static string PostData(string url, string userName, string password, StbBoxType boxType, int timeout, + string command) { try { @@ -292,9 +292,9 @@ encode = Encoding.GetEncoding("utf-8"); using (WebResponse response = request.GetResponse()) - using (Stream receiveStream = response.GetResponseStream()) - using (StreamReader reader = new StreamReader(receiveStream, encode)) - return reader.ReadToEnd(); + using (Stream receiveStream = response.GetResponseStream()) + using (StreamReader reader = new StreamReader(receiveStream, encode)) + return reader.ReadToEnd(); } catch (Exception ex) { @@ -307,10 +307,10 @@ internal static DataSet GetData(string url, string userName, string password, StbBoxType boxType, int timeout) { DataSet ds = new DataSet(); - + string command; string temp; - + string sreturn = String.Empty; #region Get data from STB @@ -319,10 +319,13 @@ { case StbBoxType.EnigmaV1: // get userbouquets (ref=4097:7:0:6:0:0:0:0:0:0:) - sreturn = PostData(url, userName, password, boxType, timeout, "/cgi-bin/getServices?ref=4097:7:0:6:0:0:0:0:0:0:"); + sreturn = PostData(url, userName, password, boxType, timeout, + "/cgi-bin/getServices?ref=4097:7:0:6:0:0:0:0:0:0:"); // get internal hdd recording - if (!PostData(url, userName, password, boxType, timeout, "/cgi-bin/getServices?ref=2:47:0:0:0:0:0:0:0:0:/var/media/movie/").Contains("E: ")) + if ( + !PostData(url, userName, password, boxType, timeout, + "/cgi-bin/getServices?ref=2:47:0:0:0:0:0:0:0:0:/var/media/movie/").Contains("E: ")) sreturn += "2:47:0:0:0:0:0:0:0:0:/var/media/movie/;Recordings\n"; // replace neutrino split character with ; @@ -334,10 +337,11 @@ break; case StbBoxType.EnigmaV2: - string serviceID = String.Empty; - string serviceName = String.Empty; + string serviceID = String.Empty; + string serviceName = String.Empty; - string returnedXml = PostData(url, userName, password, boxType, timeout, "/web/fetchchannels?ServiceListBrowse=1:7:1:0:0:0:0:0:0:0:(type == 1) FROM BOUQUET \"bouquets.tv\" ORDER BY bouquet"); + string returnedXml = PostData(url, userName, password, boxType, timeout, + "/web/fetchchannels?ServiceListBrowse=1:7:1:0:0:0:0:0:0:0:(type == 1) FROM BOUQUET \"bouquets.tv\" ORDER BY bouquet"); // xmlbased, return all userbouquets XmlDocument doc = new XmlDocument(); @@ -461,11 +465,13 @@ // which => one webrequest for each channel in every bouquet if (boxType == StbBoxType.EnigmaV1 || boxType == StbBoxType.EnigmaV2) { - string chan_id = bouquets.Split(';')[0]; // eg. 1:0:1:6D67:437:1:C00000:0:0:0: - ... [truncated message content] |
From: <an...@us...> - 2008-11-08 01:37:50
|
Revision: 2313 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2313&view=rev Author: and-81 Date: 2008-11-08 01:34:04 +0000 (Sat, 08 Nov 2008) Log Message: ----------- Modified Paths: -------------- trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.Designer.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj trunk/plugins/IR Server Suite/setup/setup-CommonMPMacros.nsh Modified: trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2008-11-07 22:09:41 UTC (rev 2312) +++ trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2008-11-08 01:34:04 UTC (rev 2313) @@ -40,13 +40,13 @@ </PropertyGroup> <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\Core.DLL</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> <SpecificVersion>False</SpecificVersion> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -56,7 +56,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.Designer.cs 2008-11-07 22:09:41 UTC (rev 2312) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.Designer.cs 2008-11-08 01:34:04 UTC (rev 2313) @@ -30,491 +30,493 @@ /// </summary> private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.labelButtonRepeatDelay = new System.Windows.Forms.Label(); - this.labelButtonHeldDelay = new System.Windows.Forms.Label(); - this.numericUpDownButtonRepeatDelay = new System.Windows.Forms.NumericUpDown(); - this.numericUpDownButtonHeldDelay = new System.Windows.Forms.NumericUpDown(); - this.buttonOK = new System.Windows.Forms.Button(); - this.buttonCancel = new System.Windows.Forms.Button(); - this.groupBoxRemoteTiming = new System.Windows.Forms.GroupBox(); - this.toolTips = new System.Windows.Forms.ToolTip(this.components); - this.numericUpDownKeyHeldDelay = new System.Windows.Forms.NumericUpDown(); - this.numericUpDownKeyRepeatDelay = new System.Windows.Forms.NumericUpDown(); - this.checkBoxHandleKeyboardLocal = new System.Windows.Forms.CheckBox(); - this.checkBoxHandleMouseLocal = new System.Windows.Forms.CheckBox(); - this.numericUpDownMouseSensitivity = new System.Windows.Forms.NumericUpDown(); - this.checkBoxEnableRemote = new System.Windows.Forms.CheckBox(); - this.checkBoxEnableKeyboard = new System.Windows.Forms.CheckBox(); - this.checkBoxEnableMouse = new System.Windows.Forms.CheckBox(); - this.checkBoxUseSystemRatesRemote = new System.Windows.Forms.CheckBox(); - this.checkBoxUseSystemRatesKeyboard = new System.Windows.Forms.CheckBox(); - this.comboBoxHardwareMode = new System.Windows.Forms.ComboBox(); - this.tabControl = new System.Windows.Forms.TabControl(); - this.tabPageRemote = new System.Windows.Forms.TabPage(); - this.labelHardwareMode = new System.Windows.Forms.Label(); - this.tabPageKeyboard = new System.Windows.Forms.TabPage(); - this.groupBoxKeypressTiming = new System.Windows.Forms.GroupBox(); - this.labelKeyRepeatDelay = new System.Windows.Forms.Label(); - this.labelKeyHeldDelay = new System.Windows.Forms.Label(); - this.tabPageMouse = new System.Windows.Forms.TabPage(); - this.labelMouseSensitivity = new System.Windows.Forms.Label(); - this.comboBoxRemoteMode = new System.Windows.Forms.ComboBox(); - this.labelRemoteMode = new System.Windows.Forms.Label(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonRepeatDelay)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonHeldDelay)).BeginInit(); - this.groupBoxRemoteTiming.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyHeldDelay)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyRepeatDelay)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMouseSensitivity)).BeginInit(); - this.tabControl.SuspendLayout(); - this.tabPageRemote.SuspendLayout(); - this.tabPageKeyboard.SuspendLayout(); - this.groupBoxKeypressTiming.SuspendLayout(); - this.tabPageMouse.SuspendLayout(); - this.SuspendLayout(); - // - // labelButtonRepeatDelay - // - this.labelButtonRepeatDelay.Location = new System.Drawing.Point(8, 24); - this.labelButtonRepeatDelay.Name = "labelButtonRepeatDelay"; - this.labelButtonRepeatDelay.Size = new System.Drawing.Size(128, 20); - this.labelButtonRepeatDelay.TabIndex = 0; - this.labelButtonRepeatDelay.Text = "Button repeat delay:"; - this.labelButtonRepeatDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // labelButtonHeldDelay - // - this.labelButtonHeldDelay.Location = new System.Drawing.Point(8, 56); - this.labelButtonHeldDelay.Name = "labelButtonHeldDelay"; - this.labelButtonHeldDelay.Size = new System.Drawing.Size(128, 20); - this.labelButtonHeldDelay.TabIndex = 2; - this.labelButtonHeldDelay.Text = "Button held delay:"; - this.labelButtonHeldDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // numericUpDownButtonRepeatDelay - // - this.numericUpDownButtonRepeatDelay.Increment = new decimal(new int[] { + this.components = new System.ComponentModel.Container(); + this.labelButtonRepeatDelay = new System.Windows.Forms.Label(); + this.labelButtonHeldDelay = new System.Windows.Forms.Label(); + this.numericUpDownButtonRepeatDelay = new System.Windows.Forms.NumericUpDown(); + this.numericUpDownButtonHeldDelay = new System.Windows.Forms.NumericUpDown(); + this.buttonOK = new System.Windows.Forms.Button(); + this.buttonCancel = new System.Windows.Forms.Button(); + this.groupBoxRemoteTiming = new System.Windows.Forms.GroupBox(); + this.toolTips = new System.Windows.Forms.ToolTip(this.components); + this.numericUpDownKeyHeldDelay = new System.Windows.Forms.NumericUpDown(); + this.numericUpDownKeyRepeatDelay = new System.Windows.Forms.NumericUpDown(); + this.checkBoxHandleKeyboardLocal = new System.Windows.Forms.CheckBox(); + this.checkBoxHandleMouseLocal = new System.Windows.Forms.CheckBox(); + this.numericUpDownMouseSensitivity = new System.Windows.Forms.NumericUpDown(); + this.checkBoxEnableRemote = new System.Windows.Forms.CheckBox(); + this.checkBoxEnableKeyboard = new System.Windows.Forms.CheckBox(); + this.checkBoxEnableMouse = new System.Windows.Forms.CheckBox(); + this.checkBoxUseSystemRatesRemote = new System.Windows.Forms.CheckBox(); + this.checkBoxUseSystemRatesKeyboard = new System.Windows.Forms.CheckBox(); + this.comboBoxHardwareMode = new System.Windows.Forms.ComboBox(); + this.comboBoxRemoteMode = new System.Windows.Forms.ComboBox(); + this.tabControl = new System.Windows.Forms.TabControl(); + this.tabPageRemote = new System.Windows.Forms.TabPage(); + this.labelRemoteMode = new System.Windows.Forms.Label(); + this.labelHardwareMode = new System.Windows.Forms.Label(); + this.tabPageKeyboard = new System.Windows.Forms.TabPage(); + this.groupBoxKeypressTiming = new System.Windows.Forms.GroupBox(); + this.labelKeyRepeatDelay = new System.Windows.Forms.Label(); + this.labelKeyHeldDelay = new System.Windows.Forms.Label(); + this.tabPageMouse = new System.Windows.Forms.TabPage(); + this.labelMouseSensitivity = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonRepeatDelay)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonHeldDelay)).BeginInit(); + this.groupBoxRemoteTiming.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyHeldDelay)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyRepeatDelay)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMouseSensitivity)).BeginInit(); + this.tabControl.SuspendLayout(); + this.tabPageRemote.SuspendLayout(); + this.tabPageKeyboard.SuspendLayout(); + this.groupBoxKeypressTiming.SuspendLayout(); + this.tabPageMouse.SuspendLayout(); + this.SuspendLayout(); + // + // labelButtonRepeatDelay + // + this.labelButtonRepeatDelay.Location = new System.Drawing.Point(8, 24); + this.labelButtonRepeatDelay.Name = "labelButtonRepeatDelay"; + this.labelButtonRepeatDelay.Size = new System.Drawing.Size(128, 20); + this.labelButtonRepeatDelay.TabIndex = 0; + this.labelButtonRepeatDelay.Text = "Button repeat delay:"; + this.labelButtonRepeatDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // labelButtonHeldDelay + // + this.labelButtonHeldDelay.Location = new System.Drawing.Point(8, 56); + this.labelButtonHeldDelay.Name = "labelButtonHeldDelay"; + this.labelButtonHeldDelay.Size = new System.Drawing.Size(128, 20); + this.labelButtonHeldDelay.TabIndex = 2; + this.labelButtonHeldDelay.Text = "Button held delay:"; + this.labelButtonHeldDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // numericUpDownButtonRepeatDelay + // + this.numericUpDownButtonRepeatDelay.Increment = new decimal(new int[] { 50, 0, 0, 0}); - this.numericUpDownButtonRepeatDelay.Location = new System.Drawing.Point(144, 24); - this.numericUpDownButtonRepeatDelay.Maximum = new decimal(new int[] { + this.numericUpDownButtonRepeatDelay.Location = new System.Drawing.Point(144, 24); + this.numericUpDownButtonRepeatDelay.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); - this.numericUpDownButtonRepeatDelay.Name = "numericUpDownButtonRepeatDelay"; - this.numericUpDownButtonRepeatDelay.Size = new System.Drawing.Size(80, 20); - this.numericUpDownButtonRepeatDelay.TabIndex = 1; - this.numericUpDownButtonRepeatDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.numericUpDownButtonRepeatDelay.ThousandsSeparator = true; - this.toolTips.SetToolTip(this.numericUpDownButtonRepeatDelay, "When the button is held this is the time between the first press and the first re" + - "peat"); - this.numericUpDownButtonRepeatDelay.Value = new decimal(new int[] { + this.numericUpDownButtonRepeatDelay.Name = "numericUpDownButtonRepeatDelay"; + this.numericUpDownButtonRepeatDelay.Size = new System.Drawing.Size(80, 20); + this.numericUpDownButtonRepeatDelay.TabIndex = 1; + this.numericUpDownButtonRepeatDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.numericUpDownButtonRepeatDelay.ThousandsSeparator = true; + this.toolTips.SetToolTip(this.numericUpDownButtonRepeatDelay, "When the button is held this is the time between the first press and the first re" + + "peat"); + this.numericUpDownButtonRepeatDelay.Value = new decimal(new int[] { 10000, 0, 0, 0}); - // - // numericUpDownButtonHeldDelay - // - this.numericUpDownButtonHeldDelay.Increment = new decimal(new int[] { + // + // numericUpDownButtonHeldDelay + // + this.numericUpDownButtonHeldDelay.Increment = new decimal(new int[] { 50, 0, 0, 0}); - this.numericUpDownButtonHeldDelay.Location = new System.Drawing.Point(144, 56); - this.numericUpDownButtonHeldDelay.Maximum = new decimal(new int[] { + this.numericUpDownButtonHeldDelay.Location = new System.Drawing.Point(144, 56); + this.numericUpDownButtonHeldDelay.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); - this.numericUpDownButtonHeldDelay.Name = "numericUpDownButtonHeldDelay"; - this.numericUpDownButtonHeldDelay.Size = new System.Drawing.Size(80, 20); - this.numericUpDownButtonHeldDelay.TabIndex = 3; - this.numericUpDownButtonHeldDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.numericUpDownButtonHeldDelay.ThousandsSeparator = true; - this.toolTips.SetToolTip(this.numericUpDownButtonHeldDelay, "When the button is held this is the time between repeats"); - this.numericUpDownButtonHeldDelay.Value = new decimal(new int[] { + this.numericUpDownButtonHeldDelay.Name = "numericUpDownButtonHeldDelay"; + this.numericUpDownButtonHeldDelay.Size = new System.Drawing.Size(80, 20); + this.numericUpDownButtonHeldDelay.TabIndex = 3; + this.numericUpDownButtonHeldDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.numericUpDownButtonHeldDelay.ThousandsSeparator = true; + this.toolTips.SetToolTip(this.numericUpDownButtonHeldDelay, "When the button is held this is the time between repeats"); + this.numericUpDownButtonHeldDelay.Value = new decimal(new int[] { 10000, 0, 0, 0}); - // - // buttonOK - // - this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonOK.Location = new System.Drawing.Point(128, 263); - this.buttonOK.Name = "buttonOK"; - this.buttonOK.Size = new System.Drawing.Size(64, 24); - this.buttonOK.TabIndex = 1; - this.buttonOK.Text = "OK"; - this.buttonOK.UseVisualStyleBackColor = true; - this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); - // - // buttonCancel - // - this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(200, 263); - this.buttonCancel.Name = "buttonCancel"; - this.buttonCancel.Size = new System.Drawing.Size(64, 24); - this.buttonCancel.TabIndex = 2; - this.buttonCancel.Text = "Cancel"; - this.buttonCancel.UseVisualStyleBackColor = true; - this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); - // - // groupBoxRemoteTiming - // - this.groupBoxRemoteTiming.Controls.Add(this.labelButtonRepeatDelay); - this.groupBoxRemoteTiming.Controls.Add(this.numericUpDownButtonHeldDelay); - this.groupBoxRemoteTiming.Controls.Add(this.labelButtonHeldDelay); - this.groupBoxRemoteTiming.Controls.Add(this.numericUpDownButtonRepeatDelay); - this.groupBoxRemoteTiming.Location = new System.Drawing.Point(8, 72); - this.groupBoxRemoteTiming.Name = "groupBoxRemoteTiming"; - this.groupBoxRemoteTiming.Size = new System.Drawing.Size(232, 88); - this.groupBoxRemoteTiming.TabIndex = 2; - this.groupBoxRemoteTiming.TabStop = false; - this.groupBoxRemoteTiming.Text = "Remote button timing (in milliseconds)"; - // - // numericUpDownKeyHeldDelay - // - this.numericUpDownKeyHeldDelay.Increment = new decimal(new int[] { + // + // buttonOK + // + this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonOK.Location = new System.Drawing.Point(128, 263); + this.buttonOK.Name = "buttonOK"; + this.buttonOK.Size = new System.Drawing.Size(64, 24); + this.buttonOK.TabIndex = 1; + this.buttonOK.Text = "OK"; + this.buttonOK.UseVisualStyleBackColor = true; + this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); + // + // buttonCancel + // + this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.buttonCancel.Location = new System.Drawing.Point(200, 263); + this.buttonCancel.Name = "buttonCancel"; + this.buttonCancel.Size = new System.Drawing.Size(64, 24); + this.buttonCancel.TabIndex = 2; + this.buttonCancel.Text = "Cancel"; + this.buttonCancel.UseVisualStyleBackColor = true; + this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); + // + // groupBoxRemoteTiming + // + this.groupBoxRemoteTiming.Controls.Add(this.labelButtonRepeatDelay); + this.groupBoxRemoteTiming.Controls.Add(this.numericUpDownButtonHeldDelay); + this.groupBoxRemoteTiming.Controls.Add(this.labelButtonHeldDelay); + this.groupBoxRemoteTiming.Controls.Add(this.numericUpDownButtonRepeatDelay); + this.groupBoxRemoteTiming.Location = new System.Drawing.Point(8, 72); + this.groupBoxRemoteTiming.Name = "groupBoxRemoteTiming"; + this.groupBoxRemoteTiming.Size = new System.Drawing.Size(232, 88); + this.groupBoxRemoteTiming.TabIndex = 2; + this.groupBoxRemoteTiming.TabStop = false; + this.groupBoxRemoteTiming.Text = "Remote button timing (in milliseconds)"; + // + // numericUpDownKeyHeldDelay + // + this.numericUpDownKeyHeldDelay.Increment = new decimal(new int[] { 50, 0, 0, 0}); - this.numericUpDownKeyHeldDelay.Location = new System.Drawing.Point(144, 56); - this.numericUpDownKeyHeldDelay.Maximum = new decimal(new int[] { + this.numericUpDownKeyHeldDelay.Location = new System.Drawing.Point(144, 56); + this.numericUpDownKeyHeldDelay.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); - this.numericUpDownKeyHeldDelay.Name = "numericUpDownKeyHeldDelay"; - this.numericUpDownKeyHeldDelay.Size = new System.Drawing.Size(80, 20); - this.numericUpDownKeyHeldDelay.TabIndex = 4; - this.numericUpDownKeyHeldDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.numericUpDownKeyHeldDelay.ThousandsSeparator = true; - this.toolTips.SetToolTip(this.numericUpDownKeyHeldDelay, "When a key is held this is the time between repeats"); - this.numericUpDownKeyHeldDelay.Value = new decimal(new int[] { + this.numericUpDownKeyHeldDelay.Name = "numericUpDownKeyHeldDelay"; + this.numericUpDownKeyHeldDelay.Size = new System.Drawing.Size(80, 20); + this.numericUpDownKeyHeldDelay.TabIndex = 4; + this.numericUpDownKeyHeldDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.numericUpDownKeyHeldDelay.ThousandsSeparator = true; + this.toolTips.SetToolTip(this.numericUpDownKeyHeldDelay, "When a key is held this is the time between repeats"); + this.numericUpDownKeyHeldDelay.Value = new decimal(new int[] { 1000, 0, 0, 0}); - // - // numericUpDownKeyRepeatDelay - // - this.numericUpDownKeyRepeatDelay.Increment = new decimal(new int[] { + // + // numericUpDownKeyRepeatDelay + // + this.numericUpDownKeyRepeatDelay.Increment = new decimal(new int[] { 50, 0, 0, 0}); - this.numericUpDownKeyRepeatDelay.Location = new System.Drawing.Point(144, 24); - this.numericUpDownKeyRepeatDelay.Maximum = new decimal(new int[] { + this.numericUpDownKeyRepeatDelay.Location = new System.Drawing.Point(144, 24); + this.numericUpDownKeyRepeatDelay.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); - this.numericUpDownKeyRepeatDelay.Name = "numericUpDownKeyRepeatDelay"; - this.numericUpDownKeyRepeatDelay.Size = new System.Drawing.Size(80, 20); - this.numericUpDownKeyRepeatDelay.TabIndex = 2; - this.numericUpDownKeyRepeatDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.numericUpDownKeyRepeatDelay.ThousandsSeparator = true; - this.toolTips.SetToolTip(this.numericUpDownKeyRepeatDelay, "When a key is held this is the time between the first press and the first repeat"); - this.numericUpDownKeyRepeatDelay.Value = new decimal(new int[] { + this.numericUpDownKeyRepeatDelay.Name = "numericUpDownKeyRepeatDelay"; + this.numericUpDownKeyRepeatDelay.Size = new System.Drawing.Size(80, 20); + this.numericUpDownKeyRepeatDelay.TabIndex = 2; + this.numericUpDownKeyRepeatDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.numericUpDownKeyRepeatDelay.ThousandsSeparator = true; + this.toolTips.SetToolTip(this.numericUpDownKeyRepeatDelay, "When a key is held this is the time between the first press and the first repeat"); + this.numericUpDownKeyRepeatDelay.Value = new decimal(new int[] { 1000, 0, 0, 0}); - // - // checkBoxHandleKeyboardLocal - // - this.checkBoxHandleKeyboardLocal.AutoSize = true; - this.checkBoxHandleKeyboardLocal.Checked = true; - this.checkBoxHandleKeyboardLocal.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxHandleKeyboardLocal.Location = new System.Drawing.Point(8, 168); - this.checkBoxHandleKeyboardLocal.Name = "checkBoxHandleKeyboardLocal"; - this.checkBoxHandleKeyboardLocal.Size = new System.Drawing.Size(139, 17); - this.checkBoxHandleKeyboardLocal.TabIndex = 2; - this.checkBoxHandleKeyboardLocal.Text = "Handle keyboard locally"; - this.toolTips.SetToolTip(this.checkBoxHandleKeyboardLocal, "Act on key presses locally (on the machine Input Servie is running on)"); - this.checkBoxHandleKeyboardLocal.UseVisualStyleBackColor = true; - // - // checkBoxHandleMouseLocal - // - this.checkBoxHandleMouseLocal.AutoSize = true; - this.checkBoxHandleMouseLocal.Checked = true; - this.checkBoxHandleMouseLocal.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxHandleMouseLocal.Location = new System.Drawing.Point(8, 40); - this.checkBoxHandleMouseLocal.Name = "checkBoxHandleMouseLocal"; - this.checkBoxHandleMouseLocal.Size = new System.Drawing.Size(126, 17); - this.checkBoxHandleMouseLocal.TabIndex = 1; - this.checkBoxHandleMouseLocal.Text = "Handle mouse locally"; - this.toolTips.SetToolTip(this.checkBoxHandleMouseLocal, "Act on mouse locally (on the machine Input Service is running on)"); - this.checkBoxHandleMouseLocal.UseVisualStyleBackColor = true; - // - // numericUpDownMouseSensitivity - // - this.numericUpDownMouseSensitivity.DecimalPlaces = 1; - this.numericUpDownMouseSensitivity.Increment = new decimal(new int[] { + // + // checkBoxHandleKeyboardLocal + // + this.checkBoxHandleKeyboardLocal.AutoSize = true; + this.checkBoxHandleKeyboardLocal.Checked = true; + this.checkBoxHandleKeyboardLocal.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxHandleKeyboardLocal.Location = new System.Drawing.Point(8, 168); + this.checkBoxHandleKeyboardLocal.Name = "checkBoxHandleKeyboardLocal"; + this.checkBoxHandleKeyboardLocal.Size = new System.Drawing.Size(139, 17); + this.checkBoxHandleKeyboardLocal.TabIndex = 2; + this.checkBoxHandleKeyboardLocal.Text = "Handle keyboard locally"; + this.toolTips.SetToolTip(this.checkBoxHandleKeyboardLocal, "Act on key presses locally (on the machine Input Servie is running on)"); + this.checkBoxHandleKeyboardLocal.UseVisualStyleBackColor = true; + // + // checkBoxHandleMouseLocal + // + this.checkBoxHandleMouseLocal.AutoSize = true; + this.checkBoxHandleMouseLocal.Checked = true; + this.checkBoxHandleMouseLocal.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxHandleMouseLocal.Location = new System.Drawing.Point(8, 40); + this.checkBoxHandleMouseLocal.Name = "checkBoxHandleMouseLocal"; + this.checkBoxHandleMouseLocal.Size = new System.Drawing.Size(126, 17); + this.checkBoxHandleMouseLocal.TabIndex = 1; + this.checkBoxHandleMouseLocal.Text = "Handle mouse locally"; + this.toolTips.SetToolTip(this.checkBoxHandleMouseLocal, "Act on mouse locally (on the machine Input Service is running on)"); + this.checkBoxHandleMouseLocal.UseVisualStyleBackColor = true; + // + // numericUpDownMouseSensitivity + // + this.numericUpDownMouseSensitivity.DecimalPlaces = 1; + this.numericUpDownMouseSensitivity.Increment = new decimal(new int[] { 1, 0, 0, 65536}); - this.numericUpDownMouseSensitivity.Location = new System.Drawing.Point(160, 80); - this.numericUpDownMouseSensitivity.Maximum = new decimal(new int[] { + this.numericUpDownMouseSensitivity.Location = new System.Drawing.Point(160, 80); + this.numericUpDownMouseSensitivity.Maximum = new decimal(new int[] { 10, 0, 0, 0}); - this.numericUpDownMouseSensitivity.Minimum = new decimal(new int[] { + this.numericUpDownMouseSensitivity.Minimum = new decimal(new int[] { 10, 0, 0, -2147483648}); - this.numericUpDownMouseSensitivity.Name = "numericUpDownMouseSensitivity"; - this.numericUpDownMouseSensitivity.Size = new System.Drawing.Size(80, 20); - this.numericUpDownMouseSensitivity.TabIndex = 3; - this.numericUpDownMouseSensitivity.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.toolTips.SetToolTip(this.numericUpDownMouseSensitivity, "Multiply mouse movements by this number"); - this.numericUpDownMouseSensitivity.Value = new decimal(new int[] { + this.numericUpDownMouseSensitivity.Name = "numericUpDownMouseSensitivity"; + this.numericUpDownMouseSensitivity.Size = new System.Drawing.Size(80, 20); + this.numericUpDownMouseSensitivity.TabIndex = 3; + this.numericUpDownMouseSensitivity.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.toolTips.SetToolTip(this.numericUpDownMouseSensitivity, "Multiply mouse movements by this number"); + this.numericUpDownMouseSensitivity.Value = new decimal(new int[] { 10, 0, 0, 65536}); - // - // checkBoxEnableRemote - // - this.checkBoxEnableRemote.AutoSize = true; - this.checkBoxEnableRemote.Checked = true; - this.checkBoxEnableRemote.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxEnableRemote.Location = new System.Drawing.Point(8, 8); - this.checkBoxEnableRemote.Name = "checkBoxEnableRemote"; - this.checkBoxEnableRemote.Size = new System.Drawing.Size(155, 17); - this.checkBoxEnableRemote.TabIndex = 0; - this.checkBoxEnableRemote.Text = "Enable remote control input"; - this.toolTips.SetToolTip(this.checkBoxEnableRemote, "Decode remote control button presses"); - this.checkBoxEnableRemote.UseVisualStyleBackColor = true; - // - // checkBoxEnableKeyboard - // - this.checkBoxEnableKeyboard.AutoSize = true; - this.checkBoxEnableKeyboard.Checked = true; - this.checkBoxEnableKeyboard.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxEnableKeyboard.Location = new System.Drawing.Point(8, 8); - this.checkBoxEnableKeyboard.Name = "checkBoxEnableKeyboard"; - this.checkBoxEnableKeyboard.Size = new System.Drawing.Size(132, 17); - this.checkBoxEnableKeyboard.TabIndex = 0; - this.checkBoxEnableKeyboard.Text = "Enable keyboard input"; - this.toolTips.SetToolTip(this.checkBoxEnableKeyboard, "Decode remote keyboard input"); - this.checkBoxEnableKeyboard.UseVisualStyleBackColor = true; - // - // checkBoxEnableMouse - // - this.checkBoxEnableMouse.AutoSize = true; - this.checkBoxEnableMouse.Checked = true; - this.checkBoxEnableMouse.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxEnableMouse.Location = new System.Drawing.Point(8, 8); - this.checkBoxEnableMouse.Name = "checkBoxEnableMouse"; - this.checkBoxEnableMouse.Size = new System.Drawing.Size(119, 17); - this.checkBoxEnableMouse.TabIndex = 0; - this.checkBoxEnableMouse.Text = "Enable mouse input"; - this.toolTips.SetToolTip(this.checkBoxEnableMouse, "Decode remote mouse input"); - this.checkBoxEnableMouse.UseVisualStyleBackColor = true; - // - // checkBoxUseSystemRatesRemote - // - this.checkBoxUseSystemRatesRemote.AutoSize = true; - this.checkBoxUseSystemRatesRemote.Location = new System.Drawing.Point(8, 40); - this.checkBoxUseSystemRatesRemote.Name = "checkBoxUseSystemRatesRemote"; - this.checkBoxUseSystemRatesRemote.Size = new System.Drawing.Size(187, 17); - this.checkBoxUseSystemRatesRemote.TabIndex = 1; - this.checkBoxUseSystemRatesRemote.Text = "Use system keyboard rate settings"; - this.toolTips.SetToolTip(this.checkBoxUseSystemRatesRemote, "Use the system keyboard repeat rate settings for remote button timing"); - this.checkBoxUseSystemRatesRemote.UseVisualStyleBackColor = true; - // - // checkBoxUseSystemRatesKeyboard - // - this.checkBoxUseSystemRatesKeyboard.AutoSize = true; - this.checkBoxUseSystemRatesKeyboard.Location = new System.Drawing.Point(8, 40); - this.checkBoxUseSystemRatesKeyboard.Name = "checkBoxUseSystemRatesKeyboard"; - this.checkBoxUseSystemRatesKeyboard.Size = new System.Drawing.Size(187, 17); - this.checkBoxUseSystemRatesKeyboard.TabIndex = 0; - this.checkBoxUseSystemRatesKeyboard.Text = "Use system keyboard rate settings"; - this.toolTips.SetToolTip(this.checkBoxUseSystemRatesKeyboard, "Use the system keyboard repeat rate settings for remote keyboard repeat rates"); - this.checkBoxUseSystemRatesKeyboard.UseVisualStyleBackColor = true; - // - // comboBoxHardwareMode - // - this.comboBoxHardwareMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboBoxHardwareMode.FormattingEnabled = true; - this.comboBoxHardwareMode.Location = new System.Drawing.Point(152, 168); - this.comboBoxHardwareMode.Name = "comboBoxHardwareMode"; - this.comboBoxHardwareMode.Size = new System.Drawing.Size(89, 21); - this.comboBoxHardwareMode.TabIndex = 4; - this.toolTips.SetToolTip(this.comboBoxHardwareMode, "Choose between MCE and iMon remote types"); - // - // tabControl - // - this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tabControl.Controls.Add(this.tabPageRemote); - this.tabControl.Controls.Add(this.tabPageKeyboard); - this.tabControl.Controls.Add(this.tabPageMouse); - this.tabControl.Location = new System.Drawing.Point(8, 8); - this.tabControl.Name = "tabControl"; - this.tabControl.SelectedIndex = 0; - this.tabControl.Size = new System.Drawing.Size(256, 247); - this.tabControl.TabIndex = 0; - // - // tabPageRemote - // - this.tabPageRemote.Controls.Add(this.comboBoxRemoteMode); - this.tabPageRemote.Controls.Add(this.labelRemoteMode); - this.tabPageRemote.Controls.Add(this.comboBoxHardwareMode); - this.tabPageRemote.Controls.Add(this.labelHardwareMode); - this.tabPageRemote.Controls.Add(this.checkBoxUseSystemRatesRemote); - this.tabPageRemote.Controls.Add(this.checkBoxEnableRemote); - this.tabPageRemote.Controls.Add(this.groupBoxRemoteTiming); - this.tabPageRemote.Location = new System.Drawing.Point(4, 22); - this.tabPageRemote.Name = "tabPageRemote"; - this.tabPageRemote.Padding = new System.Windows.Forms.Padding(3); - this.tabPageRemote.Size = new System.Drawing.Size(248, 221); - this.tabPageRemote.TabIndex = 1; - this.tabPageRemote.Text = "Remote"; - this.tabPageRemote.UseVisualStyleBackColor = true; - // - // labelHardwareMode - // - this.labelHardwareMode.Location = new System.Drawing.Point(8, 168); - this.labelHardwareMode.Name = "labelHardwareMode"; - this.labelHardwareMode.Size = new System.Drawing.Size(136, 21); - this.labelHardwareMode.TabIndex = 3; - this.labelHardwareMode.Text = "Hardware mode:"; - this.labelHardwareMode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // tabPageKeyboard - // - this.tabPageKeyboard.Controls.Add(this.checkBoxUseSystemRatesKeyboard); - this.tabPageKeyboard.Controls.Add(this.checkBoxHandleKeyboardLocal); - this.tabPageKeyboard.Controls.Add(this.checkBoxEnableKeyboard); - this.tabPageKeyboard.Controls.Add(this.groupBoxKeypressTiming); - this.tabPageKeyboard.Location = new System.Drawing.Point(4, 22); - this.tabPageKeyboard.Name = "tabPageKeyboard"; - this.tabPageKeyboard.Padding = new System.Windows.Forms.Padding(3); - this.tabPageKeyboard.Size = new System.Drawing.Size(248, 221); - this.tabPageKeyboard.TabIndex = 2; - this.tabPageKeyboard.Text = "Keyboard"; - this.tabPageKeyboard.UseVisualStyleBackColor = true; - // - // groupBoxKeypressTiming - // - this.groupBoxKeypressTiming.Controls.Add(this.labelKeyRepeatDelay); - this.groupBoxKeypressTiming.Controls.Add(this.numericUpDownKeyHeldDelay); - this.groupBoxKeypressTiming.Controls.Add(this.labelKeyHeldDelay); - this.groupBoxKeypressTiming.Controls.Add(this.numericUpDownKeyRepeatDelay); - this.groupBoxKeypressTiming.Location = new System.Drawing.Point(8, 72); - this.groupBoxKeypressTiming.Name = "groupBoxKeypressTiming"; - this.groupBoxKeypressTiming.Size = new System.Drawing.Size(232, 88); - this.groupBoxKeypressTiming.TabIndex = 1; - this.groupBoxKeypressTiming.TabStop = false; - this.groupBoxKeypressTiming.Text = "Key press timing (in milliseconds)"; - // - // labelKeyRepeatDelay - // - this.labelKeyRepeatDelay.Location = new System.Drawing.Point(8, 24); - this.labelKeyRepeatDelay.Name = "labelKeyRepeatDelay"; - this.labelKeyRepeatDelay.Size = new System.Drawing.Size(128, 20); - this.labelKeyRepeatDelay.TabIndex = 1; - this.labelKeyRepeatDelay.Text = "Key repeat delay:"; - this.labelKeyRepeatDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // labelKeyHeldDelay - // - this.labelKeyHeldDelay.Location = new System.Drawing.Point(8, 56); - this.labelKeyHeldDelay.Name = "labelKeyHeldDelay"; - this.labelKeyHeldDelay.Size = new System.Drawing.Size(128, 20); - this.labelKeyHeldDelay.TabIndex = 3; - this.labelKeyHeldDelay.Text = "Key held delay:"; - this.labelKeyHeldDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // tabPageMouse - // - this.tabPageMouse.Controls.Add(this.labelMouseSensitivity); - this.tabPageMouse.Controls.Add(this.numericUpDownMouseSensitivity); - this.tabPageMouse.Controls.Add(this.checkBoxHandleMouseLocal); - this.tabPageMouse.Controls.Add(this.checkBoxEnableMouse); - this.tabPageMouse.Location = new System.Drawing.Point(4, 22); - this.tabPageMouse.Name = "tabPageMouse"; - this.tabPageMouse.Padding = new System.Windows.Forms.Padding(3); - this.tabPageMouse.Size = new System.Drawing.Size(248, 221); - this.tabPageMouse.TabIndex = 3; - this.tabPageMouse.Text = "Mouse"; - this.tabPageMouse.UseVisualStyleBackColor = true; - // - // labelMouseSensitivity - // - this.labelMouseSensitivity.Location = new System.Drawing.Point(8, 80); - this.labelMouseSensitivity.Name = "labelMouseSensitivity"; - this.labelMouseSensitivity.Size = new System.Drawing.Size(144, 20); - this.labelMouseSensitivity.TabIndex = 2; - this.labelMouseSensitivity.Text = "Mouse sensitivity:"; - this.labelMouseSensitivity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // comboBoxRemoteMode - // - this.comboBoxRemoteMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboBoxRemoteMode.FormattingEnabled = true; - this.comboBoxRemoteMode.Location = new System.Drawing.Point(152, 194); - this.comboBoxRemoteMode.Name = "comboBoxRemoteMode"; - this.comboBoxRemoteMode.Size = new System.Drawing.Size(89, 21); - this.comboBoxRemoteMode.TabIndex = 6; - this.toolTips.SetToolTip(this.comboBoxRemoteMode, "Choose between MCE and iMon remote types"); - // - // labelRemoteMode - // - this.labelRemoteMode.Location = new System.Drawing.Point(8, 194); - this.labelRemoteMode.Name = "labelRemoteMode"; - this.labelRemoteMode.Size = new System.Drawing.Size(136, 21); - this.labelRemoteMode.TabIndex = 5; - this.labelRemoteMode.Text = "Remote MouseStick mode:"; - this.labelRemoteMode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // AdvancedSettings - // - this.AcceptButton = this.buttonOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.buttonCancel; - this.ClientSize = new System.Drawing.Size(272, 295); - this.Controls.Add(this.tabControl); - this.Controls.Add(this.buttonCancel); - this.Controls.Add(this.buttonOK); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.MinimumSize = new System.Drawing.Size(280, 306); - this.Name = "AdvancedSettings"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "iMon Configuration"; - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonRepeatDelay)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonHeldDelay)).EndInit(); - this.groupBoxRemoteTiming.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyHeldDelay)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyRepeatDelay)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMouseSensitivity)).EndInit(); - this.tabControl.ResumeLayout(false); - this.tabPageRemote.ResumeLayout(false); - this.tabPageRemote.PerformLayout(); - this.tabPageKeyboard.ResumeLayout(false); - this.tabPageKeyboard.PerformLayout(); - this.groupBoxKeypressTiming.ResumeLayout(false); - this.tabPageMouse.ResumeLayout(false); - this.tabPageMouse.PerformLayout(); - this.ResumeLayout(false); + // + // checkBoxEnableRemote + // + this.checkBoxEnableRemote.AutoSize = true; + this.checkBoxEnableRemote.Checked = true; + this.checkBoxEnableRemote.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxEnableRemote.Location = new System.Drawing.Point(8, 8); + this.checkBoxEnableRemote.Name = "checkBoxEnableRemote"; + this.checkBoxEnableRemote.Size = new System.Drawing.Size(155, 17); + this.checkBoxEnableRemote.TabIndex = 0; + this.checkBoxEnableRemote.Text = "Enable remote control input"; + this.toolTips.SetToolTip(this.checkBoxEnableRemote, "Decode remote control button presses"); + this.checkBoxEnableRemote.UseVisualStyleBackColor = true; + // + // checkBoxEnableKeyboard + // + this.checkBoxEnableKeyboard.AutoSize = true; + this.checkBoxEnableKeyboard.Checked = true; + this.checkBoxEnableKeyboard.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxEnableKeyboard.Location = new System.Drawing.Point(8, 8); + this.checkBoxEnableKeyboard.Name = "checkBoxEnableKeyboard"; + this.checkBoxEnableKeyboard.Size = new System.Drawing.Size(132, 17); + this.checkBoxEnableKeyboard.TabIndex = 0; + this.checkBoxEnableKeyboard.Text = "Enable keyboard input"; + this.toolTips.SetToolTip(this.checkBoxEnableKeyboard, "Decode remote keyboard input"); + this.checkBoxEnableKeyboard.UseVisualStyleBackColor = true; + // + // checkBoxEnableMouse + // + this.checkBoxEnableMouse.AutoSize = true; + this.checkBoxEnableMouse.Checked = true; + this.checkBoxEnableMouse.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxEnableMouse.Location = new System.Drawing.Point(8, 8); + this.checkBoxEnableMouse.Name = "checkBoxEnableMouse"; + this.checkBoxEnableMouse.Size = new System.Drawing.Size(119, 17); + this.checkBoxEnableMouse.TabIndex = 0; + this.checkBoxEnableMouse.Text = "Enable mouse input"; + this.toolTips.SetToolTip(this.checkBoxEnableMouse, "Decode remote mouse input"); + this.checkBoxEnableMouse.UseVisualStyleBackColor = true; + // + // checkBoxUseSystemRatesRemote + // + this.checkBoxUseSystemRatesRemote.AutoSize = true; + this.checkBoxUseSystemRatesRemote.Location = new System.Drawing.Point(8, 40); + this.checkBoxUseSystemRatesRemote.Name = "checkBoxUseSystemRatesRemote"; + this.checkBoxUseSystemRatesRemote.Size = new System.Drawing.Size(187, 17); + this.checkBoxUseSystemRatesRemote.TabIndex = 1; + this.checkBoxUseSystemRatesRemote.Text = "Use system keyboard rate settings"; + this.toolTips.SetToolTip(this.checkBoxUseSystemRatesRemote, "Use the system keyboard repeat rate settings for remote button timing"); + this.checkBoxUseSystemRatesRemote.UseVisualStyleBackColor = true; + // + // checkBoxUseSystemRatesKeyboard + // + this.checkBoxUseSystemRatesKeyboard.AutoSize = true; + this.checkBoxUseSystemRatesKeyboard.Location = new System.Drawing.Point(8, 40); + this.checkBoxUseSystemRatesKeyboard.Name = "checkBoxUseSystemRatesKeyboard"; + this.checkBoxUseSystemRatesKeyboard.Size = new System.Drawing.Size(187, 17); + this.checkBoxUseSystemRatesKeyboard.TabIndex = 0; + this.checkBoxUseSystemRatesKeyboard.Text = "Use system keyboard rate settings"; + this.toolTips.SetToolTip(this.checkBoxUseSystemRatesKeyboard, "Use the system keyboard repeat rate settings for remote keyboard repeat rates"); + this.checkBoxUseSystemRatesKeyboard.UseVisualStyleBackColor = true; + // + // comboBoxHardwareMode + // + this.comboBoxHardwareMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBoxHardwareMode.FormattingEnabled = true; + this.comboBoxHardwareMode.Location = new System.Drawing.Point(152, 168); + this.comboBoxHardwareMode.Name = "comboBoxHardwareMode"; + this.comboBoxHardwareMode.Size = new System.Drawing.Size(89, 21); + this.comboBoxHardwareMode.TabIndex = 4; + this.toolTips.SetToolTip(this.comboBoxHardwareMode, "Choose between MCE and iMon remote types"); + // + // comboBoxRemoteMode + // + this.comboBoxRemoteMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBoxRemoteMode.FormattingEnabled = true; + this.comboBoxRemoteMode.Location = new System.Drawing.Point(152, 194); + this.comboBoxRemoteMode.Name = "comboBoxRemoteMode"; + this.comboBoxRemoteMode.Size = new System.Drawing.Size(89, 21); + this.comboBoxRemoteMode.TabIndex = 6; + this.toolTips.SetToolTip(this.comboBoxRemoteMode, "Choose between MCE and iMon remote types"); + // + // tabControl + // + this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tabControl.Controls.Add(this.tabPageRemote); + this.tabControl.Controls.Add(this.tabPageKeyboard); + this.tabControl.Controls.Add(this.tabPageMouse); + this.tabControl.Location = new System.Drawing.Point(8, 8); + this.tabControl.Name = "tabControl"; + this.tabControl.SelectedIndex = 0; + this.tabControl.Size = new System.Drawing.Size(256, 247); + this.tabControl.TabIndex = 0; + // + // tabPageRemote + // + this.tabPageRemote.Controls.Add(this.comboBoxRemoteMode); + this.tabPageRemote.Controls.Add(this.labelRemoteMode); + this.tabPageRemote.Controls.Add(this.comboBoxHardwareMode); + this.tabPageRemote.Controls.Add(this.labelHardwareMode); + this.tabPageRemote.Controls.Add(this.checkBoxUseSystemRatesRemote); + this.tabPageRemote.Controls.Add(this.checkBoxEnableRemote); + this.tabPageRemote.Controls.Add(this.groupBoxRemoteTiming); + this.tabPageRemote.Location = new System.Drawing.Point(4, 22); + this.tabPageRemote.Name = "tabPageRemote"; + this.tabPageRemote.Padding = new System.Windows.Forms.Padding(3); + this.tabPageRemote.Size = new System.Drawing.Size(248, 221); + this.tabPageRemote.TabIndex = 1; + this.tabPageRemote.Text = "Remote"; + this.tabPageRemote.UseVisualStyleBackColor = true; + // + // labelRemoteMode + // + this.labelRemoteMode.Location = new System.Drawing.Point(8, 194); + this.labelRemoteMode.Name = "labelRemoteMode"; + this.labelRemoteMode.Size = new System.Drawing.Size(136, 21); + this.labelRemoteMode.TabIndex = 5; + this.labelRemoteMode.Text = "Remote MouseStick mode:"; + this.labelRemoteMode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // labelHardwareMode + // + this.labelHardwareMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelHardwareMode.Location = new System.Drawing.Point(8, 168); + this.labelHardwareMode.Name = "labelHardwareMode"; + this.labelHardwareMode.Size = new System.Drawing.Size(136, 21); + this.labelHardwareMode.TabIndex = 3; + this.labelHardwareMode.Text = "Hardware mode:"; + this.labelHardwareMode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.toolTips.SetToolTip(this.labelHardwareMode, "IMPORTANT: Set the hardware mode here"); + // + // tabPageKeyboard + // + this.tabPageKeyboard.Controls.Add(this.checkBoxUseSystemRatesKeyboard); + this.tabPageKeyboard.Controls.Add(this.checkBoxHandleKeyboardLocal); + this.tabPageKeyboard.Controls.Add(this.checkBoxEnableKeyboard); + this.tabPageKeyboard.Controls.Add(this.groupBoxKeypressTiming); + this.tabPageKeyboard.Location = new System.Drawing.Point(4, 22); + this.tabPageKeyboard.Name = "tabPageKeyboard"; + this.tabPageKeyboard.Padding = new System.Windows.Forms.Padding(3); + this.tabPageKeyboard.Size = new System.Drawing.Size(248, 221); + this.tabPageKeyboard.TabIndex = 2; + this.tabPageKeyboard.Text = "Keyboard"; + this.tabPageKeyboard.UseVisualStyleBackColor = true; + // + // groupBoxKeypressTiming + // + this.groupBoxKeypressTiming.Controls.Add(this.labelKeyRepeatDelay); + this.groupBoxKeypressTiming.Controls.Add(this.numericUpDownKeyHeldDelay); + this.groupBoxKeypressTiming.Controls.Add(this.labelKeyHeldDelay); + this.groupBoxKeypressTiming.Controls.Add(this.numericUpDownKeyRepeatDelay); + this.groupBoxKeypressTiming.Location = new System.Drawing.Point(8, 72); + this.groupBoxKeypressTiming.Name = "groupBoxKeypressTiming"; + this.groupBoxKeypressTiming.Size = new System.Drawing.Size(232, 88); + this.groupBoxKeypressTiming.TabIndex = 1; + this.groupBoxKeypressTiming.TabStop = false; + this.groupBoxKeypressTiming.Text = "Key press timing (in milliseconds)"; + // + // labelKeyRepeatDelay + // + this.labelKeyRepeatDelay.Location = new System.Drawing.Point(8, 24); + this.labelKeyRepeatDelay.Name = "labelKeyRepeatDelay"; + this.labelKeyRepeatDelay.Size = new System.Drawing.Size(128, 20); + this.labelKeyRepeatDelay.TabIndex = 1; + this.labelKeyRepeatDelay.Text = "Key repeat delay:"; + this.labelKeyRepeatDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // labelKeyHeldDelay + // + this.labelKeyHeldDelay.Location = new System.Drawing.Point(8, 56); + this.labelKeyHeldDelay.Name = "labelKeyHeldDelay"; + this.labelKeyHeldDelay.Size = new System.Drawing.Size(128, 20); + this.labelKeyHeldDelay.TabIndex = 3; + this.labelKeyHeldDelay.Text = "Key held delay:"; + this.labelKeyHeldDelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // tabPageMouse + // + this.tabPageMouse.Controls.Add(this.labelMouseSensitivity); + this.tabPageMouse.Controls.Add(this.numericUpDownMouseSensitivity); + this.tabPageMouse.Controls.Add(this.checkBoxHandleMouseLocal); + this.tabPageMouse.Controls.Add(this.checkBoxEnableMouse); + this.tabPageMouse.Location = new System.Drawing.Point(4, 22); + this.tabPageMouse.Name = "tabPageMouse"; + this.tabPageMouse.Padding = new System.Windows.Forms.Padding(3); + this.tabPageMouse.Size = new System.Drawing.Size(248, 221); + this.tabPageMouse.TabIndex = 3; + this.tabPageMouse.Text = "Mouse"; + this.tabPageMouse.UseVisualStyleBackColor = true; + // + // labelMouseSensitivity + // + this.labelMouseSensitivity.Location = new System.Drawing.Point(8, 80); + this.labelMouseSensitivity.Name = "labelMouseSensitivity"; + this.labelMouseSensitivity.Size = new System.Drawing.Size(144, 20); + this.labelMouseSensitivity.TabIndex = 2; + this.labelMouseSensitivity.Text = "Mouse sensitivity:"; + this.labelMouseSensitivity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // Configuration + // + this.AcceptButton = this.buttonOK; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.buttonCancel; + this.ClientSize = new System.Drawing.Size(272, 295); + this.Controls.Add(this.tabControl); + this.Controls.Add(this.buttonCancel); + this.Controls.Add(this.buttonOK); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.MinimumSize = new System.Drawing.Size(280, 306); + this.Name = "Configuration"; + this.ShowIcon = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "iMon Configuration"; + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonRepeatDelay)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonHeldDelay)).EndInit(); + this.groupBoxRemoteTiming.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyHeldDelay)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownKeyRepeatDelay)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMouseSensitivity)).EndInit(); + this.tabControl.ResumeLayout(false); + this.tabPageRemote.ResumeLayout(false); + this.tabPageRemote.PerformLayout(); + this.tabPageKeyboard.ResumeLayout(false); + this.tabPageKeyboard.PerformLayout(); + this.groupBoxKeypressTiming.ResumeLayout(false); + this.tabPageMouse.ResumeLayout(false); + this.tabPageMouse.PerformLayout(); + this.ResumeLayout(false); } Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2008-11-07 22:09:41 UTC (rev 2312) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2008-11-08 01:34:04 UTC (rev 2313) @@ -1644,6 +1644,7 @@ #endif _hardwareMode = RcMode.iMon; _RemoteMode = RemoteMode.Keyboard; + _CurrentRemoteMode = _RemoteMode; _enableRemoteInput = true; _useSystemRatesRemote = false; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2008-11-07 22:09:41 UTC (rev 2312) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2008-11-08 01:34:04 UTC (rev 2313) @@ -72,12 +72,12 @@ <ItemGroup> <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -86,7 +86,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.dll</... [truncated message content] |
From: <che...@us...> - 2008-12-02 11:12:30
|
Revision: 2387 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2387&view=rev Author: chemelli_sf Date: 2008-12-02 11:12:25 +0000 (Tue, 02 Dec 2008) Log Message: ----------- Allow automatic detection of VS/NSIS path for both 32bit and 64bit systems Modified Paths: -------------- trunk/plugins/IR Server Suite/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build Deploy Release.bat Modified: trunk/plugins/IR Server Suite/Build Deploy Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2008-12-01 20:45:21 UTC (rev 2386) +++ trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2008-12-02 11:12:25 UTC (rev 2387) @@ -1,5 +1,10 @@ @ECHO OFF +REM Select program path based on current machine environment + +set progpath=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + echo. echo -= IR Server Suite : Build Deploy Debug.bat =- @@ -9,7 +14,7 @@ echo. echo Building IR Server Suite... -"C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Debug "IR Server Suite.sln" >> build_debug.log +"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Debug "IR Server Suite.sln" >> build_debug.log echo. echo Reverting assemblies... @@ -21,4 +26,4 @@ IF NOT EXIST version.txt EXIT SET /p version=<version.txt DEL version.txt -"C:\Program Files (x86)\NSIS\makensis.exe" /DVER_BUILD=%version% setup\setup.nsi >> build_debug.log \ No newline at end of file +"%progpath%\NSIS\makensis.exe" /DVER_BUILD=%version% setup\setup.nsi >> build_debug.log \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Build Deploy Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Release.bat 2008-12-01 20:45:21 UTC (rev 2386) +++ trunk/plugins/IR Server Suite/Build Deploy Release.bat 2008-12-02 11:12:25 UTC (rev 2387) @@ -1,11 +1,16 @@ @ECHO OFF +REM Select program path based on current machine environment + +set progpath=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + echo. echo -= IR Server Suite : Build Deploy Release.bat =- echo. echo Building IR Server Suite... -"%ProgramFiles%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Release "IR Server Suite.sln" > build_release.log +"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Release "IR Server Suite.sln" > build_release.log echo. echo Building Help file... @@ -13,4 +18,4 @@ echo. echo Building Installer... -"%ProgramFiles%\NSIS\makensis.exe" setup\setup.nsi >> build_release.log \ No newline at end of file +"%progpath%\NSIS\makensis.exe" setup\setup.nsi >> build_release.log \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2008-12-03 07:34:41
|
Revision: 2390 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2390&view=rev Author: chemelli_sf Date: 2008-12-03 07:34:38 +0000 (Wed, 03 Dec 2008) Log Message: ----------- Made references paths relative. Now they expect this disk structure: ?\226?\128?\166\mp-plugins\trunk\plugins\IR Server Suite ?\226?\128?\166\mediaportal\trunk\mediaportal Modified Paths: -------------- trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2008-12-02 18:53:56 UTC (rev 2389) +++ trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2008-12-03 07:34:38 UTC (rev 2390) @@ -40,13 +40,13 @@ </PropertyGroup> <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> <SpecificVersion>False</SpecificVersion> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -56,7 +56,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2008-12-02 18:53:56 UTC (rev 2389) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2008-12-03 07:34:38 UTC (rev 2390) @@ -72,12 +72,12 @@ <ItemGroup> <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -86,7 +86,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2008-12-02 18:53:56 UTC (rev 2389) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2008-12-03 07:34:38 UTC (rev 2390) @@ -78,26 +78,26 @@ <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Databases, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Databases.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Databases.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> </Reference> <Reference Include="RemotePlugins, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\RemotePlugins.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\RemotePlugins.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -106,12 +106,12 @@ <Reference Include="System.Xml" /> <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\TVCapture.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\TVCapture.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2008-12-02 18:53:56 UTC (rev 2389) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2008-12-03 07:34:38 UTC (rev 2390) @@ -78,17 +78,17 @@ <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Databases, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Databases.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Databases.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -97,12 +97,12 @@ <Reference Include="System.Xml" /> <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\TVCapture.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\TVCapture.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2008-12-02 18:53:56 UTC (rev 2389) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2008-12-03 07:34:38 UTC (rev 2390) @@ -80,22 +80,22 @@ <ItemGroup> <Reference Include="Gentle.Common, Version=1.2.9.1285, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\Gentle.Common.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\Gentle.Common.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Gentle.Framework, Version=1.2.9.1286, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\Gentle.Framework.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\Gentle.Framework.DLL</HintPath> <Private>False</Private> </Reference> <Reference Include="PluginBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\PluginBase.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\PluginBase.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="SetupControls, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\SetupControls\bin\Release\SetupControls.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\bin\Release\SetupControls.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="System"> @@ -110,22 +110,22 @@ <Reference Include="System.Xml" /> <Reference Include="TvBusinessLayer, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\TvBusinessLayer.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\TvBusinessLayer.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TvControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\TvControl.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\TvControl.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TVDatabase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\TVDatabase.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\TVDatabase.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TvLibrary.Interfaces, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>\MediaPortal\TvEngine3\TVLibrary\TvService\bin\Release\TvLibrary.Interfaces.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvService\bin\Release\TvLibrary.Interfaces.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> @@ -200,4 +200,4 @@ <PostBuildEvent> </PostBuildEvent> </PropertyGroup> -</Project> \ No newline at end of file +</Project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-01-05 18:12:30
|
Revision: 2490 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2490&view=rev Author: chef_koch Date: 2009-01-05 18:12:25 +0000 (Mon, 05 Jan 2009) Log Message: ----------- added a variable for the build log file added a variable for the build type -> makes the build scripts more flexible, maybe we want to merge both into one ? and only call it with an additional debug parameter to create a debug build? Modified Paths: -------------- trunk/plugins/IR Server Suite/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build Deploy Release.bat Modified: trunk/plugins/IR Server Suite/Build Deploy Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-01-05 17:31:22 UTC (rev 2489) +++ trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-01-05 18:12:25 UTC (rev 2490) @@ -1,29 +1,41 @@ @ECHO OFF + +REM set build type to debug +set BUILD_TYPE=Debug + + +REM set logfile where the infos are written to, and clear that file +set LOG=build_%BUILD_TYPE%.log +echo. > %LOG% + + REM Select program path based on current machine environment - set progpath=%ProgramFiles% if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + echo. -echo -= IR Server Suite : Build Deploy Debug.bat =- +echo -= IR Server Suite =- +echo -= build mode: %BUILD_TYPE% =- +echo. echo. echo Writing SVN revision assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" > build_debug.log +setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% echo. echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Debug "IR Server Suite.sln" >> build_debug.log +"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% echo. echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" /revert >> build_debug.log +setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% echo. echo Building Installer... -setup\DeployVersionSVN.exe /svn="%CD%" /GetVersion >> build_debug.log +setup\DeployVersionSVN.exe /svn="%CD%" /GetVersion >> %LOG% IF NOT EXIST version.txt EXIT SET /p version=<version.txt DEL version.txt -"%progpath%\NSIS\makensis.exe" /DVER_BUILD=%version% setup\setup.nsi >> build_debug.log \ No newline at end of file +"%progpath%\NSIS\makensis.exe" /DVER_BUILD=%version% setup\setup.nsi >> %LOG% \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Build Deploy Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-01-05 17:31:22 UTC (rev 2489) +++ trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-01-05 18:12:25 UTC (rev 2490) @@ -1,21 +1,39 @@ @ECHO OFF + +REM detect if BUILD_TYPE should be release or debug +if not %1!==Debug! goto RELEASE +:DEBUG +set BUILD_TYPE=Debug +goto END_BUILD_TYPE +:RELEASE +set BUILD_TYPE=Release +:END_BUILD_TYPE + + +REM set logfile where the infos are written to, and clear that file +set LOG=build_%BUILD_TYPE%.log +echo. > %LOG% + + REM Select program path based on current machine environment - set progpath=%ProgramFiles% if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + echo. -echo -= IR Server Suite : Build Deploy Release.bat =- +echo -= IR Server Suite =- +echo -= build mode: %BUILD_TYPE% =- +echo. echo. echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild Release "IR Server Suite.sln" > build_release.log +"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% echo. echo Building Help file... -"%ProgramFiles%\HTML Help Workshop\hhc.exe" "Documentation\IR Server Suite.hhp" >> build_release.log +"%ProgramFiles%\HTML Help Workshop\hhc.exe" "Documentation\IR Server Suite.hhp" >> %LOG% echo. echo Building Installer... -"%progpath%\NSIS\makensis.exe" setup\setup.nsi >> build_release.log \ No newline at end of file +"%progpath%\NSIS\makensis.exe" setup\setup.nsi >> %LOG% \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-01-25 18:29:18
|
Revision: 2569 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2569&view=rev Author: chef_koch Date: 2009-01-25 18:29:08 +0000 (Sun, 25 Jan 2009) Log Message: ----------- fixed errors, which made compile impossible Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs Modified: trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -1732,14 +1732,20 @@ private bool RegisterForRawInput(RawInput.RAWINPUTDEVICE[] devices) { +#if DEBUG DebugWriteLine("RegisterForRawInput(): Registering {0} device(s).", devices.Length); +#endif if (RawInput.RegisterRawInputDevices(devices, devices.Length, Marshal.SizeOf(typeof(RawInput.RAWINPUTDEVICE)))) { int dwError = Marshal.GetLastWin32Error(); +#if DEBUG DebugWriteLine("RegisterForRawInput(): error={0}", dwError); +#endif throw new Win32Exception(dwError, "Imon:RegisterForRawInput()"); } +#if DEBUG DebugWriteLine("RegisterForRawInput(): Done."); +#endif return true; } Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -27,7 +27,7 @@ private void ExternalChannels_Load(object sender, EventArgs e) { - IList cards = Card.ListAll(); + System.Collections.Generic.IList<TvDatabase.Card> cards = Card.ListAll(); if (cards.Count == 0) { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-01-25 11:48:01 UTC (rev 2568) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-01-25 18:29:08 UTC (rev 2569) @@ -384,7 +384,7 @@ /// </summary> internal static void LoadExternalConfigs() { - IList cards = Card.ListAll(); + System.Collections.Generic.IList<TvDatabase.Card> cards = Card.ListAll(); if (cards.Count == 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-02-03 17:39:09
|
Revision: 2598 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2598&view=rev Author: chef_koch Date: 2009-02-03 17:39:03 +0000 (Tue, 03 Feb 2009) Log Message: ----------- Documentation is now always included in the installer svn revision is used for assemblies on compiling svn revision is used for installer compiling Modified Paths: -------------- trunk/plugins/IR Server Suite/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build Deploy Release.bat trunk/plugins/IR Server Suite/setup/setup.nsi Added Paths: ----------- trunk/plugins/IR Server Suite/Documentation/IR Server Suite.chm Property Changed: ---------------- trunk/plugins/IR Server Suite/Documentation/ Modified: trunk/plugins/IR Server Suite/Build Deploy Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-02-03 14:37:40 UTC (rev 2597) +++ trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-02-03 17:39:03 UTC (rev 2598) @@ -1,41 +1,3 @@ @ECHO OFF - -REM set build type to debug -set BUILD_TYPE=Debug - - -REM set logfile where the infos are written to, and clear that file -set LOG=build_%BUILD_TYPE%.log -echo. > %LOG% - - -REM Select program path based on current machine environment -set progpath=%ProgramFiles% -if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% - - -echo. -echo -= IR Server Suite =- -echo -= build mode: %BUILD_TYPE% =- -echo. - -echo. -echo Writing SVN revision assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% - -echo. -echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% - -echo. -echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% - -echo. -echo Building Installer... -setup\DeployVersionSVN.exe /svn="%CD%" /GetVersion >> %LOG% -IF NOT EXIST version.txt EXIT -SET /p version=<version.txt -DEL version.txt -"%progpath%\NSIS\makensis.exe" /DVER_BUILD=%version% setup\setup.nsi >> %LOG% \ No newline at end of file +call "Build Deploy Release.bat" Debug \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Build Deploy Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-02-03 14:37:40 UTC (rev 2597) +++ trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-02-03 17:39:03 UTC (rev 2598) @@ -5,35 +5,48 @@ if not %1!==Debug! goto RELEASE :DEBUG set BUILD_TYPE=Debug -goto END_BUILD_TYPE +goto START :RELEASE set BUILD_TYPE=Release -:END_BUILD_TYPE +goto START +:START +REM Select program path based on current machine environment +set progpath=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + + REM set logfile where the infos are written to, and clear that file set LOG=build_%BUILD_TYPE%.log echo. > %LOG% -REM Select program path based on current machine environment -set progpath=%ProgramFiles% -if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% - - echo. echo -= IR Server Suite =- echo -= build mode: %BUILD_TYPE% =- echo. echo. +echo Writing SVN revision assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% + +echo. echo Building IR Server Suite... "%progpath%\Microsoft Visual Studio 8\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% echo. -echo Building Help file... -"%ProgramFiles%\HTML Help Workshop\hhc.exe" "Documentation\IR Server Suite.hhp" >> %LOG% +echo Reverting assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% echo. +echo Reading the svn revision... +echo $WCREV$>template.txt +"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" ".." template.txt version.txt >> %LOG% +SET /p version=<version.txt >> %LOG% +DEL template.txt >> %LOG% +DEL version.txt >> %LOG% + +echo. echo Building Installer... -"%progpath%\NSIS\makensis.exe" setup\setup.nsi >> %LOG% \ No newline at end of file +"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% Property changes on: trunk/plugins/IR Server Suite/Documentation ___________________________________________________________________ Deleted: svn:ignore - IR Server Suite.chm Added: trunk/plugins/IR Server Suite/Documentation/IR Server Suite.chm =================================================================== (Binary files differ) Property changes on: trunk/plugins/IR Server Suite/Documentation/IR Server Suite.chm ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/IR Server Suite/setup/setup.nsi =================================================================== --- trunk/plugins/IR Server Suite/setup/setup.nsi 2009-02-03 14:37:40 UTC (rev 2597) +++ trunk/plugins/IR Server Suite/setup/setup.nsi 2009-02-03 17:39:03 UTC (rev 2598) @@ -280,15 +280,13 @@ WriteRegStr HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" "$DIR_MEDIAPORTAL" WriteRegStr HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" "$DIR_TVSERVER" - ; Write documentation -!if ${VER_BUILD} != 0 - DetailPrint "Warning: Documentation is not included in debug builds" -!else + + ; Create app data directories SetOutPath "$DIR_INSTALL" SetOverwrite ifnewer File "..\Documentation\${PRODUCT_NAME}.chm" -!endif + ; Create app data directories CreateDirectory "$APPDATA\${PRODUCT_NAME}" CreateDirectory "$APPDATA\${PRODUCT_NAME}\Logs" @@ -694,11 +692,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "Tray Launcher" SectionTrayLauncher -!else -${MementoUnselectedSection} "Tray Launcher" SectionTrayLauncher -!endif DetailPrint "Installing Tray Launcher ..." @@ -811,11 +805,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "IR File Tool" SectionIRFileTool -!else -${MementoUnselectedSection} "IR File Tool" SectionIRFileTool -!endif DetailPrint "Installing IR File Tool ..." @@ -847,11 +837,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "Keyboard Relay" SectionKeyboardInputRelay -!else -${MementoUnselectedSection} "Keyboard Relay" SectionKeyboardInputRelay -!endif DetailPrint "Installing Keyboard Input Relay ..." @@ -886,11 +872,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "Dbox Tuner" SectionDboxTuner -!else -${MementoUnselectedSection} "Dbox Tuner" SectionDboxTuner -!endif DetailPrint "Installing Dbox Tuner ..." @@ -916,11 +898,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "HCW PVR Tuner" SectionHcwPvrTuner -!else -${MementoUnselectedSection} "HCW PVR Tuner" SectionHcwPvrTuner -!endif DetailPrint "Installing HCW PVR Tuner ..." @@ -943,11 +921,7 @@ ;====================================== -!if ${VER_BUILD} != 0 ${MementoSection} "Debug Client" SectionDebugClient -!else -${MementoUnselectedSection} "Debug Client" SectionDebugClient -!endif DetailPrint "Installing Debug Client ..." @@ -1024,13 +998,6 @@ Push $0 Call DumpLog - ; Finish -!if ${VER_BUILD} != 0 - SetAutoClose false -!else - SetAutoClose true -!endif - SectionEnd ;====================================== @@ -1072,12 +1039,6 @@ DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" DeleteRegKey HKLM "Software\${PRODUCT_NAME}" -!if ${VER_BUILD} != 0 - SetAutoClose false -!else - SetAutoClose true -!endif - SectionEnd ;====================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-02-10 10:09:04
|
Revision: 2624 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2624&view=rev Author: chemelli_sf Date: 2009-02-10 10:08:56 +0000 (Tue, 10 Feb 2009) Log Message: ----------- - Fixed references paths - Fixed compile errors - Renamed "IR Server Suite - Full.sln" to "IR Server Suite.sln" - Unlinked following incomplete projects: MCEReplacement TestApp CommandProcessor Tira Transceiver Ira Transceiver TelnetInterface TelnetCommand FocusForcer LircBridge Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Removed Paths: ------------- trunk/plugins/IR Server Suite/IR Server Suite - Full.sln Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs 2009-02-09 20:42:09 UTC (rev 2623) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs 2009-02-10 10:08:56 UTC (rev 2624) @@ -108,7 +108,7 @@ void ResetVariables() { - _variables.Clear(); + _variables.VariableClear(); listViewVariables.Clear(); } @@ -192,7 +192,6 @@ TreeNode generalCommands = new TreeNode("General Commands"); generalCommands.Nodes.Add(Common.UITextBeep); generalCommands.Nodes.Add(Common.UITextCloseProgram); - generalCommands.Nodes.Add(Common.UITextDisplay); generalCommands.Nodes.Add(Common.UITextEject); generalCommands.Nodes.Add(Common.UITextHibernate); generalCommands.Nodes.Add(Common.UITextHttpMsg); Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2009-02-09 20:42:09 UTC (rev 2623) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2009-02-10 10:08:56 UTC (rev 2624) @@ -60,10 +60,6 @@ <Project>{21E04B17-D850-43E7-AAD3-876C0E062BDB}</Project> <Name>Command</Name> </ProjectReference> - <ProjectReference Include="..\..\Commands\CommandProcessor\CommandProcessor.csproj"> - <Project>{49CF376E-811C-4EB4-817F-A39C9529B608}</Project> - <Name>Macro</Name> - </ProjectReference> <ProjectReference Include="..\..\Commands\VariableList\VariableList.csproj"> <Project>{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}</Project> <Name>VariableList</Name> Modified: trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj 2009-02-09 20:42:09 UTC (rev 2623) +++ trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj 2009-02-10 10:08:56 UTC (rev 2624) @@ -38,12 +38,12 @@ <ItemGroup> <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\Core\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\WindowPlugins\bin\Release\Dialogs.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\Windows\Dialogs.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -53,7 +53,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\MediaPortal\Utils\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2009-02-09 20:42:09 UTC (rev 2623) +++ trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj 2009-02-10 10:08:56 UTC (rev 2624) @@ -40,7 +40,7 @@ </PropertyGroup> <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> <SpecificVersion>False</SpecificVersion> <Private>False</Private> </Reference> @@ -56,7 +56,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> Deleted: trunk/plugins/IR Server Suite/IR Server Suite - Full.sln =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite - Full.sln 2009-02-09 20:42:09 UTC (rev 2623) +++ trunk/plugins/IR Server Suite/IR Server Suite - Full.sln 2009-02-10 10:08:56 UTC (rev 2624) @@ -1,1109 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Applications", "Applications", "{0C209E91-5AD5-4662-AD0E-976A940D4806}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Server", "Applications\IR Server\IR Server.csproj", "{D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tray Launcher", "Applications\Tray Launcher\Tray Launcher.csproj", "{0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debug Client", "Applications\Debug Client\Debug Client.csproj", "{4CD051F4-F2B5-47B3-8647-F47C2E4DC131}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Translator", "Applications\Translator\Translator.csproj", "{A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote", "Applications\Virtual Remote\Virtual Remote.csproj", "{46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote Skin Editor", "Applications\Virtual Remote Skin Editor\Virtual Remote Skin Editor.csproj", "{D871AB9A-71B3-4D63-8320-084BAD75064E}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IR Server Plugins", "IR Server Plugins", "{0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaPortal Plugins", "MediaPortal Plugins", "{6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MediaPortal Plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "MediaPortal Plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRMan Receiver", "IR Server Plugins\IRMan Receiver\IRMan Receiver.csproj", "{7C686499-7517-4338-8837-7E8617549D9A}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft MCE Transceiver", "IR Server Plugins\Microsoft MCE Transceiver\Microsoft MCE Transceiver.csproj", "{BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "USB-UIRT Transceiver", "IR Server Plugins\USB-UIRT Transceiver\USB-UIRT Transceiver.csproj", "{99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Windows Message Receiver", "IR Server Plugins\Windows Message Receiver\Windows Message Receiver.csproj", "{4CBA81F9-F0C2-4242-8D72-204597285042}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XBCDRC Receiver", "IR Server Plugins\XBCDRC Receiver\XBCDRC Receiver.csproj", "{2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MediaPortal Plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRTrans Transceiver", "IR Server Plugins\IRTrans Transceiver\IRTrans Transceiver.csproj", "{883913F6-F4A7-4DE2-846A-C2102FAF499E}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "X10 Transceiver", "IR Server Plugins\X10 Transceiver\X10 Transceiver.csproj", "{253FFB14-AB8E-49AB-A005-A42428C3F452}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FusionREMOTE Receiver", "IR Server Plugins\FusionRemote Receiver\FusionREMOTE Receiver.csproj", "{9FDD649E-0502-4FED-9AC1-AA0346394375}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{E757F80C-23C5-4AD6-B178-16799E337E03}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssUtils", "Common\IrssUtils\IrssUtils.csproj", "{CA15769C-232E-4CA7-94FD-206A06CA3ABB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Server Plugin Interface", "IR Server Plugins\IR Server Plugin Interface\IR Server Plugin Interface.csproj", "{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Custom HID Receiver", "IR Server Plugins\Custom HID Receiver\Custom HID Receiver.csproj", "{0F6576B4-C88E-4E79-B7E9-9480498C5A32}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Blast", "Applications\IR Blast\IR Blast.csproj", "{C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Blast (No Window)", "Applications\IR Blast (No Window)\IR Blast (No Window).csproj", "{54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssComms", "Common\IrssComms\IrssComms.csproj", "{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinLirc Transceiver", "IR Server Plugins\WinLirc Transceiver\WinLirc Transceiver.csproj", "{E6A68244-8C31-44A9-9F85-B4A102B5F209}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Girder Plugin", "IR Server Plugins\Girder Plugin\Girder Plugin.csproj", "{0C291BE9-5D15-4097-9119-4FFE19C23113}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MCEReplacement", "..\MCEReplacement\MCEReplacement.csproj", "{B45E87BC-AC5A-4923-A911-79C95DCC5602}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serial IR Blaster", "IR Server Plugins\Serial IR Blaster\Serial IR Blaster.csproj", "{1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Input Service", "Input Service", "{DEE5AAD1-0110-4681-8FF9-662CEA72FD94}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Input Service", "Input Service\Input Service\Input Service.csproj", "{8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Configuration", "Input Service\Input Service Configuration\Configuration.csproj", "{DC79E2EC-7D1B-4359-A285-38AC8154166B}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IgorPlug Receiver", "IR Server Plugins\IgorPlug Receiver\IgorPlug Receiver.csproj", "{A4023992-CCD6-461E-8E14-219A496734C5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RedEye Blaster", "IR Server Plugins\RedEye Blaster\RedEye Blaster.csproj", "{5A9954F8-344C-489C-B8DA-8E8927271A02}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web Remote", "Applications\Web Remote\Web Remote.csproj", "{CCDBA239-8E8E-4F5F-A098-7132EED5F160}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wii Remote Receiver", "IR Server Plugins\Wii Remote Receiver\Wii Remote Receiver.csproj", "{A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WiimoteLib", "IR Server Plugins\WiimoteLib\WiimoteLib.csproj", "{37A555DF-7012-4B99-8A47-1C922A361E52}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Direct Input Receiver", "IR Server Plugins\Direct Input Receiver\Direct Input Receiver.csproj", "{732CDF64-D047-4D3C-91DA-E2FF27D84179}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ads Tech PTV-335 Receiver", "IR Server Plugins\Ads Tech PTV-335 Receiver\Ads Tech PTV-335 Receiver.csproj", "{E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Commands", "Commands", "{F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Command", "Commands\Command\Command.csproj", "{21E04B17-D850-43E7-AAD3-876C0E062BDB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VariableList", "Commands\VariableList\VariableList.csproj", "{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "Commands\TestApp\TestApp.csproj", "{A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralCommands", "Commands\GeneralCommands\GeneralCommands.csproj", "{D1BAC7A9-FFB6-44BA-825F-32506831DC3D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Commands\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandProcessor", "Commands\CommandProcessor\CommandProcessor.csproj", "{49CF376E-811C-4EB4-817F-A39C9529B608}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShellLink", "Common\ShellLink\ShellLink.csproj", "{28923F6E-8A68-4BC8-A507-825B09C3F64E}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR File Tool", "Applications\IR File Tool\IR File Tool.csproj", "{B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCW Receiver", "IR Server Plugins\HCW Receiver\HCW Receiver.csproj", "{EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tira Transceiver", "IR Server Plugins\Tira Transceiver\Tira Transceiver.csproj", "{6137C390-DDB0-44B0-8ED5-51B45C0D4404}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ira Transceiver", "IR Server Plugins\Ira Transceiver\Ira Transceiver.csproj", "{0E045E97-EEB2-461C-A416-CFC8E452E044}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speech Receiver", "IR Server Plugins\Speech Receiver\Speech Receiver.csproj", "{3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveDrive Receiver", "IR Server Plugins\LiveDrive Receiver\LiveDrive Receiver.csproj", "{ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RC102 Receiver", "IR Server Plugins\RC102 Receiver\RC102 Receiver.csproj", "{A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacroScope", "Applications\MacroScope\MacroScope.csproj", "{2F296C09-627B-4D6E-A041-1601A8C030C7}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sage Setup", "Applications\SageSetup\Sage Setup.csproj", "{905131F8-F8AC-4A65-A722-37783902D7B8}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dbox Tuner", "Applications\Dbox Tuner\Dbox Tuner.csproj", "{F8CC05AA-6306-459E-BD32-40C02489EFEC}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR501 Receiver", "IR Server Plugins\IR501 Receiver\IR501 Receiver.csproj", "{C7BF555E-638F-4E1B-9D5A-D2D226C77676}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR507 Receiver", "IR Server Plugins\IR507 Receiver\IR507 Receiver.csproj", "{1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoolCommand Receiver", "IR Server Plugins\CoolCommand Receiver\CoolCommand Receiver.csproj", "{C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Abstractor", "Applications\Abstractor\Abstractor.csproj", "{66F37FF9-0398-4954-812D-065C2D153746}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacMini Receiver", "IR Server Plugins\MacMini Receiver\MacMini Receiver.csproj", "{FCE5308F-C451-4113-B7F2-BB6212EA7FAD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCW PVR Tuner", "Applications\HCW PVR Tuner\HCW PVR Tuner.csproj", "{EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (PocketPC2003)", "Applications\Virtual Remote (PocketPC2003)\Virtual Remote (PocketPC2003).csproj", "{48839540-780F-4323-8F50-68E2A2385502}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (WinCE5)", "Applications\Virtual Remote (WinCE5)\Virtual Remote (WinCE5).csproj", "{3BB1C204-D08E-43E5-AC68-DCDD624404A5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (Smartphone2003)", "Applications\Virtual Remote (Smartphone2003)\Virtual Remote (Smartphone2003).csproj", "{BA322C1E-D7C6-4673-80E2-123B7714B0DB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keyboard Input Relay", "Applications\Keyboard Input Relay\Keyboard Input Relay.csproj", "{097F7027-77A1-4623-8D6C-3D2020769EFD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (PocketPC2003) Installer", "Applications\Virtual Remote (PocketPC2003) Installer\Virtual Remote (PocketPC2003) Installer.vddproj", "{FEB70334-6F8E-41D5-9B0A-D5714A296830}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (Smartphone2003) Installer", "Applications\Virtual Remote (Smartphone2003) Installer\Virtual Remote (Smartphone2003) Installer.vddproj", "{4C18B138-BF94-4224-9085-4D3EDA680EDA}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (WinCE5) Installer", "Applications\Virtual Remote (WinCE5) Installer\Virtual Remote (WinCE5) Installer.vddproj", "{DCE0C464-3843-45F1-A48B-C1A3FF532C1D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Technotrend Receiver", "IR Server Plugins\Technotrend Receiver\Technotrend Receiver.csproj", "{E83E5C73-5F70-4B52-B6BD-E906BAE90DF6}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keyboard Input", "IR Server Plugins\Keyboard Input\Keyboard Input.csproj", "{26DEDF6D-F60D-4311-9A9E-DDF64500D5BF}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogTimeCodeExtractor", "Applications\LogTimeCodeExtractor\LogTimeCodeExtractor.csproj", "{58BFF250-541B-4AA4-A62D-ACB819AD317B}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssScheduler", "Common\IrssScheduler\IrssScheduler.csproj", "{28098574-D22E-457C-AFFA-560554499EAC}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelnetInterface", "..\TelnetInterface\TelnetInterface.csproj", "{E8DE467F-0BD7-49CE-A5AC-4F1482EF04B6}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imon Receiver", "IR Server Plugins\Imon Receiver\Imon Receiver.csproj", "{1F9F8771-1173-409E-A3D0-265756220D27}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelnetCommand", "..\TelnetCommand\TelnetCommand.csproj", "{906BCFAC-8475-412E-951C-588BB9FC8DCD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Media Center Blaster", "Applications\Media Center Blaster\Media Center Blaster.csproj", "{349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FocusForcer", "Applications\FocusForcer\FocusForcer.csproj", "{ADB22067-F201-4BEB-88B5-190A8A1755FB}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imon USB Receivers", "IR Server Plugins\Imon USB Receivers\Imon USB Receivers.csproj", "{EC37743A-64B2-472A-9EB6-CB052AD2B35C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pinnacle Serial Receiver", "IR Server Plugins\Pinnacle Serial Receiver\Pinnacle Serial Receiver.csproj", "{EBFA0F67-1EB6-4282-8475-C397B9852B3F}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LircBridge", "Applications\LircBridge\LircBridge.csproj", "{8CE8091F-A4B8-4CE9-8877-C77223CB0BAD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|x86.ActiveCfg = Debug|Any CPU - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|Any CPU.Build.0 = Release|Any CPU - {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|x86.ActiveCfg = Release|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|x86.ActiveCfg = Debug|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|Any CPU.Build.0 = Release|Any CPU - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|x86.ActiveCfg = Release|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|x86.ActiveCfg = Debug|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|Any CPU.Build.0 = Release|Any CPU - {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|x86.ActiveCfg = Release|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|x86.ActiveCfg = Debug|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|Any CPU.Build.0 = Release|Any CPU - {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|x86.ActiveCfg = Release|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|Any CPU.Build.0 = Debug|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|x86.ActiveCfg = Debug|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|Any CPU.ActiveCfg = Release|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|Any CPU.Build.0 = Release|Any CPU - {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|x86.ActiveCfg = Release|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|x86.ActiveCfg = Debug|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.Build.0 = Release|Any CPU - {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|x86.ActiveCfg = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.ActiveCfg = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.ActiveCfg = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.ActiveCfg = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.ActiveCfg = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.ActiveCfg = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.ActiveCfg = Release|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Debug|x86.ActiveCfg = Debug|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Release|Any CPU.Build.0 = Release|Any CPU - {7C686499-7517-4338-8837-7E8617549D9A}.Release|x86.ActiveCfg = Release|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|x86.ActiveCfg = Debug|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|Any CPU.Build.0 = Release|Any CPU - {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|x86.ActiveCfg = Release|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|x86.ActiveCfg = Debug|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|Any CPU.Build.0 = Release|Any CPU - {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|x86.ActiveCfg = Release|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|x86.ActiveCfg = Debug|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|Any CPU.Build.0 = Release|Any CPU - {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|x86.ActiveCfg = Release|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|x86.ActiveCfg = Debug|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.Build.0 = Release|Any CPU - {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|x86.ActiveCfg = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.ActiveCfg = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.ActiveCfg = Release|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|x86.ActiveCfg = Debug|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|Any CPU.Build.0 = Release|Any CPU - {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|x86.ActiveCfg = Release|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|Any CPU.Build.0 = Debug|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|x86.ActiveCfg = Debug|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|Any CPU.ActiveCfg = Release|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|Any CPU.Build.0 = Release|Any CPU - {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|x86.ActiveCfg = Release|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|x86.ActiveCfg = Debug|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|Any CPU.Build.0 = Release|Any CPU - {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|x86.ActiveCfg = Release|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|x86.ActiveCfg = Debug|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.Build.0 = Release|Any CPU - {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|x86.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.ActiveCfg = Release|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|x86.ActiveCfg = Debug|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|Any CPU.Build.0 = Release|Any CPU - {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|x86.ActiveCfg = Release|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|x86.ActiveCfg = Debug|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|Any CPU.Build.0 = Release|Any CPU - {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|x86.ActiveCfg = Release|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|x86.ActiveCfg = Debug|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|Any CPU.Build.0 = Release|Any CPU - {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|x86.ActiveCfg = Release|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|Any CPU.Build.0 = Debug|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|x86.ActiveCfg = Debug|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|Any CPU.ActiveCfg = Release|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|Any CPU.Build.0 = Release|Any CPU - {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|x86.ActiveCfg = Release|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|x86.ActiveCfg = Debug|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|Any CPU.Build.0 = Release|Any CPU - {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|x86.ActiveCfg = Release|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|x86.ActiveCfg = Debug|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|Any CPU.Build.0 = Release|Any CPU - {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|x86.ActiveCfg = Release|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|x86.ActiveCfg = Debug|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|Any CPU.Build.0 = Release|Any CPU - {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|x86.ActiveCfg = Release|Any CPU - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Debug|x86.ActiveCfg = Debug|x86 - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Debug|x86.Build.0 = Debug|x86 - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Release|Any CPU.Build.0 = Release|Any CPU - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Release|x86.ActiveCfg = Release|x86 - {B45E87BC-AC5A-4923-A911-79C95DCC5602}.Release|x86.Build.0 = Release|x86 - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|x86.ActiveCfg = Debug|Any CPU - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|Any CPU.Build.0 = Release|Any CPU - {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|x86.ActiveCfg = Release|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|x86.ActiveCfg = Debug|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|Any CPU.Build.0 = Release|Any CPU - {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|x86.ActiveCfg = Release|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|x86.ActiveCfg = Debug|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|Any CPU.Build.0 = Release|Any CPU - {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|x86.ActiveCfg = Release|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|x86.ActiveCfg = Debug|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Release|Any CPU.Build.0 = Release|Any CPU - {A4023992-CCD6-461E-8E14-219A496734C5}.Release|x86.ActiveCfg = Release|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|x86.ActiveCfg = Debug|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|Any CPU.Build.0 = Release|Any CPU - {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|x86.ActiveCfg = Release|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|x86.ActiveCfg = Debug|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|Any CPU.Build.0 = Release|Any CPU - {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|x86.ActiveCfg = Release|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|x86.ActiveCfg = Debug|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|Any CPU.Build.0 = Release|Any CPU - {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|x86.ActiveCfg = Release|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|Any CPU.Build.0 = Debug|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|x86.ActiveCfg = Debug|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|Any CPU.ActiveCfg = Release|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|Any CPU.Build.0 = Release|Any CPU - {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|x86.ActiveCfg = Release|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|Any CPU.Build.0 = Debug|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|x86.ActiveCfg = Debug|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|Any CPU.ActiveCfg = Release|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|Any CPU.Build.0 = Release|Any CPU - {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|x86.ActiveCfg = Release|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|x86.ActiveCfg = Debug|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|Any CPU.Build.0 = Release|Any CPU - {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|x86.ActiveCfg = Release|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|x86.ActiveCfg = Debug|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|Any CPU.Build.0 = Release|Any CPU - {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|x86.ActiveCfg = Release|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|x86.ActiveCfg = Debug|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|Any CPU.Build.0 = Release|Any CPU - {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|x86.ActiveCfg = Release|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Debug|x86.ActiveCfg = Debug|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Release|Any CPU.Build.0 = Release|Any CPU - {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Release|x86.ActiveCfg = Release|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|x86.ActiveCfg = Debug|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.Build.0 = Release|Any CPU - {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|x86.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.ActiveCfg = Release|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Debug|Any CPU.Build.0 = Debug|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Debug|x86.ActiveCfg = Debug|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Release|Any CPU.ActiveCfg = Release|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Release|Any CPU.Build.0 = Release|Any CPU - {49CF376E-811C-4EB4-817F-A39C9529B608}.Release|x86.ActiveCfg = Release|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|x86.ActiveCfg = Debug|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|Any CPU.Build.0 = Release|Any CPU - {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|x86.ActiveCfg = Release|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|x86.ActiveCfg = Debug|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|Any CPU.Build.0 = Release|Any CPU - {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|x86.ActiveCfg = Release|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|x86.ActiveCfg = Debug|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|Any CPU.Build.0 = Release|Any CPU - {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|x86.ActiveCfg = Release|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Debug|x86.ActiveCfg = Debug|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Release|Any CPU.Build.0 = Release|Any CPU - {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Release|x86.ActiveCfg = Release|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Debug|x86.ActiveCfg = Debug|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Release|Any CPU.Build.0 = Release|Any CPU - {0E045E97-EEB2-461C-A416-CFC8E452E044}.Release|x86.ActiveCfg = Release|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|x86.ActiveCfg = Debug|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|Any CPU.Build.0 = Release|Any CPU - {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|x86.ActiveCfg = Release|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|x86.ActiveCfg = Debug|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|Any CPU.Build.0 = Release|Any CPU - {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|x86.ActiveCfg = Release|Any CPU - {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU ... [truncated message content] |
From: <che...@us...> - 2009-02-10 14:01:22
|
Revision: 2625 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2625&view=rev Author: chemelli_sf Date: 2009-02-10 14:01:17 +0000 (Tue, 10 Feb 2009) Log Message: ----------- - Removed postbuild un.need actions - Removed old NSIS script Modified Paths: -------------- trunk/plugins/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj Removed Paths: ------------- trunk/plugins/IR Server Suite/setup/IR Server Suite.nsi.old Modified: trunk/plugins/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2009-02-10 10:08:56 UTC (rev 2624) +++ trunk/plugins/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2009-02-10 14:01:17 UTC (rev 2625) @@ -137,6 +137,7 @@ <PropertyGroup> <PreBuildEvent> </PreBuildEvent> - <PostBuildEvent>copy "$(TargetDir)*.*" "C:\Program Files\IR Server Suite\Commands\"</PostBuildEvent> + <PostBuildEvent> + </PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj 2009-02-10 10:08:56 UTC (rev 2624) +++ trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj 2009-02-10 14:01:17 UTC (rev 2625) @@ -139,6 +139,7 @@ </Target> --> <PropertyGroup> - <PostBuildEvent>copy "$(TargetDir)*.*" "C:\Program Files\IR Server Suite\Commands\"</PostBuildEvent> + <PostBuildEvent> + </PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/setup/IR Server Suite.nsi.old =================================================================== --- trunk/plugins/IR Server Suite/setup/IR Server Suite.nsi.old 2009-02-10 10:08:56 UTC (rev 2624) +++ trunk/plugins/IR Server Suite/setup/IR Server Suite.nsi.old 2009-02-10 14:01:17 UTC (rev 2625) @@ -1,996 +0,0 @@ -;====================================== -; IR Server Suite.nsi -; -; (C) Copyright Aaron Dinnage, 2008 -;====================================== -!define DEBUG - -!ifdef DEBUG - !define BuildType "Debug" -!else - !define BuildType "Release" -!endif - -!include "x64.nsh" -!include "MUI.nsh" - -!define PRODUCT_NAME "IR Server Suite" -!define PRODUCT_VERSION "1.4.2" -!define PRODUCT_PUBLISHER "and-81" -!define PRODUCT_WEB_SITE "http://forum.team-mediaportal.com/mce_replacement_plugin-f165.html" - -Name "${PRODUCT_NAME}" -OutFile "..\${PRODUCT_NAME} - ${PRODUCT_VERSION}.exe" -InstallDir "" -!ifdef DEBUG - ShowInstDetails show - ShowUninstDetails show -!else - ShowInstDetails hide - ShowUninstDetails hide -!endif -BrandingText "${PRODUCT_NAME} by Aaron Dinnage" -SetCompressor /SOLID /FINAL lzma -CRCCheck On - -; Variables -var DIR_INSTALL -var DIR_MEDIAPORTAL -var DIR_TVSERVER - -!define MUI_ABORTWARNING -!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\win-install.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\win-uninstall.ico" - -!insertmacro MUI_PAGE_WELCOME -!insertmacro MUI_PAGE_LICENSE "..\Documentation\LICENSE.GPL" -!insertmacro MUI_PAGE_COMPONENTS - -; Main app install path -!define MUI_PAGE_CUSTOMFUNCTION_SHOW DirectoryShowApp -!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeaveApp -!insertmacro MUI_PAGE_DIRECTORY - -; MediaPortal install path -!define MUI_PAGE_CUSTOMFUNCTION_PRE DirectoryPreMP -!define MUI_PAGE_CUSTOMFUNCTION_SHOW DirectoryShowMP -!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeaveMP -!insertmacro MUI_PAGE_DIRECTORY - -; TV Server install path -!define MUI_PAGE_CUSTOMFUNCTION_PRE DirectoryPreTV -!define MUI_PAGE_CUSTOMFUNCTION_SHOW DirectoryShowTV -!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeaveTV -!insertmacro MUI_PAGE_DIRECTORY - -!insertmacro MUI_PAGE_INSTFILES -!insertmacro MUI_PAGE_FINISH - -!insertmacro MUI_UNPAGE_INSTFILES - -!insertmacro MUI_LANGUAGE "English" - -;====================================== -;====================================== - -!macro initRegKeys - ${If} ${RunningX64} - - SetRegView 64 - - ${DisableX64FSRedirection} - - ; Get IR Server Suite installation directory ... - ReadRegStr $DIR_INSTALL HKLM "Software\${PRODUCT_NAME}" "Install_Dir" - ${If} $DIR_INSTALL == "" - StrCpy '$DIR_INSTALL' '$PROGRAMFILES\${PRODUCT_NAME}' - ${Endif} - - ; Get MediaPortal installation directory ... - ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" - ${If} $DIR_MEDIAPORTAL == "" - - ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\Team MediaPortal\MediaPortal" "ApplicationDir" - - ${If} $DIR_MEDIAPORTAL == "" - StrCpy '$DIR_MEDIAPORTAL' '$PROGRAMFILES\Team MediaPortal\MediaPortal' - ${Endif} - - ${Endif} - - ; Get MediaPortal TV Server installation directory ... - ReadRegStr $DIR_TVSERVER HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" - ${If} $DIR_TVSERVER == "" - - ReadRegStr $DIR_TVSERVER HKLM "Software\Team MediaPortal\MediaPortal TV Server" "InstallPath" - - ${If} $DIR_TVSERVER == "" - StrCpy '$DIR_TVSERVER' '$PROGRAMFILES\Team MediaPortal\MediaPortal TV Server' - ${Endif} - - ${Endif} - - ${EnableX64FSRedirection} - - ${Else} - - SetRegView 32 - - ; Get IR Server Suite installation directory ... - ReadRegStr $DIR_INSTALL HKLM "Software\${PRODUCT_NAME}" "Install_Dir" - ${If} $DIR_INSTALL == "" - StrCpy '$DIR_INSTALL' '$PROGRAMFILES\${PRODUCT_NAME}' - ${Endif} - - ; Get MediaPortal installation directory ... - ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" - ${If} $DIR_MEDIAPORTAL == "" - - ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\Team MediaPortal\MediaPortal" "ApplicationDir" - - ${If} $DIR_MEDIAPORTAL == "" - StrCpy '$DIR_MEDIAPORTAL' '$PROGRAMFILES\Team MediaPortal\MediaPortal' - ${Endif} - - ${Endif} - - ; Get MediaPortal TV Server installation directory ... - ReadRegStr $DIR_TVSERVER HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" - ${If} $DIR_TVSERVER == "" - - ReadRegStr $DIR_TVSERVER HKLM "Software\Team MediaPortal\MediaPortal TV Server" "InstallPath" - - ${If} $DIR_TVSERVER == "" - StrCpy '$DIR_TVSERVER' '$PROGRAMFILES\Team MediaPortal\MediaPortal TV Server' - ${Endif} - - ${Endif} - - ${Endif} -!macroend - -;====================================== -;====================================== - -Function .onInit - -!insertmacro initRegKeys - -FunctionEnd - -;====================================== - -Function .onInstSuccess - - IfFileExists "$DIR_INSTALL\Input Service\Input Service.exe" StartInputService SkipStartInputService - -StartInputService: - Exec '"$DIR_INSTALL\Input Service\Input Service.exe" /start' - -SkipStartInputService: - -FunctionEnd - -;====================================== - -Function DirectoryPreMP - SectionGetFlags 3 $R0 - IntOp $R0 $R0 & ${SF_SELECTED} - IntCmp $R0 ${SF_SELECTED} EndDirectoryPreMP - - SectionGetFlags 4 $R0 - IntOp $R0 $R0 & ${SF_SELECTED} - IntCmp $R0 ${SF_SELECTED} EndDirectoryPreMP - - SectionGetFlags 5 $R0 - IntOp $R0 $R0 & ${SF_SELECTED} - IntCmp $R0 ${SF_SELECTED} EndDirectoryPreMP - - Abort - -EndDirectoryPreMP: -FunctionEnd - -;====================================== - -Function DirectoryPreTV - SectionGetFlags 6 $R0 - IntOp $R0 $R0 & ${SF_SELECTED} - IntCmp $R0 ${SF_SELECTED} EndDirectoryPreTV - - Abort - -EndDirectoryPreTV: -FunctionEnd - -;====================================== - -Function DirectoryShowApp - !insertmacro MUI_HEADER_TEXT "Choose ${PRODUCT_NAME} Location" "Choose the folder in which to install ${PRODUCT_NAME}." - !insertmacro MUI_INNERDIALOG_TEXT 1041 "${PRODUCT_NAME} Folder" - !insertmacro MUI_INNERDIALOG_TEXT 1019 "$DIR_INSTALL" - !insertmacro MUI_INNERDIALOG_TEXT 1006 "Setup will install ${PRODUCT_NAME} in the following folder.$\r$\n$\r$\nTo install in a different folder, click Browse and select another folder. Click Next to continue." -FunctionEnd - -;====================================== - -Function DirectoryShowMP - !insertmacro MUI_HEADER_TEXT "Choose MediaPortal Location" "Choose the folder in which to install MediaPortal plugins." - !insertmacro MUI_INNERDIALOG_TEXT 1041 "MediaPortal Folder" - !insertmacro MUI_INNERDIALOG_TEXT 1019 "$DIR_MEDIAPORTAL" - !insertmacro MUI_INNERDIALOG_TEXT 1006 "Setup will install MediaPortal plugins in the following folder.$\r$\n$\r$\nTo install in a different folder, click Browse and select another folder. Click Install to start the installation." -FunctionEnd - -;====================================== - -Function DirectoryShowTV - !insertmacro MUI_HEADER_TEXT "Choose TV Server Location" "Choose the folder in which to install TV Server plugins." - !insertmacro MUI_INNERDIALOG_TEXT 1041 "TV Server Folder" - !insertmacro MUI_INNERDIALOG_TEXT 1019 "$DIR_TVSERVER" - !insertmacro MUI_INNERDIALOG_TEXT 1006 "Setup will install TV Server plugins in the following folder.$\r$\n$\r$\nTo install in a different folder, click Browse and select another folder. Click Install to start the installation." -FunctionEnd - -;====================================== - -Function DirectoryLeaveApp - StrCpy $DIR_INSTALL $INSTDIR -FunctionEnd - -;====================================== - -Function DirectoryLeaveMP - StrCpy $DIR_MEDIAPORTAL $INSTDIR -FunctionEnd - -;====================================== - -Function DirectoryLeaveTV - StrCpy $DIR_TVSERVER $INSTDIR -FunctionEnd - -;====================================== - -!define LVM_GETITEMCOUNT 0x1004 -!define LVM_GETITEMTEXT 0x102D - -Function DumpLog - Exch $5 - Push $0 - Push $1 - Push $2 - Push $3 - Push $4 - Push $6 - - FindWindow $0 "#32770" "" $HWNDPARENT - GetDlgItem $0 $0 1016 - StrCmp $0 0 exit - FileOpen $5 $5 "w" - StrCmp $5 "" exit - SendMessage $0 ${LVM_GETITEMCOUNT} 0 0 $6 - System::Alloc ${NSIS_MAX_STRLEN} - Pop $3 - StrCpy $2 0 - System::Call "*(i, i, i, i, i, i, i, i, i) i \ - (0, 0, 0, 0, 0, r3, ${NSIS_MAX_STRLEN}) .r1" - loop: StrCmp $2 $6 done - System::Call "User32::SendMessageA(i, i, i, i) i \ - ($0, ${LVM_GETITEMTEXT}, $2, r1)" - System::Call "*$3(&t${NSIS_MAX_STRLEN} .r4)" - FileWrite $5 "$4$\r$\n" - IntOp $2 $2 + 1 - Goto loop - done: - FileClose $5 - System::Free $1 - System::Free $3 - exit: - Pop $6 - Pop $4 - Pop $3 - Pop $2 - Pop $1 - Pop $0 - Exch $5 -FunctionEnd - -;====================================== -;====================================== - -Section "-Prepare" - - DetailPrint "Preparing to install ..." - - ; Use the all users context - SetShellVarContext all - - ; Kill running Programs - DetailPrint "Terminating processes ..." - ExecWait '"taskkill" /F /IM Translator.exe' - ExecWait '"taskkill" /F /IM TrayLauncher.exe' - ExecWait '"taskkill" /F /IM WebRemote.exe' - ExecWait '"taskkill" /F /IM VirtualRemote.exe' - ExecWait '"taskkill" /F /IM VirtualRemoteSkinEditor.exe' - ExecWait '"taskkill" /F /IM IRFileTool.exe' - ExecWait '"taskkill" /F /IM DebugClient.exe' - ExecWait '"taskkill" /F /IM KeyboardInputRelay.exe' - - IfFileExists "$DIR_INSTALL\Input Service\Input Service.exe" StopInputService SkipStopInputService - -StopInputService: - ExecWait '"$DIR_INSTALL\Input Service\Input Service.exe" /stop' - -SkipStopInputService: - Sleep 100 - -SectionEnd - -;====================================== - -Section "-Core" - - DetailPrint "Setting up paths and installing core files ..." - - ; Use the all users context - SetShellVarContext all - - ; Create install directory - CreateDirectory "$DIR_INSTALL" - - ; Write the installation paths into the registry - WriteRegStr HKLM "Software\${PRODUCT_NAME}" "Install_Dir" "$DIR_INSTALL" - WriteRegStr HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" "$DIR_MEDIAPORTAL" - WriteRegStr HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" "$DIR_TVSERVER" - - ; Write documentation -!ifdef DEBUG - DetailPrint "Warning: Documentation is not included in debug builds" -!else - SetOutPath "$DIR_INSTALL" - SetOverwrite ifnewer - File "..\Documentation\${PRODUCT_NAME}.chm" -!endif - - ; Create app data directories - CreateDirectory "$APPDATA\${PRODUCT_NAME}" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Logs" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\IR Commands" - - ; Copy known set top boxes - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" - SetOutPath "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" - SetOverwrite ifnewer - File /r /x .svn "..\Set Top Boxes\*.*" - - ; Create a start menu shortcut folder - CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" - -SectionEnd - -;====================================== - -Section "Input Service" SectionInputService - - DetailPrint "Installing Input Service ..." - - ; Use the all users context - SetShellVarContext all - - ; Uninstall current Input Service ... - IfFileExists "$DIR_INSTALL\Input Service\Input Service.exe" UninstallInputService SkipUninstallInputService - -UninstallInputService: - ExecWait '"$DIR_INSTALL\Input Service\Input Service.exe" /uninstall' - -SkipUninstallInputService: - Sleep 100 - - ; Installing Input Service - CreateDirectory "$DIR_INSTALL\Input Service" - SetOutPath "$DIR_INSTALL\Input Service" - SetOverwrite ifnewer - File "..\Input Service\Input Service\bin\${BuildType}\*.*" - - ; Installing Input Service Configuration - CreateDirectory "$DIR_INSTALL\Input Service Configuration" - SetOutPath "$DIR_INSTALL\Input Service Configuration" - SetOverwrite ifnewer - File "..\Input Service\Input Service Configuration\bin\${BuildType}\*.*" - - ; Install IR Server Plugins ... - DetailPrint "Installing IR Server Plugins ..." - CreateDirectory "$DIR_INSTALL\IR Server Plugins" - SetOutPath "$DIR_INSTALL\IR Server Plugins" - SetOverwrite ifnewer - - File "..\IR Server Plugins\Ads Tech PTV-335 Receiver\bin\${BuildType}\Ads Tech PTV-335 Receiver.*" - File "..\IR Server Plugins\CoolCommand Receiver\bin\${BuildType}\CoolCommand Receiver.*" - File "..\IR Server Plugins\Custom HID Receiver\bin\${BuildType}\Custom HID Receiver.*" - File "..\IR Server Plugins\Direct Input Receiver\bin\${BuildType}\Direct Input Receiver.*" - File "..\IR Server Plugins\Direct Input Receiver\bin\${BuildType}\Microsoft.DirectX.DirectInput.dll" - File "..\IR Server Plugins\Direct Input Receiver\bin\${BuildType}\Microsoft.DirectX.dll" - File "..\IR Server Plugins\FusionRemote Receiver\bin\${BuildType}\FusionRemote Receiver.*" - File "..\IR Server Plugins\Girder Plugin\bin\${BuildType}\Girder Plugin.*" - File "..\IR Server Plugins\HCW Receiver\bin\${BuildType}\HCW Receiver.*" - File "..\IR Server Plugins\IgorPlug Receiver\bin\${BuildType}\IgorPlug Receiver.*" - ;File "..\IR Server Plugins\IR501 Receiver\bin\${BuildType}\IR501 Receiver.*" - File "..\IR Server Plugins\IR507 Receiver\bin\${BuildType}\IR507 Receiver.*" - ;File "..\IR Server Plugins\Ira Transceiver\bin\${BuildType}\Ira Transceiver.*" - File "..\IR Server Plugins\IRMan Receiver\bin\${BuildType}\IRMan Receiver.*" - File "..\IR Server Plugins\IRTrans Transceiver\bin\${BuildType}\IRTrans Transceiver.*" - ;File "..\IR Server Plugins\Keyboard Input\bin\${BuildType}\Keyboard Input.*" - File "..\IR Server Plugins\LiveDrive Receiver\bin\${BuildType}\LiveDrive Receiver.*" - File "..\IR Server Plugins\MacMini Receiver\bin\${BuildType}\MacMini Receiver.*" - File "..\IR Server Plugins\Microsoft MCE Transceiver\bin\${BuildType}\Microsoft MCE Transceiver.*" - ;File "..\IR Server Plugins\RC102 Receiver\bin\${BuildType}\RC102 Receiver.*" - File "..\IR Server Plugins\RedEye Blaster\bin\${BuildType}\RedEye Blaster.*" - File "..\IR Server Plugins\Serial IR Blaster\bin\${BuildType}\Serial IR Blaster.*" - ;File "..\IR Server Plugins\Speech Receiver\bin\${BuildType}\Speech Receiver.*" - File "..\IR Server Plugins\Technotrend Receiver\bin\${BuildType}\Technotrend Receiver.*" - File "..\IR Server Plugins\Technotrend Receiver\bin\${BuildType}\ttBdaDrvApi_Dll.dll" - ;File "..\IR Server Plugins\Tira Transceiver\bin\${BuildType}\Tira Transceiver.*" - File "..\IR Server Plugins\USB-UIRT Transceiver\bin\${BuildType}\USB-UIRT Transceiver.*" - File "..\IR Server Plugins\Wii Remote Receiver\bin\${BuildType}\Wii Remote Receiver.*" - File "..\IR Server Plugins\WiimoteLib\bin\${BuildType}\WiimoteLib.*" - File "..\IR Server Plugins\Windows Message Receiver\bin\${BuildType}\Windows Message Receiver.*" - File "..\IR Server Plugins\WinLirc Transceiver\bin\${BuildType}\WinLirc Transceiver.*" - File "..\IR Server Plugins\X10 Transceiver\bin\${BuildType}\X10 Transceiver.*" - File "..\IR Server Plugins\X10 Transceiver\bin\${BuildType}\Interop.X10.dll" - File "..\IR Server Plugins\XBCDRC Receiver\bin\${BuildType}\XBCDRC Receiver.*" - - ; Create App Data Folder for IR Server configuration files - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Input Service" - - ; Copy Abstract Remote maps - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Input Service\Abstract Remote Maps" - SetOutPath "$APPDATA\${PRODUCT_NAME}\Input Service\Abstract Remote Maps" - SetOverwrite ifnewer - File /r /x .svn "..\Input Service\Input Service\Abstract Remote Maps\*.*" - File "..\Input Service\Input Service\RemoteTable.xsd" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Input Service Configuration.lnk" "$DIR_INSTALL\Input Service Configuration\Input Service Configuration.exe" "" "$DIR_INSTALL\Input Service Configuration\Input Service Configuration.exe" 0 - - ; Launch Input Service - DetailPrint "Starting Input Service ..." - ExecWait '"$DIR_INSTALL\Input Service\Input Service.exe" /install' - -SectionEnd - -;====================================== - -Section "MP Control Plugin" SectionMPControlPlugin - - DetailPrint "Installing MP Control Plugin ..." - - ; Use the all users context - SetShellVarContext all - - ; Write plugin dll - SetOutPath "$DIR_MEDIAPORTAL\Plugins\Process" - SetOverwrite ifnewer - File "..\MediaPortal Plugins\MP Control Plugin\bin\${BuildType}\MPUtils.dll" - File "..\MediaPortal Plugins\MP Control Plugin\bin\${BuildType}\IrssComms.dll" - File "..\MediaPortal Plugins\MP Control Plugin\bin\${BuildType}\IrssUtils.dll" - File "..\MediaPortal Plugins\MP Control Plugin\bin\${BuildType}\MPControlPlugin.dll" - - ; Write input mapping - SetOutPath "$DIR_MEDIAPORTAL\InputDeviceMappings\defaults" - SetOverwrite ifnewer - File "..\MediaPortal Plugins\MP Control Plugin\InputMapping\MPControlPlugin.xml" - - ; Write app data - CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" - SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" - SetOverwrite ifnewer - File /r /x .svn "..\MediaPortal Plugins\MP Control Plugin\AppData\*.*" - - ; Create Macro folder - CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Control Plugin\Macro" - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "MP Blast Zone Plugin" SectionMPBlastZonePlugin -!else -Section /o "MP Blast Zone Plugin" SectionMPBlastZonePlugin -!endif - - DetailPrint "Installing MP Blast Zone Plugin ..." - - ; Use the all users context - SetShellVarContext all - - ; Write plugin dll - SetOutPath "$DIR_MEDIAPORTAL\Plugins\Windows" - SetOverwrite ifnewer - File "..\MediaPortal Plugins\MP Blast Zone Plugin\bin\${BuildType}\MPUtils.dll" - File "..\MediaPortal Plugins\MP Blast Zone Plugin\bin\${BuildType}\IrssComms.dll" - File "..\MediaPortal Plugins\MP Blast Zone Plugin\bin\${BuildType}\IrssUtils.dll" - File "..\MediaPortal Plugins\MP Blast Zone Plugin\bin\${BuildType}\MPBlastZonePlugin.dll" - - ; Write app data - CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" - SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" - SetOverwrite off - File "..\MediaPortal Plugins\MP Blast Zone Plugin\AppData\Menu.xml" - - ; Write skin files - SetOutPath "$DIR_MEDIAPORTAL\Skin\BlueTwo" - SetOverwrite on - File /r /x .svn "..\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" - - SetOutPath "$DIR_MEDIAPORTAL\Skin\BlueTwo wide" - SetOverwrite on - File /r /x .svn "..\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" - - ; Create Macro folder - CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin\Macro" - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "TV2 Blaster Plugin" SectionTV2BlasterPlugin -!else -Section /o "TV2 Blaster Plugin" SectionTV2BlasterPlugin -!endif - - DetailPrint "Installing TV2 Blaster Plugin ..." - - ; Use the all users context - SetShellVarContext all - - ; Write plugin dll - SetOutPath "$DIR_MEDIAPORTAL\Plugins\Process" - SetOverwrite ifnewer - File "..\MediaPortal Plugins\TV2 Blaster Plugin\bin\${BuildType}\MPUtils.dll" - File "..\MediaPortal Plugins\TV2 Blaster Plugin\bin\${BuildType}\IrssComms.dll" - File "..\MediaPortal Plugins\TV2 Blaster Plugin\bin\${BuildType}\IrssUtils.dll" - File "..\MediaPortal Plugins\TV2 Blaster Plugin\bin\${BuildType}\TV2BlasterPlugin.dll" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV2 Blaster Plugin" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV2 Blaster Plugin\Macro" - -SectionEnd - -;====================================== - -Section /o "TV3 Blaster Plugin" SectionTV3BlasterPlugin - - DetailPrint "Installing TV3 Blaster Plugin ..." - - ; Use the all users context - SetShellVarContext all - - ; Write plugin dll - SetOutPath "$DIR_TVSERVER\Plugins" - SetOverwrite ifnewer - File "..\MediaPortal Plugins\TV3 Blaster Plugin\bin\${BuildType}\MPUtils.dll" - File "..\MediaPortal Plugins\TV3 Blaster Plugin\bin\${BuildType}\IrssComms.dll" - File "..\MediaPortal Plugins\TV3 Blaster Plugin\bin\${BuildType}\IrssUtils.dll" - File "..\MediaPortal Plugins\TV3 Blaster Plugin\bin\${BuildType}\TV3BlasterPlugin.dll" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV3 Blaster Plugin" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV3 Blaster Plugin\Macro" - -SectionEnd - -;====================================== - -Section "Translator" SectionTranslator - - DetailPrint "Installing Translator ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing Translator - CreateDirectory "$DIR_INSTALL\Translator" - SetOutPath "$DIR_INSTALL\Translator" - SetOverwrite ifnewer - File "..\Applications\Translator\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Translator" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Translator\Macro" - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Translator\Default Settings" - - ; Copy in default settings files - SetOutPath "$APPDATA\${PRODUCT_NAME}\Translator\Default Settings" - SetOverwrite ifnewer - File "..\Applications\Translator\Default Settings\*.xml" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Translator.lnk" "$DIR_INSTALL\Translator\Translator.exe" "" "$DIR_INSTALL\Translator\Translator.exe" 0 - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "Tray Launcher" SectionTrayLauncher -!else -Section /o "Tray Launcher" SectionTrayLauncher -!endif - - DetailPrint "Installing Tray Launcher ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing Translator - CreateDirectory "$DIR_INSTALL\Tray Launcher" - SetOutPath "$DIR_INSTALL\Tray Launcher" - SetOverwrite ifnewer - File "..\Applications\Tray Launcher\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Tray Launcher" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Tray Launcher.lnk" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" "" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" 0 - -SectionEnd - -;====================================== - -Section "Virtual Remote" SectionVirtualRemote - - DetailPrint "Installing Virtual Remote, Skin Editor, Smart Device versions, and Web Remote..." - - ; Use the all users context - SetShellVarContext all - - ; Installing Virtual Remote and Web Remote - CreateDirectory "$DIR_INSTALL\Virtual Remote" - SetOutPath "$DIR_INSTALL\Virtual Remote" - SetOverwrite ifnewer - File "..\Applications\Virtual Remote\bin\${BuildType}\*.*" - File "..\Applications\Web Remote\bin\${BuildType}\WebRemote.*" - File "..\Applications\Virtual Remote Skin Editor\bin\${BuildType}\VirtualRemoteSkinEditor.*" - - ; Installing skins - CreateDirectory "$DIR_INSTALL\Virtual Remote\Skins" - SetOutPath "$DIR_INSTALL\Virtual Remote\Skins" - SetOverwrite ifnewer - File "..\Applications\Virtual Remote\Skins\*.*" - - ; Installing Virtual Remote for Smart Devices - CreateDirectory "$DIR_INSTALL\Virtual Remote\Smart Devices" - SetOutPath "$DIR_INSTALL\Virtual Remote\Smart Devices" - SetOverwrite ifnewer - File "..\Applications\Virtual Remote (PocketPC2003) Installer\${BuildType}\*.cab" - File "..\Applications\Virtual Remote (Smartphone2003) Installer\${BuildType}\*.cab" - File "..\Applications\Virtual Remote (WinCE5) Installer\${BuildType}\*.cab" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Virtual Remote" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Virtual Remote.lnk" "$DIR_INSTALL\Virtual Remote\VirtualRemote.exe" "" "$DIR_INSTALL\Virtual Remote\VirtualRemote.exe" 0 - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Virtual Remote Skin Editor.lnk" "$DIR_INSTALL\Virtual Remote\VirtualRemoteSkinEditor.exe" "" "$DIR_INSTALL\Virtual Remote\VirtualRemoteSkinEditor.exe" 0 - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Virtual Remote for Smart Devices.lnk" "$DIR_INSTALL\Virtual Remote\Smart Devices" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Web Remote.lnk" "$DIR_INSTALL\Virtual Remote\WebRemote.exe" "" "$DIR_INSTALL\Virtual Remote\WebRemote.exe" 0 - -SectionEnd - -;====================================== - -Section "IR Blast" SectionIRBlast - - DetailPrint "Installing IR Blast ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing IR Server - CreateDirectory "$DIR_INSTALL\IR Blast" - SetOutPath "$DIR_INSTALL\IR Blast" - SetOverwrite ifnewer - File "..\Applications\IR Blast (No Window)\bin\${BuildType}\*.*" - File "..\Applications\IR Blast\bin\${BuildType}\IRBlast.exe" - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "IR File Tool" SectionIRFileTool -!else -Section /o "IR File Tool" SectionIRFileTool -!endif - - DetailPrint "Installing IR File Tool ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing IR Server - CreateDirectory "$DIR_INSTALL\IR File Tool" - SetOutPath "$DIR_INSTALL\IR File Tool" - SetOverwrite ifnewer - File "..\Applications\IR File Tool\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\IR File Tool" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\IR File Tool.lnk" "$DIR_INSTALL\IR File Tool\IRFileTool.exe" "" "$DIR_INSTALL\IR File Tool\IRFileTool.exe" 0 - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "Keyboard Relay" SectionKeyboardInputRelay -!else -Section /o "Keyboard Relay" SectionKeyboardInputRelay -!endif - - DetailPrint "Installing Keyboard Input Relay ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing IR Server - CreateDirectory "$DIR_INSTALL\Keyboard Input Relay" - SetOutPath "$DIR_INSTALL\Keyboard Input Relay" - SetOverwrite ifnewer - File "..\Applications\Keyboard Input Relay\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Keyboard Input Relay" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Keyboard Input Relay.lnk" "$DIR_INSTALL\Keyboard Input Relay\KeyboardInputRelay.exe" "" "$DIR_INSTALL\Keyboard Input Relay\KeyboardInputRelay.exe" 0 - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "Dbox Tuner" SectionDboxTuner -!else -Section /o "Dbox Tuner" SectionDboxTuner -!endif - - DetailPrint "Installing Dbox Tuner ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing IR Server - CreateDirectory "$DIR_INSTALL\Dbox Tuner" - SetOutPath "$DIR_INSTALL\Dbox Tuner" - SetOverwrite ifnewer - File "..\Applications\Dbox Tuner\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Dbox Tuner" - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "HCW PVR Tuner" SectionHcwPvrTuner -!else -Section /o "HCW PVR Tuner" SectionHcwPvrTuner -!endif - - DetailPrint "Installing HCW PVR Tuner ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing IR Server - CreateDirectory "$DIR_INSTALL\HCW PVR Tuner" - SetOutPath "$DIR_INSTALL\HCW PVR Tuner" - SetOverwrite ifnewer - File "..\Applications\HCW PVR Tuner\bin\${BuildType}\*.*" - -SectionEnd - -;====================================== - -!ifdef DEBUG -Section "Debug Client" SectionDebugClient -!else -Section /o "Debug Client" SectionDebugClient -!endif - - DetailPrint "Installing Debug Client ..." - - ; Use the all users context - SetShellVarContext all - - ; Installing Debug Client - CreateDirectory "$DIR_INSTALL\Debug Client" - SetOutPath "$DIR_INSTALL\Debug Client" - SetOverwrite ifnewer - File "..\Applications\Debug Client\bin\${BuildType}\*.*" - - ; Create folders - CreateDirectory "$APPDATA\${PRODUCT_NAME}\Debug Client" - - ; Create start menu shortcut - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Debug Client.lnk" "$DIR_INSTALL\Debug Client\DebugClient.exe" "" "$DIR_INSTALL\Debug Client\DebugClient.exe" 0 - -SectionEnd - -;====================================== - -Section "-Complete" - - DetailPrint "Completing install ..." - - ; Use the all users context - SetShellVarContext all - - ; Create website link file - WriteIniStr "$DIR_INSTALL\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" - - ; Write the uninstaller - WriteUninstaller "$DIR_INSTALL\Uninstall ${PRODUCT_NAME}.exe" - - ; Create start menu shortcuts - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Documentation.lnk" "$DIR_INSTALL\${PRODUCT_NAME}.chm" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Website.lnk" "$DIR_INSTALL\${PRODUCT_NAME}.url" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Log Files.lnk" "$APPDATA\${PRODUCT_NAME}\Logs" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Uninstall.lnk" "$DIR_INSTALL\Uninstall ${PRODUCT_NAME}.exe" "" "$DIR_INSTALL\Uninstall ${PRODUCT_NAME}.exe" - - ; Write the uninstall keys for Windows - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "DisplayName" "${PRODUCT_NAME}" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "UninstallString" "$DIR_INSTALL\Uninstall ${PRODUCT_NAME}.exe" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "DisplayIcon" "$DIR_INSTALL\Uninstall ${PRODUCT_NAME}.exe" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "Publisher" "${PRODUCT_PUBLISHER}" - WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "NoModify" 1 - WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" "NoRepair" 1 - - ; Store the install log - StrCpy $0 "$APPDATA\${PRODUCT_NAME}\Logs\Install.log" - Push $0 - Call DumpLog - - ; Finish -!ifdef DEBUG - SetAutoClose false -!else - SetAutoClose true -!endif - -SectionEnd - -;====================================== -;====================================== - -; Section descriptions -!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN - !insertmacro MUI_DESCRIPTION_TEXT ${SectionInputService} "A windows service that provides access to your IR devices." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPControlPlugin} "Connects to the Input Service to control MediaPortal." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPBlastZonePlugin} "Lets you control your IR devices from within the MediaPortal GUI." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV2BlasterPlugin} "For tuning external channels (on Set Top Boxes) with the default MediaPortal TV engine." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV3BlasterPlugin} "For tuning external channels (on Set Top Boxes) with the MediaPortal TV server." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionTranslator} "Control your whole PC." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionTrayLauncher} "Simple tray application to launch an application of your choosing when a particular button is pressed." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionVirtualRemote} "Simulated remote control, works as an application or as a web hosted remote control (with included Web Remote). Also includes a Skin Editor and Smart Device versions of Virtual Remote." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionIRBlast} "Command line tools for blasting IR codes." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionIRFileTool} "Tool for learning, modifying, testing, correcting and converting IR command files." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionKeyboardInputRelay} "Relays keyboard input to the Input Service to act on keypresses like remote buttons." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionDboxTuner} "Command line tuner for Dreambox devices." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionHcwPvrTuner} "Command line tuner for Hauppauge PVR devices." - !insertmacro MUI_DESCRIPTION_TEXT ${SectionDebugClient} "Very simple testing tool for troubleshooting input and communications problems." -!insertmacro MUI_FUNCTION_DESCRIPTION_END - -;====================================== -;====================================== - -!ifndef DEBUG -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." -FunctionEnd -!endif - - -;====================================== - -Function un.onInit - - !insertmacro initRegKeys - - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 - Abort -FunctionEnd - -;====================================== -;====================================== - -Section "Uninstall" - - ; Use the all users context - SetShellVarContext all - - ; Kill running Programs - DetailPrint "Terminating processes ..." - ExecWait '"taskkill" /F /IM Translator.exe' - ExecWait '"taskkill" /F /IM TrayLauncher.exe' - ExecWait '"taskkill" /F /IM WebRemote.exe' - ExecWait '"taskkill" /F /IM VirtualRemote.exe' - ExecWait '"taskkill" /F /IM VirtualRemoteSkinEditor.exe' - ExecWait '"taskkill" /F /IM IRFileTool.exe' - ExecWait '"taskkill" /F /IM DebugClient.exe' - ExecWait '"taskkill" /F /IM KeyboardInputRelay.exe' - Sleep 100 - - ; Uninstall current Input Service ... - IfFileExists "$DIR_INSTALL\Input Service\Input Service.exe" UninstallInputService SkipUninstallInputService - -UninstallInputService: - ExecWait '"$DIR_INSTALL\Input Service\Input Service.exe" /uninstall' - -SkipUninstallInputService: - Sleep 100 - - ; Remove files and uninstaller - DetailPrint "Attempting to remove MediaPortal Blast Zone Plugin ..." - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Windows\MPUtils.dll" - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Windows\IrssComms.dll" - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Windows\IrssUtils.dll" - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Windows\MPBlastZonePlugin.dll" - - DetailPrint "Attempting to remove MediaPortal Process Plugin Common Files ..." - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Process\MPUtils.dll" - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Process\IrssComms.dll" - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Process\IrssUtils.dll" - - DetailPrint "Attempting to remove MediaPortal Control Plugin ..." - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Process\MPControlPlugin.dll" - - DetailPrint "Attempting to remove MediaPortal TV2 Plugin ..." - Delete /REBOOTOK "$DIR_MEDIAPORTAL\Plugins\Process\TV2BlasterPlugin.dll" - - DetailPrint "Attempting to remove MediaPortal TV3 Plugin ..." - Delete /REBOOTOK "$DIR_TVSERVER\Plugins\MPUtils.dll" - Delete /REBOOTOK "$DIR_TVSERVER\Plugins\IrssComms.dll" - Delete /REBOOTOK "$DIR_TVSERVER\Plugins\IrssUtils.dll" - Delete /REBOOTOK "$DIR_TVSERVER\Plugins\TV3BlasterPlugin.dll" - - DetailPrint "Removing Set Top Box presets ..." - RMDir /R "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" - - DetailPrint "Removing program files ..." - RMDir /R /REBOOTOK "$DIR_INSTALL" - - DetailPrint "Removing start menu shortcuts ..." - RMDir /R "$SMPROGRAMS\${PRODUCT_NAME}" - - ; Remove registry keys - DetailPrint "Removing registry keys ..." - DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" - DeleteRegKey HKLM "Software\${PRODUCT_NAME}" - - ; Remove auto-runs - DetailPrint "Removing application auto-runs ..." - DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "Tray Launcher" - DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "Translator" - DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "Keyboard Input Relay" - -!ifdef DEBUG - SetAutoClose false -!else - SetAutoClose true -!endif - -SectionEnd - -;====================================== -;====================================== \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-04-10 10:32:04
|
Revision: 2778 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2778&view=rev Author: chef_koch Date: 2009-04-10 10:31:51 +0000 (Fri, 10 Apr 2009) Log Message: ----------- update project files to VS2008 Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/Abstractor/Abstractor.csproj trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj trunk/plugins/IR Server Suite/Applications/Debug Client/Debug Client.csproj trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj trunk/plugins/IR Server Suite/Applications/IR Blast/IR Blast.csproj trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj trunk/plugins/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj trunk/plugins/IR Server Suite/Applications/Translator/Translator.csproj trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj trunk/plugins/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/FormMain.resx trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/ServerAddress.resx trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Virtual Remote (PocketPC2003).csproj trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/FormMain.resx trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/ServerAddress.resx trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Virtual Remote (Smartphone2003).csproj trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/FormMain.resx trunk/plugins/IR Server Suite/Applications/Virtual Remote (WinCE5)/Virtual Remote (WinCE5).csproj trunk/plugins/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj trunk/plugins/IR Server Suite/Applications/Web Remote/Web Remote.csproj trunk/plugins/IR Server Suite/Commands/Command/Command.csproj trunk/plugins/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj trunk/plugins/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/Commands/VariableList/VariableList.csproj trunk/plugins/IR Server Suite/Common/IrssComms/IrssComms.csproj trunk/plugins/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj trunk/plugins/IR Server Suite/Common/IrssUtils/IrssUtils.csproj trunk/plugins/IR Server Suite/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/Common/ShellLink/ShellLink.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj trunk/plugins/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Imon Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj trunk/plugins/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj trunk/plugins/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/Input Service/Input Service/Input Service.csproj trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Configuration.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/Applications/Abstractor/Abstractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,6 +13,11 @@ <ApplicationIcon>Icon.ico</ApplicationIcon> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,6 +13,11 @@ <ApplicationIcon>Icon.ico</ApplicationIcon> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Debug Client/Debug Client.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -12,6 +12,11 @@ <StartupObject>HcwPvrTuner.Program</StartupObject> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/IR Blast/IR Blast.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,6 +15,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,6 +15,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <ApplicationIcon>Icon.ico</ApplicationIcon> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -27,6 +27,11 @@ <MapFileExtensions>true</MapFileExtensions> <ApplicationVersion>1.0.0.%2a</ApplicationVersion> <BootstrapperEnabled>true</BootstrapperEnabled> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,6 +13,11 @@ <StartupObject>KeyboardInputRelay.Program</StartupObject> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -11,6 +11,11 @@ <AssemblyName>LogTimeCodeExtractor</AssemblyName> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,6 +13,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <DelaySign>false</DelaySign> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Translator/Translator.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Translator/Translator.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Translator/Translator.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,4 +1,4 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,6 +14,11 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <OldToolsVersion>2.0</OldToolsVersion> + <UpgradeBackupLocation> + </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/FormMain.resx =================================================================== --- trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/FormMain.resx 2009-04-08 21:35:29 UTC (rev 2777) +++ trunk/plugins/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/FormMain.resx 2009-04-10 10:31:51 UTC (rev 2778) @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <root> - <!-- + <!-- Microsoft ResX Schema Version 2.0 @@ -59,70 +59,58 @@ : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <metadata name="mainMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> - <value>17, 17</value> - </metadata> - <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="pictureBoxStart.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0"/> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="mimetype" type="xsd:string"/> + <xsd:attribute ref="xml:space"/> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/> + <xsd:attribute ref="xml:space"/> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required"/> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <metadata name="mainMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> + <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> + <data name="pictureBoxStart.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAEl9JREFUaEPNmvtfz9n2x31/OY9zmRszY9ypSG5JKikpCakoUVJKFxVdpJRuJKFcKiRj @@ -205,9 +193,9 @@ p/T0e/jwFxuaku4cpm5jY3PkyBEdUYwroM+pU6f69u2rP/YYNmxYWFgYP5Hfw4fnPU9M8489fH19a2tr zWk/X4BxdHr2bPPmzX5+fizj9/axsrIKCQnhr2rMqcv4f2r46q884bL0AAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxMute.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxMute.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAA8tJREFUaEPVml8oc3EYx89bkosl5MLF0v7kX5Mt5srKzYqiSNLkz4Xyp1ihFfZHqxXF @@ -228,9 +216,9 @@ c7SeaDA8sUEkkZED6aWlpT6fj1xi3gPEjo+Pq6qqyMMedXV1HR0dCBEaDPkeGVN42KOhoSEyZ34BgAGd +42NjcbGRmDQZlqt1mKx4KmaqLH9CaLEVDgiLl8LAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxVolumeUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxVolumeUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAA31JREFUaEPtms9LKlEUx+dR9De0rMSyjJJUEArcRC0KimiRaC2CSjIXQhCphKsCe0RJ @@ -250,9 +238,9 @@ np6SJX5rIV1eXqrVavKyx+DgoNFoRIrQYKj3qJjFlz2Ghob4NbOkB4ZdwMHBwfDwMDBoM5lMNjExgbdq BLH9G3fn8vDSAFJmAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxVolumeDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxVolumeDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAA2pJREFUaEPtmstLqkEYxr9D4N/gsvsFpaLLSsNNEZGghAsjcxFkkrkIBMkiXBXkIVQC @@ -272,9 +260,9 @@ bm4OU4SFhnqPill+2WN6erqyZr4BgAG7gFAopFargcFaw/5Kr9fjrRpRdv0GdzedzFYJCcQAAAAASUVO RK5CYII= </value> - </data> - <data name="pictureBoxChannelDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxChannelDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABIxJREFUaEPtmlkodV0Yx48UIq5cKDfmIUKGG4S+lDJEUmb5lCFTkczJFcWXuYSIQkgh @@ -298,9 +286,9 @@ QOrr6+GAKchIPIQQ5rSexCB8sSFAEjwH6HZ2dpOTkwLyFwL8W1xcdHNzEz72CAgIiI2NJUTEIOR7Mubr xx5BQUHSOfONABw4uPT09AQHB0NDbGJpaRkVFcVXNTKu+AttQk1syAof0wAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxChannelUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxChannelUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABJZJREFUaEPtmlkodWsYx7e+QsSVC+XGPETIcIPQSSlDJGWWowyZimTu67uiOJlL6BOF @@ -325,9 +313,9 @@ 4nAROQziPRHz6WOP4OBg5Zj5TAAOFF9dXV0hISHQkNuwsrKKjo7mq5oXFvs3yHIoQy0C73UAAAAASUVO RK5CYII= </value> - </data> - <data name="pictureBoxRight.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxRight.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABB5JREFUaEPVmlsobFEYx+dI8uhRKbnkFiGXJ6SklDt5IJcH5VJ4cCm5JE+I45pSlDwg @@ -350,9 +338,9 @@ F9HDIN4TMd9+7JGQkPAxZr4DwEAiMDIykpiY+NU9tBXeJ73NzMwkYfljf/4Ea/kj0FSxRkUAAAAASUVO RK5CYII= </value> - </data> - <data name="pictureBoxLeft.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxLeft.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABC5JREFUaEPVmlkobHEcx+dK8iillJIlW4QspSgp8YBIHuwPsmV5ICVLkgfEtWYpSlIk @@ -375,9 +363,9 @@ n4CQ9fV1f39/8bJHZGRkSkoKJiIHwd/jMbUve9Cb0vWZrwTgQOJFxhIdHf1R//gb/qfASExMJL19o66/ AHG6J/DtONT6AAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxDown.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABFxJREFUaEPtWlsobFEY3meS5MkjeTBMGBFyS64vE4lyiSKXB+VSKIPIJXky4oxbQgnn @@ -401,9 +389,9 @@ 8vPzsUWkYDjvcWK+f9kjNTXV+Mz8IAAOaFTh7EtLS7M2b/8P/1coFLm5ueaN1D9gXSuM0NSVQAAAAABJ RU5ErkJggg== </value> - </data> - <data name="pictureBoxOK.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxOK.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABJdJREFUaEPtmksobVEYx/ctycDA0MDA+xEhjxHFQFEUyYA8krwKA6U8k4EQNyFloGSA @@ -428,9 +416,9 @@ mZmZxcXFhIgZhHxPxpQ/9sjOzrbNme8ERJ08PT0t7s3NJiEhIRTw/KrGztl+A5Z15UKOHXuWAAAAAElF TkSuQmCC </value> - </data> - <data name="pictureBoxUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABFBJREFUaEPtWlkobWEU3leSPHkkD6ZM0SFTMr6IRBmiyPCgDIUyRYbkCXGNCSXDi5O8 @@ -453,9 +441,9 @@ AHyg+wAMoAIRCYMgOOa4K1eD4I0NphLzHKju7e29tLTETKZjgMnW1lZQUBB72QPNiOzsbBwRNQjiPSKm 4WWPxMRE4zDwAQAYUKejO52UlPRVLPkPv7u7u2dmZoprt19M3CuM/9NOWwAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxBack.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxBack.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABKFJREFUaEPNmksobVEYx88tycDA0MDA+xEhj1IUA0VRJAPyGMirUJSSRzJC3IQUpWSA @@ -480,9 +468,9 @@ by8xMVF87JGVlVVSUoKJWGHg7/GYzo89cnJyvvrMf2oo0t3p6Wl8AjSsNkJCQoqKiviqxuXi/QG5d8hN hxbMuAAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxNextChapter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNextChapter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABA1JREFUaEPVmlkorVEUx8+V5MmDUp5knkOGUoSkPCCSQoYMGcpQIjIkeTDeTBmS8YXw @@ -504,9 +492,9 @@ 29thwBVEJB7C2Oa0nmQw3tgQksTKQbqzs7M2+9IAwLC+vu7j4yNe9ggPD09KSmKLyGDEeyKm9mWPiIiI tzHzFQAG0rKRkRHSejBkMzs7O/oPvFXzbpX+AMgPVcal8bcTAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxPreviousChapter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxPreviousChapter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABAtJREFUaEPdWlsobFEY3keSB0+KPCiM3DKhQR5GLqUkRDI1cplp5NKgZqLETPLiEie3 @@ -528,9 +516,9 @@ EJHwEAzHHK0nGgwClkAiOwfQIyMjV1dXCXOrB4jt7OygNEI+9oA+KS4uxhGhwRDvETH5jz2ys7PtY+Y7 AXBA2mEymXJyckCDNgsNDUXVDF/VfNhyvwDsqlGjREwfNAAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxRewind.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxRewind.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABF5JREFUaEPdmlkobVEYx/eV5MGTIg/KlClChjwQKSUhEmVOZMgxRsmQvKC4mSJJRCF5 @@ -554,9 +542,9 @@ II3Jzs7GEVHDgL+Hx+Q/9khISBD6zG8AMKDCmJqaSkxMBIbahoeHBy7X8FWN0d7+Aj7GIxAxib94AAAA AElFTkSuQmCC </value> - </data> - <data name="pictureBoxFastForward.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxFastForward.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGBJREFUaEPVmlkodGEYx88nyZULpVzJkrFmZClFqUm5QIRCdrKUpUSESXJh/bJlSbLc @@ -580,9 +568,9 @@ 2SM+Pj47OxtbRAoN5z1OTPZlj4SEBN0z8wcADIjVZmZmEK8DQ2rNx8cHRQm8VaO3Sr8ByYYrPsuHatgA AAAASUVORK5CYII= </value> - </data> - <data name="pictureBoxPause.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxPause.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAAvpJREFUaEPtWs9LYmEUfbPxb3DpDzSlsLBcKbgRXCQU4cLIZAgsQV0IQfiDaKVgQ1gI @@ -600,9 +588,9 @@ vr5OH/bQarV7e3soETYE+j06JnPYY3Nzc7hnfhAABzj3kUhEp9OBBttCKBQaDAacqvkkud/gN89qzARd +wAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxRecord.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxRecord.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGZJREFUaEPtml1IU2EYx1+hpIvwtl2ITE2dOKb4ceXAG0FEQxEvFD8o8WPhBAVB/EBW @@ -626,9 +614,9 @@ HxcXR1/2SElJycvLQ4lIwdDv0TGPX/ZIS0tz75knAGDA5H5gYCA9PR0YUrPQ0NCcnBy8VfNLbn8HyHbx GPr70CAAAAAASUVORK5CYII= </value> - </data> - <data name="pictureBoxStop.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxStop.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAAuVJREFUaEPtWs9LKlEYnbfxb2jpD0pFychcKbgRXCgY4sKwWgRaoC4CQfyBuFLQh2gI @@ -645,9 +633,9 @@ SqXAAalARcJNCExz7BdxIXBig4ZEKwfQJRLJ1dUVPTTTDNBxe3urVCrpwx56vd5ms2GKcCFQ71Ex3w97 GAyGjzVzTgAc4Nyfnp4ajUbQ4FqIRCKr1YpTNf9o8g9rBPWb55palwAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxPlay.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxPlay.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABAZJREFUaEPdml0o81Ecx/+PJFe7UGpXayzvGnkpZbWScoFordCQl7yUlxJNQ5ILr0+G @@ -669,9 +657,9 @@ hIZljnyBGBpubBBJZOZAenR0tCficgOAYW9vLzk5mVz2yMrK0ul0WCJiaPD38Jieyx7Z2dlffeYnABgQ ipnNZoTywBBbUygUqDngVs0f8+0X4jj/u1xcIo0AAAAASUVORK5CYII= </value> - </data> - <data name="pictureBoxEnter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxEnter.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAIAAAAAwCAIAAABWluXpAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABoNJREFUeF7tXFssHVsY3kIkWhriRSuSo0Kook3cWw2tClK0JbSpkJO4kwhabSJpRdza @@ -704,9 +692,9 @@ AOf27dsBAQHXrl1jPtaBxRbbUfEG8/a58BDAWAe+NdHS0gIa8QkD8rkJeiiIAPm+DCYPOJny27b/Bvic d99aBjd0AAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxClear.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxClear.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABYtJREFUaEPtmmson20cx/8iE6PEC5GYw8xhyKk5FC3NC2paq01OWTkfSimntVZqkz2W @@ -735,9 +723,9 @@ 11d82YP6g2YGLqKGQbwnYmq/7EGhJ42Z+wTgQPfi6dOnlBrQUNug7rl+/TrfqpHZ299/q24fb03n8wAA AABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxHash.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxHash.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABElJREFUaEPVWksodGEYntnoVxRlQVm45Ba5W4hCEaIMWZBLKLdQlJJLKEXx514Wyii5 @@ -760,9 +748,9 @@ HOAKVCT8CII0x+iJg+CNDYJEkQPoaNBvbGwQeckDJDhLRkVF0cseqampBQUFSBEOgnqPiim/7JGRkSHW zG8C4IDJ/fT0dGZmJmhwE19fX4x88FbNj6j7B4zAXtE3dqeCAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxNumber0.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber0.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGxJREFUaEPtmksotV0Ux4+JEWVAMXPJLddciigGRFEuGZBLUW5hoJRcQimKN/cyUCiR @@ -786,9 +774,9 @@ ox8B0TY3N0NDQ8WPPRISErKzswkRLTTme2ZM+WOPpKQk4znzDQAGKvejo6PJyclgaK15eHhwCMuvan5z y38A5wnD4WS4cpQAAAAASUVORK5CYII= </value> - </data> - <data name="pictureBoxStar.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxStar.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGFJREFUaEPtmlkobW0Yx7eIC1HuRMqQWWYhiqQUimTMUB8ZMlyIMiZXhC8hUURckJSx @@ -812,9 +800,9 @@ hJc9goKC4uPjcRE5LOI9EVN82SMkJOR9zHwjAAcqkq6urtDQUGjIbdHXiI2N5a2aD0b2H9s9X4TWgqOC AAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxNumber9.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber9.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABKpJREFUaEPVmlkotVsYx7f6EkWdC4qiDJkisyLKjaIoEkWGC5kKRSljUoriy5RyoaRk @@ -839,9 +827,9 @@ M0ILeguIxYkpJCREvOwRGxubkZFBiGhhke/JmPJlj/j4+Jc585kAHJjcDwwMJCQkiIsQTS13d3f6Rd6q eeV+/wJru7wBjkZh5QAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxNumber8.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber8.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABLlJREFUaEPVmlkodW0Ux496iaIoFxRlHjJmKEJulESRXJAhyRiKUjKEUhRf5nKhUDLE @@ -866,9 +854,9 @@ hLHMaT2pwXhjQ0gSnoN0Gihzc3MC/mUGhJG9BAYGipc9oqOjU1NTWSJqMOI9EVO+7BEbG6sdM98BYKBz Pzg4KJIZtZmzszMVWN6q+eB1/wHWqGOKVgR4qAAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxNumber7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABAFJREFUaEPVmlsobFEYx2cKURTlgaJccovclaK8KEQ5iSKXkGsoSsklPFGc3FIelJRc @@ -890,9 +878,9 @@ sSEkichBenBw8OrqqlgRgweEcdrHxMSIlz1SUlLy8/PZImow8j0Z0/SyR3p6unnO/ASAgc795ORkRkYG GGozf3//3Nxc3qr5Eop/AMh2TX6NmKYAAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxNumber6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABJtJREFUaEPdmkkofW0cx69CFhT1LijKPGSeSiEWZEGRLMhQZCoUpYyhFMWbuSyUlAyx @@ -917,9 +905,9 @@ JSVlZ2eTIjIs6j0VU3nZIzk5Wb9mfgHAwOR+bGwsJSVFNGRSLQ8Pj8zMTN6q+Rbb/wGEDMH71A6wNwAA AABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxNumber5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABJFJREFUaEPVmlsobWsUx5dCFOWB8nAe3C+55lK7KEcRolyiyCXJrVCUcpdSFCf38qCk @@ -943,9 +931,9 @@ QuDo6EhHgF/d3d1wYCnISCghhDmjJ2MQ3tgQkITnAJ3Dsvn5eUFVuwJC1tfXg4ODxcseMTExmZmZhIgx CPmejKm87BEfH/99znwjAAcm9yMjI5Rl0DA2cXV1TU9P562aH3zsX7jv/kyBhcHOAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxNumber4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAA5RJREFUaEPtWk1LolEUft1EP8FlZfZB9kElGBVtBAUH0miR9MEQ0xfVIgiaVMyVgg5a @@ -965,9 +953,9 @@ EApUJCyCYZtDeqLBcGODQCKZA+iYPTY2NghDPgLEdnd3a2pqyGUPhULR3t6OLUKDod6jYiYue6hUqtSa mSQADlDu3W43DkVAgzYTiURtbW24VfMqt38D66Mro34L0x0AAAAASUVORK5CYII= </value> - </data> - <data name="pictureBoxNumber3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGpJREFUaEPdmkko/WsYx4+6dNW1UBQ7wzVlnkohFsoCkSgyJJkKC0UyW1HczGWhUDLE @@ -991,9 +979,9 @@ OwPC1tfXg4ODxcMesbGxGRkZpIgajHpPxVQe9oiLi3tfM98AYKBzPzw8zLYMDLWZq6trWloaT9V8iK5/ AWHqBbHp3HwOAAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxNumber2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABGVJREFUaEPVmlkorV0Yx7f66FMUdRRFmYfIrIhCKQkZckGGIlOhKGUeSlGczOVCSYnE @@ -1017,9 +1005,9 @@ xkZQUJD4skdsbGxmZiYhIodBvidjSl/2iI+PV82Z7wAw0LkfHR1NSEgAQ27DxcWF/gPfqlFzsD8cNs9X Az86LwAAAABJRU5ErkJggg== </value> - </data> - <data name="pictureBoxNumber1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxNumber1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAAAyNJREFUaEPtWs1LKnEUHaH8G1yWkhpKhuXKwE3gosCIFoYWIVhCBgqBaFGtDPQRKUIL @@ -1037,9 +1025,9 @@ gA+PxwMOKAUmEk5CoM1hPdEh8MYGCYlUDqCLxeJoNEoSb1aAjGQyOTExQb7soVardTodWoQOgXmPifnx ssfMzEz7zPwkAA5w7s/OzmZnZ0GDbiEQCLRaLd6q+aK433l1eB3NpuS4AAAAAElFTkSuQmCC </value> - </data> - <data name="pictureBoxPictures.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> + </data> + <data name="pictureBoxPictures.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> iVBORw0KGgoAAAANSUhEUgAAAEAAAAAwCAIAAAAuKetIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAGGoAAB hqABJxZkogAABQRJREFUaEPtmlkotlsUx99z890pFy6UC1OmjBkylhtRyJQMGXKUIcOFUsakFMVJpggR @@ -1065,9 +1053,9 @@ vgPAKC4uBgNUcCKxiEGa8/SkCINfbAiTRORguqGh4eDgoLD8HgBfk5OTVlZW4sce9FFCQkJIEUUYnPec mNKPPaj+5M/MBwBgoAJqbGykeAOGog1qzqCgIH5V8yiw/wZNvFeY... [truncated message content] |
From: <che...@us...> - 2009-05-31 11:33:36
|
Revision: 2875 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2875&view=rev Author: chef_koch Date: 2009-05-31 11:33:35 +0000 (Sun, 31 May 2009) Log Message: ----------- fixed mp control plugin compiling again, after tve2 removal removed tve2blaster plugin from installer Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/setup/setup.nsi Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2009-05-31 10:30:57 UTC (rev 2874) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2009-05-31 11:33:35 UTC (rev 2875) @@ -33,7 +33,6 @@ using MediaPortal.GUI.Library; using MediaPortal.Player; using MediaPortal.Profile; -using MediaPortal.TV.Recording; using MediaPortal.Util; using MPUtils; @@ -434,7 +433,7 @@ switch (map.ConProperty) { case "TV": - if (Recorder.IsViewing()) + if (g_Player.IsTV) found = map; break; case "DVD": Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-05-31 10:30:57 UTC (rev 2874) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-05-31 11:33:35 UTC (rev 2875) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}</ProjectGuid> <OutputType>Library</OutputType> @@ -109,11 +109,6 @@ <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\TVCapture.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> Modified: trunk/plugins/IR Server Suite/setup/setup.nsi =================================================================== --- trunk/plugins/IR Server Suite/setup/setup.nsi 2009-05-31 10:30:57 UTC (rev 2874) +++ trunk/plugins/IR Server Suite/setup/setup.nsi 2009-05-31 11:33:35 UTC (rev 2875) @@ -186,7 +186,7 @@ !insertmacro "${MacroName}" "SectionMPCommon" !insertmacro "${MacroName}" "SectionMPControlPlugin" !insertmacro "${MacroName}" "SectionMPBlastZonePlugin" - !insertmacro "${MacroName}" "SectionTV2BlasterPlugin" + #!insertmacro "${MacroName}" "SectionTV2BlasterPlugin" !insertmacro "${MacroName}" "SectionTV3Common" !insertmacro "${MacroName}" "SectionTV3BlasterPlugin" @@ -523,7 +523,7 @@ !macroend ;====================================== - +/* ${MementoUnselectedSection} "TV2 Blaster Plugin" SectionTV2BlasterPlugin ${LOG_TEXT} "INFO" "Installing TV2 Blaster Plugin..." @@ -541,7 +541,7 @@ Delete /REBOOTOK "$MPdir.Plugins\Process\TV2BlasterPlugin.*" !macroend - +*/ ;====================================== SectionGroupEnd @@ -1097,7 +1097,7 @@ ; disable/remove common files for MediaPortal plugins if all MediaPortal plugins are unselected ${IfNot} ${SectionIsSelected} ${SectionMPControlPlugin} ${AndIfNot} ${SectionIsSelected} ${SectionMPBlastZonePlugin} - ${AndIfNot} ${SectionIsSelected} ${SectionTV2BlasterPlugin} +# ${AndIfNot} ${SectionIsSelected} ${SectionTV2BlasterPlugin} !insertmacro UnselectSection ${SectionMPCommon} ${Else} !insertmacro SelectSection ${SectionMPCommon} @@ -1238,7 +1238,7 @@ !insertmacro MUI_DESCRIPTION_TEXT ${SectionGroupMP} "$(DESC_SectionGroupMP)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPControlPlugin} "$(DESC_SectionMPControlPlugin)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPBlastZonePlugin} "$(DESC_SectionMPBlastZonePlugin)" - !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV2BlasterPlugin} "$(DESC_SectionTV2BlasterPlugin)" +# !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV2BlasterPlugin} "$(DESC_SectionTV2BlasterPlugin)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionGroupTV3} "$(DESC_SectionGroupTV3)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV3BlasterPlugin} "$(DESC_SectionTV3BlasterPlugin)" ; !insertmacro MUI_DESCRIPTION_TEXT ${SectionGroupMCE} "$(DESC_SectionGroupMCE)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mis...@us...> - 2009-05-31 13:14:38
|
Revision: 2876 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2876&view=rev Author: misterd_sf Date: 2009-05-31 12:12:49 +0000 (Sun, 31 May 2009) Log Message: ----------- - Translator now works with PlayMovie - Added channel support to X10 - Fixed TV2 Blaster Plugin build - Fixed Mp Control Plugin after TVE2 removal Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/Translator/Program.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Added Paths: ----------- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.Designer.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.resx Property Changed: ---------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/ Modified: trunk/plugins/IR Server Suite/Applications/Translator/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Translator/Program.cs 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/Applications/Translator/Program.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -868,14 +868,25 @@ return null; } - string fileName = Path.GetFileName(process.MainModule.FileName); - + string fileName = string.Empty; + string processName = string.Empty; + try + { + fileName = Path.GetFileName(process.MainModule.FileName); + }catch + { + processName = Path.GetFileName(process.ProcessName); + } foreach (ProgramSettings progSettings in Config.Programs) { if (fileName.Equals(Path.GetFileName(progSettings.FileName), StringComparison.OrdinalIgnoreCase)) { return progSettings; } + if (processName.Equals(Path.GetFileName(progSettings.Name), StringComparison.OrdinalIgnoreCase)) + { + return progSettings; + } } } catch (Exception ex) Added: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.Designer.cs (rev 0) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.Designer.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -0,0 +1,162 @@ +namespace InputService.Plugin +{ + partial class Configure + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.buttonOK = new System.Windows.Forms.Button(); + this.buttonCancel = new System.Windows.Forms.Button(); + this.toolTips = new System.Windows.Forms.ToolTip(this.components); + this.numericUpDownButtonChannelNumber = new System.Windows.Forms.NumericUpDown(); + this.labelChannelNumber = new System.Windows.Forms.Label(); + this.labelUseChannelContrl = new System.Windows.Forms.Label(); + this.checkBoxUseChannelControl = new System.Windows.Forms.CheckBox(); + this.buttonGetChannelNumber = new System.Windows.Forms.Button(); + this.timer1 = new System.Windows.Forms.Timer(this.components); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonChannelNumber)).BeginInit(); + this.SuspendLayout(); + // + // buttonOK + // + this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonOK.Location = new System.Drawing.Point(137, 134); + this.buttonOK.Name = "buttonOK"; + this.buttonOK.Size = new System.Drawing.Size(64, 24); + this.buttonOK.TabIndex = 4; + this.buttonOK.Text = "OK"; + this.buttonOK.UseVisualStyleBackColor = true; + this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); + // + // buttonCancel + // + this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.buttonCancel.Location = new System.Drawing.Point(209, 134); + this.buttonCancel.Name = "buttonCancel"; + this.buttonCancel.Size = new System.Drawing.Size(64, 24); + this.buttonCancel.TabIndex = 5; + this.buttonCancel.Text = "Cancel"; + this.buttonCancel.UseVisualStyleBackColor = true; + this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); + // + // numericUpDownButtonChannelNumber + // + this.numericUpDownButtonChannelNumber.Location = new System.Drawing.Point(152, 35); + this.numericUpDownButtonChannelNumber.Maximum = new decimal(new int[] { + 100000, + 0, + 0, + 0}); + this.numericUpDownButtonChannelNumber.Name = "numericUpDownButtonChannelNumber"; + this.numericUpDownButtonChannelNumber.Size = new System.Drawing.Size(117, 20); + this.numericUpDownButtonChannelNumber.TabIndex = 1; + this.numericUpDownButtonChannelNumber.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.numericUpDownButtonChannelNumber.ThousandsSeparator = true; + this.toolTips.SetToolTip(this.numericUpDownButtonChannelNumber, "How long between repeated buttons (in milliseconds)"); + // + // labelChannelNumber + // + this.labelChannelNumber.Location = new System.Drawing.Point(12, 33); + this.labelChannelNumber.Name = "labelChannelNumber"; + this.labelChannelNumber.Size = new System.Drawing.Size(134, 20); + this.labelChannelNumber.TabIndex = 0; + this.labelChannelNumber.Text = "Channel number: "; + this.labelChannelNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // labelUseChannelContrl + // + this.labelUseChannelContrl.Location = new System.Drawing.Point(12, 9); + this.labelUseChannelContrl.Name = "labelUseChannelContrl"; + this.labelUseChannelContrl.Size = new System.Drawing.Size(134, 20); + this.labelUseChannelContrl.TabIndex = 6; + this.labelUseChannelContrl.Text = "Use channel control:"; + this.labelUseChannelContrl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // checkBoxUseChannelControl + // + this.checkBoxUseChannelControl.AutoSize = true; + this.checkBoxUseChannelControl.Location = new System.Drawing.Point(152, 12); + this.checkBoxUseChannelControl.Name = "checkBoxUseChannelControl"; + this.checkBoxUseChannelControl.Size = new System.Drawing.Size(15, 14); + this.checkBoxUseChannelControl.TabIndex = 7; + this.checkBoxUseChannelControl.UseVisualStyleBackColor = true; + this.checkBoxUseChannelControl.CheckedChanged += new System.EventHandler(this.checkBoxUseChannelControl_CheckedChanged); + // + // buttonGetChannelNumber + // + this.buttonGetChannelNumber.Location = new System.Drawing.Point(152, 61); + this.buttonGetChannelNumber.Name = "buttonGetChannelNumber"; + this.buttonGetChannelNumber.Size = new System.Drawing.Size(117, 23); + this.buttonGetChannelNumber.TabIndex = 8; + this.buttonGetChannelNumber.Text = "Get Channel number"; + this.buttonGetChannelNumber.UseVisualStyleBackColor = true; + this.buttonGetChannelNumber.Click += new System.EventHandler(this.buttonGetChannelNumber_Click); + // + // timer1 + // + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // + // Configure + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(281, 167); + this.Controls.Add(this.buttonGetChannelNumber); + this.Controls.Add(this.checkBoxUseChannelControl); + this.Controls.Add(this.labelUseChannelContrl); + this.Controls.Add(this.labelChannelNumber); + this.Controls.Add(this.numericUpDownButtonChannelNumber); + this.Controls.Add(this.buttonCancel); + this.Controls.Add(this.buttonOK); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.MinimumSize = new System.Drawing.Size(256, 164); + this.Name = "Configure"; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "X10 Configuration"; + ((System.ComponentModel.ISupportInitialize)(this.numericUpDownButtonChannelNumber)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonOK; + private System.Windows.Forms.Button buttonCancel; + private System.Windows.Forms.ToolTip toolTips; + private System.Windows.Forms.Label labelChannelNumber; + private System.Windows.Forms.Label labelUseChannelContrl; + private System.Windows.Forms.CheckBox checkBoxUseChannelControl; + private System.Windows.Forms.NumericUpDown numericUpDownButtonChannelNumber; + private System.Windows.Forms.Button buttonGetChannelNumber; + private System.Windows.Forms.Timer timer1; + } +} \ No newline at end of file Added: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.cs (rev 0) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -0,0 +1,155 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace InputService.Plugin +{ + + /// <summary> + /// Configure the HCW Transceiver plugin. + /// </summary> + partial class Configure : Form + { + #region variables + X10Transceiver x10Transceiver; + int count; + #endregion variables + + #region Properties + + /// <summary> + /// Gets or sets if channel control is used + /// </summary> + /// <value>Use channel control</value> + public bool UseChannelControl + { + get { + return checkBoxUseChannelControl.Checked; + } + set { + checkBoxUseChannelControl.Checked = value; + numericUpDownButtonChannelNumber.Enabled = checkBoxUseChannelControl.Checked; + buttonGetChannelNumber.Enabled = checkBoxUseChannelControl.Checked; + } + } + + /// <summary> + /// Gets or sets the channel number + /// </summary> + /// <value>The channel number</value> + public int ChannelNumber + { + get { + return Decimal.ToInt32(numericUpDownButtonChannelNumber.Value); + } + set { + numericUpDownButtonChannelNumber.Value = new Decimal(value); + } + } + + /// <summary> + /// Sets the corresponding X10Transceiver + /// </summary> + public X10Transceiver X10Transceiver + { + set { x10Transceiver = value; } + } + #endregion Properties + + #region Constructor + + /// <summary> + /// Initializes a new instance of the <see cref="Configure"/> class. + /// </summary> + public Configure() + { + InitializeComponent(); + } + + #endregion Constructor + + #region Buttons + + private void buttonOK_Click(object sender, EventArgs e) + { + this.DialogResult = DialogResult.OK; + this.Close(); + } + + private void buttonCancel_Click(object sender, EventArgs e) + { + this.DialogResult = DialogResult.Cancel; + this.Close(); + } + + private void checkBoxUseChannelControl_CheckedChanged(object sender, EventArgs e) + { + numericUpDownButtonChannelNumber.Enabled = checkBoxUseChannelControl.Checked; + buttonGetChannelNumber.Enabled = checkBoxUseChannelControl.Checked; + } + #endregion Buttons + + private void buttonGetChannelNumber_Click(object sender, EventArgs e) + { + try + { + x10Transceiver.StartGetChannelNumber(); + buttonOK.Enabled = false; + buttonCancel.Enabled = false; + buttonGetChannelNumber.Enabled = false; + numericUpDownButtonChannelNumber.Enabled = false; + checkBoxUseChannelControl.Enabled = false; + count = 0; + timer1.Start(); + } catch + { + MessageBox.Show("Error while starting X10 device", "X10 Configuration", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void timer1_Tick(object sender, EventArgs e) + { + int number = x10Transceiver.GetChannelNumber(); + if (number == -1) + { + count++; + if (count == 50) + { + timer1.Stop(); + try + { + x10Transceiver.StopGetChannelNumber(); + } finally + { + buttonOK.Enabled = true; + buttonCancel.Enabled = true; + buttonGetChannelNumber.Enabled = true; + numericUpDownButtonChannelNumber.Enabled = true; + checkBoxUseChannelControl.Enabled = true; + } + } + } else + { + timer1.Stop(); + try + { + x10Transceiver.StopGetChannelNumber(); + } finally + { + checkBoxUseChannelControl.Enabled = true; + numericUpDownButtonChannelNumber.Enabled = true; + numericUpDownButtonChannelNumber.Value = number; + buttonOK.Enabled = true; + buttonCancel.Enabled = true; + buttonGetChannelNumber.Enabled = true; + } + } + } + + + } + +} Added: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.resx =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.resx (rev 0) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.resx 2009-05-31 12:12:49 UTC (rev 2876) @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <metadata name="toolTips.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> + <metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>107, 17</value> + </metadata> +</root> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/Resources.Designer.cs 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/Resources.Designer.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.832 +// Runtime Version:2.0.50727.1433 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. Modified: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj 2009-05-31 12:12:49 UTC (rev 2876) @@ -53,6 +53,12 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="Configure.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="Configure.Designer.cs"> + <DependentUpon>Configure.cs</DependentUpon> + </Compile> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> @@ -72,6 +78,10 @@ <Content Include="Icon.ico" /> </ItemGroup> <ItemGroup> + <EmbeddedResource Include="Configure.resx"> + <DependentUpon>Configure.cs</DependentUpon> + <SubType>Designer</SubType> + </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <SubType>Designer</SubType> <Generator>ResXFileCodeGenerator</Generator> Modified: trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -1,6 +1,10 @@ using System; using System.Drawing; +using System.IO; using System.Runtime.InteropServices.ComTypes; +using System.Text; +using System.Windows.Forms; +using System.Xml; using InputService.Plugin.Properties; using X10; @@ -9,8 +13,14 @@ /// <summary> /// IR Server Plugin for X10 Transceiver devices. /// </summary> - public class X10Transceiver : PluginBase, IRemoteReceiver, _DIX10InterfaceEvents + public class X10Transceiver : PluginBase, IRemoteReceiver, _DIX10InterfaceEvents, IConfigure { + #region Constants + + static readonly string ConfigurationFile = Path.Combine(ConfigurationPath, "X10 Transceiver.xml"); + + #endregion Constants + #region Variables private static RemoteHandler _remoteButtonHandler; @@ -19,6 +29,9 @@ private IConnectionPoint icp; private IConnectionPointContainer icpc; private X10Interface X10Inter; + bool useChannelControl; + int channelNumber; + bool getChannelNumber; #endregion Variables @@ -87,6 +100,17 @@ { try { + if (getChannelNumber) + { + channelNumber = lAddress; + getChannelNumber = false; + return; + } + if (useChannelControl && (lAddress != channelNumber)) + { + return; + } + string keyCode = Enum.GetName(typeof (EX10Command), eCommand); if (RemoteCallback != null) @@ -162,6 +186,7 @@ /// </summary> public override void Start() { + LoadSettings(); X10Inter = new X10Interface(); if (X10Inter == null) throw new InvalidOperationException("Failed to start X10 interface"); @@ -201,5 +226,110 @@ X10Inter = null; } } + + /// <summary> + /// Starts to wait for the channel number + /// </summary> + public void StartGetChannelNumber() + { + Start(); + getChannelNumber = true; + channelNumber = -1; + } + + /// <summary> + /// Get the found channel number + /// </summary> + public int GetChannelNumber() + { + return channelNumber; + } + + /// <summary> + /// Stops to wait for the channel number + /// </summary> + public void StopGetChannelNumber() + { + getChannelNumber = false; + LoadSettings(); + Stop(); + } + + void LoadSettings() + { + try + { + getChannelNumber = false; + XmlDocument doc = new XmlDocument(); + doc.Load(ConfigurationFile); + + useChannelControl = bool.Parse(doc.DocumentElement.Attributes["useChannelControl"].Value); + channelNumber = int.Parse(doc.DocumentElement.Attributes["channelNumber"].Value); + } +#if TRACE + catch (Exception ex) + { + Trace.WriteLine(ex.ToString()); +#else + catch + { +#endif + useChannelControl = false; + channelNumber = 0; + } + } + + void SaveSettings() + { + try + { + XmlTextWriter writer = new XmlTextWriter(ConfigurationFile, Encoding.UTF8); + writer.Formatting = Formatting.Indented; + writer.Indentation = 1; + writer.IndentChar = (char)9; + writer.WriteStartDocument(true); + writer.WriteStartElement("settings"); // <settings> + + writer.WriteAttributeString("useChannelControl", useChannelControl.ToString()); + writer.WriteAttributeString("channelNumber", channelNumber.ToString()); + + writer.WriteEndElement(); // </settings> + writer.WriteEndDocument(); + writer.Close(); + } +#if TRACE + catch (Exception ex) + { + Trace.WriteLine(ex.ToString()); + } +#else + catch + { + } +#endif + } + + /// <summary> + /// Configure the IR Server plugin. + /// </summary> + /// <param name="owner">The owner window to use for creating modal dialogs.</param> + public void Configure(IWin32Window owner) + { + LoadSettings(); + + Configure config = new Configure(); + + config.UseChannelControl = useChannelControl; + config.ChannelNumber = channelNumber; + config.X10Transceiver = this; + if (config.ShowDialog(owner) == DialogResult.OK) + { + useChannelControl = config.UseChannelControl; + channelNumber = config.ChannelNumber; + SaveSettings(); + } + } + + } } \ No newline at end of file Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin ___________________________________________________________________ Modified: svn:ignore - *.suo *.user thumbs.db bin obj + *.suo *.user thumbs.db bin obj [Bb]in [Dd]ebug [Rr]elease *.aps *.eto Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2009-05-31 12:12:49 UTC (rev 2876) @@ -433,7 +433,7 @@ switch (map.ConProperty) { case "TV": - if (g_Player.IsTV) + if (g_Player.IsTimeShifting || g_Player.IsTV || g_Player.IsTVRecording) found = map; break; case "DVD": Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-05-31 12:12:49 UTC (rev 2876) @@ -151,4 +151,4 @@ <Name>MPUtils</Name> </ProjectReference> </ItemGroup> -</Project> +</Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-05-31 12:12:49 UTC (rev 2876) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}</ProjectGuid> <OutputType>Library</OutputType> @@ -102,9 +102,13 @@ <Reference Include="System.Xml" /> <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\TVCapture.DLL</HintPath> + <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine2\Core\TvCapture\bin\Release\TVCapture.DLL</HintPath> <Private>False</Private> </Reference> + <Reference Include="TVCapture-Databases, Version=1.0.2.22074, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\Databases\bin\Release\TVCapture-Databases.dll</HintPath> + </Reference> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-05-31 11:33:35 UTC (rev 2875) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-05-31 12:12:49 UTC (rev 2876) @@ -1,7 +1,7 @@ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <ProjectType>Local</ProjectType> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}</ProjectGuid> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mis...@us...> - 2009-05-31 23:08:13
|
Revision: 2885 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2885&view=rev Author: misterd_sf Date: 2009-05-31 23:08:00 +0000 (Sun, 31 May 2009) Log Message: ----------- Fixed manifest inclusion. Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj trunk/plugins/IR Server Suite/Input Service/Input Service/Input Service.csproj trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Configuration.csproj Modified: trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}</ProjectGuid> <OutputType>Exe</OutputType> @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>HcwPvrTuner.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Applications/IR Server/IR Server.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -32,6 +32,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>IRServer.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{097F7027-77A1-4623-8D6C-3D2020769EFD}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>KeyboardInputRelay.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj =================================================================== --- trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{905131F8-F8AC-4A65-A722-37783902D7B8}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>SageSetup.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Input Service/Input Service/Input Service.csproj =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service/Input Service.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Input Service/Input Service/Input Service.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>Input Service.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Configuration.csproj =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Configuration.csproj 2009-05-31 22:49:07 UTC (rev 2884) +++ trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Configuration.csproj 2009-05-31 23:08:00 UTC (rev 2885) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{DC79E2EC-7D1B-4359-A285-38AC8154166B}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -24,6 +24,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <ApplicationManifest>Input Service Configuration.exe.manifest</ApplicationManifest> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-02 23:43:29
|
Revision: 2888 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2888&view=rev Author: chef_koch Date: 2009-06-02 23:43:19 +0000 (Tue, 02 Jun 2009) Log Message: ----------- using abstract remote model by default now Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/IR Server/IRServer.cs trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Program.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remotes.xml Modified: trunk/plugins/IR Server Suite/Applications/IR Server/IRServer.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/IR Server/IRServer.cs 2009-06-01 21:28:08 UTC (rev 2887) +++ trunk/plugins/IR Server Suite/Applications/IR Server/IRServer.cs 2009-06-02 23:43:19 UTC (rev 2888) @@ -1715,7 +1715,7 @@ private void LoadSettings() { - _abstractRemoteMode = false; + _abstractRemoteMode = true; _mode = IRServerMode.ServerMode; _hostComputer = String.Empty; _processPriority = "No Change"; Modified: trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs 2009-06-01 21:28:08 UTC (rev 2887) +++ trunk/plugins/IR Server Suite/Input Service/Input Service/InputService.cs 2009-06-02 23:43:19 UTC (rev 2888) @@ -1630,7 +1630,7 @@ private void LoadSettings() { - _abstractRemoteMode = false; + _abstractRemoteMode = true; _mode = InputServiceMode.ServerMode; _hostComputer = String.Empty; _processPriority = "No Change"; Modified: trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Program.cs 2009-06-01 21:28:08 UTC (rev 2887) +++ trunk/plugins/IR Server Suite/Input Service/Input Service Configuration/Program.cs 2009-06-02 23:43:19 UTC (rev 2888) @@ -144,7 +144,7 @@ { IrssLog.Info("Loading settings ..."); - _abstractRemoteMode = false; + _abstractRemoteMode = true; _mode = InputServiceMode.ServerMode; _hostComputer = String.Empty; _processPriority = "No Change"; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remotes.xml =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remotes.xml 2009-06-01 21:28:08 UTC (rev 2887) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/AppData/Remotes.xml 2009-06-02 23:43:19 UTC (rev 2888) @@ -1,168 +1,167 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> <remotes> - <remote name="Microsoft MCE"> + <remote name="Abstract Remote Model"> <button name="PowerTV"> - <code value="31642" /> + <code value="Power" /> </button> <button name="Power2"> - <code value="31731" /> + <code value="Power2" /> </button> <button name="Stop"> - <code value="31718" /> + <code value="Stop" /> </button> <button name="Record"> - <code value="31720" /> + <code value="Record" /> </button> <button name="Pause"> - <code value="31719" /> + <code value="Pause" /> </button> <button name="Play"> - <code value="31721" /> + <code value="Play" /> </button> <button name="Rewind"> - <code value="31722" /> + <code value="Rewind" /> </button> <button name="Forward"> - <code value="31723" /> + <code value="FastForward" /> </button> <button name="Replay"> - <code value="31716" /> + <code value="PreviousChapter" /> </button> <button name="Skip"> - <code value="31717" /> + <code value="NextChapter" /> </button> <button name="Back"> - <code value="31708" /> + <code value="Back" /> </button> <button name="Info"> - <code value="31728" /> - </button> + <code value="Info" /> + </button> <button name="Up"> - <code value="31713" /> + <code value="Up" /> </button> <button name="Left"> - <code value="31711" /> + <code value="Left" /> </button> <button name="Ok"> - <code value="31709" /> + <code value="OK" /> </button> <button name="Right"> - <code value="31710" /> + <code value="Right" /> </button> <button name="Down"> - <code value="31712" /> + <code value="Down" /> </button> <button name="VolumeUp"> - <code value="31727" /> + <code value="VolumeUp" /> </button> <button name="VolumeDown"> - <code value="31726" /> + <code value="VolumeDown" /> </button> <button name="Start"> - <code value="31730" /> + <code value="Start" /> </button> <button name="ChannelUp"> - <code value="31725" /> + <code value="ChannelUp" /> </button> <button name="ChannelDown"> - <code value="31724" /> + <code value="ChannelDown" /> </button> <button name="Mute"> - <code value="31729" /> + <code value="Mute" /> </button> <button name="RecordedTV"> - <code value="31671" /> + <code value="RecordedTV" /> </button> <button name="Guide"> - <code value="31705" /> + <code value="Guide" /> </button> <button name="LiveTV"> - <code value="31706" /> + <code value="LiveTV" /> </button> <button name="DVDMenu"> - <code value="31707" /> + <code value="DVD" /> </button> <button name="NumPad1"> - <code value="31742" /> + <code value="Number1" /> </button> <button name="NumPad2"> - <code value="31741" /> + <code value="Number2" /> </button> <button name="NumPad3"> - <code value="31740" /> + <code value="Number3" /> </button> <button name="NumPad4"> - <code value="31739" /> + <code value="Number4" /> </button> <button name="NumPad5"> - <code value="31738" /> + <code value="Number5" /> </button> <button name="NumPad6"> - <code value="31737" /> + <code value="Number6" /> </button> <button name="NumPad7"> - <code value="31736" /> + <code value="Number7" /> </button> <button name="NumPad8"> - <code value="31735" /> + <code value="Number8" /> </button> <button name="NumPad9"> - <code value="31734" /> + <code value="Number9" /> </button> <button name="NumPad0"> - <code value="31743" /> + <code value="Number0" /> </button> <button name="Oem8"> - <code value="31714" /> + <code value="Star" /> </button> <button name="OemGate"> - <code value="31715" /> - </button> + <code value="Hash" /> + </button> <button name="Clear"> - <code value="31733" /> + <code value="Clear" /> </button> <button name="Enter"> - <code value="31732" /> + <code value="Enter" /> </button> <button name="Teletext"> - <code value="31653" /> - </button> + <code value="Teletext" /> + </button> <button name="Red"> - <code value="31652" /> + <code value="Red" /> </button> <button name="Green"> - <code value="31651" /> + <code value="Green" /> </button> <button name="Yellow"> - <code value="31650" /> + <code value="Yellow" /> </button> <button name="Blue"> - <code value="31649" /> + <code value="Blue" /> </button> <button name="MyMusic"> - <code value="31672" /> + <code value="Music" /> </button> <button name="MyPictures"> - <code value="31670" /> + <code value="Pictures" /> </button> <button name="MyRadio"> - <code value="31663" /> + <code value="Radio" /> </button> <button name="MyTV"> - <code value="31673" /> + <code value="TV" /> </button> <button name="MyVideos"> - <code value="31669" /> + <code value="Video" /> </button> <button name="Print"> - <code value="31665" /> + <code value="Print" /> </button> <button name="AspectRatio"> - <code value="31704" /> + <code value="AspectRatio" /> </button> <button name="Messenger"> - <code value="31638" /> + <code value="Messenger" /> </button> - <button name="Power1" /> </remote> </remotes> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-03 10:04:09
|
Revision: 2891 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2891&view=rev Author: chef_koch Date: 2009-06-03 10:03:58 +0000 (Wed, 03 Jun 2009) Log Message: ----------- resharped complete IRSS solution Modified Paths: -------------- trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Program.cs trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs trunk/plugins/IR Server Suite/Applications/MacroScope/Program.cs trunk/plugins/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/ExternalChannelConfig.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/SetupForm.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/StbSetup.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Program.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Tray.cs trunk/plugins/IR Server Suite/Applications/Translator/Program.cs trunk/plugins/IR Server Suite/Applications/Tray Launcher/Tray.cs trunk/plugins/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/FormMain.cs trunk/plugins/IR Server Suite/Applications/Web Remote/WebServer.cs trunk/plugins/IR Server Suite/Common/IrssComms/IrssMessage.cs trunk/plugins/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/Common/IrssScheduler/ScheduleEvent.cs trunk/plugins/IR Server Suite/Common/IrssScheduler/Scheduler.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/DeviceIoOverlapped.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Imon Receiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Plugins/Speech Receiver/SpeechReceiver.cs trunk/plugins/IR Server Suite/IR Server Plugins/WiimoteLib/Wiimote.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs Modified: trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Program.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Program.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,15 +1,12 @@ using System; using System.Collections.Generic; using System.IO; -using System.Text; namespace LogTimeCodeExtractor { - - class Program + internal class Program { - - static void Main(string[] args) + private static void Main(string[] args) { if (args.Length != 1) { @@ -26,7 +23,7 @@ { if (line.StartsWith("+") || line.StartsWith("-")) { - string[] timesStrings = line.Split(new char[] { ',', ' ' }, StringSplitOptions.RemoveEmptyEntries); + string[] timesStrings = line.Split(new char[] {',', ' '}, StringSplitOptions.RemoveEmptyEntries); foreach (string time in timesStrings) { @@ -42,7 +39,5 @@ Console.Write(", "); } } - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,11 +1,11 @@ using System.Reflection; -using System.Runtime.CompilerServices; +using System.Resources; using System.Runtime.InteropServices; -using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. + [assembly: AssemblyTitle("LogTimeCodeExtractor")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] @@ -18,9 +18,11 @@ // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. + [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM + [assembly: Guid("a20b9b41-55a2-454d-a461-9b4a77abdcf3")] // Version information for an assembly consists of the following four values: @@ -30,6 +32,7 @@ // Build Number // Revision // + [assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.2.0")] -[assembly: NeutralResourcesLanguageAttribute("en")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/FormMain.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,31 +1,22 @@ using System; -using System.Collections; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.IO; using System.Text; using System.Windows.Forms; using System.Xml; - using IrssUtils; using IrssUtils.Forms; +using VariableList=Commands.VariableList; namespace MacroScope { - - public partial class FormMain : Form { - #region Variables - string _macroFile; - Commands.VariableList _variables; + private string _macroFile; + private readonly VariableList _variables; - bool _isDebugging; - int _debugLine; + private bool _isDebugging; + private int _debugLine; #endregion Variables @@ -37,17 +28,16 @@ PopulateCommandList(); - _variables = new Commands.VariableList(); + _variables = new VariableList(); } #endregion Constructor - /// <summary> /// Write the macro in the RichTextBox to a macro name provided. /// </summary> /// <param name="fileName">Name of Macro to write (macro name, not file path).</param> - void WriteToFile(string fileName) + private void WriteToFile(string fileName) { _macroFile = fileName; @@ -83,7 +73,7 @@ /// Read a macro into the listBox from the macro name provided. /// </summary> /// <param name="fileName">Name of Macro to read (macro name, not file path).</param> - void ReadFromFile(string fileName) + private void ReadFromFile(string fileName) { _macroFile = fileName; @@ -106,29 +96,27 @@ } - void ResetVariables() + private void ResetVariables() { _variables.VariableClear(); listViewVariables.Clear(); } - void LoadVariables(string fileName) + private void LoadVariables(string fileName) { // Dictionary<string, string>.Enumerator enumerator = _variables.GetEnumerator(); } - void SaveVariables(string fileName) + private void SaveVariables(string fileName) { - } - void ProcessCurrentLine() + private void ProcessCurrentLine() { - } - void DebugStep() + private void DebugStep() { if (_isDebugging) { @@ -137,9 +125,6 @@ _debugLine++; HighlightDebugLine(); - - - } else { @@ -150,7 +135,7 @@ } } - void DebugReset() + private void DebugReset() { _isDebugging = true; _debugLine = 0; @@ -158,7 +143,7 @@ HighlightDebugLine(); } - void DebugEnd() + private void DebugEnd() { _isDebugging = false; @@ -166,21 +151,18 @@ } - void HighlightDebugLine() + private void HighlightDebugLine() { if (_isDebugging) { - } else { - } - } - void PopulateCommandList() + private void PopulateCommandList() { TreeNode macroCommands = new TreeNode("Macro Commands"); macroCommands.Nodes.Add(Common.UITextSetVar); @@ -222,11 +204,11 @@ mediaPortalCommands.Nodes.Add(Common.UITextMultiMap); mediaPortalCommands.Nodes.Add(Common.UITextSendMPAction); mediaPortalCommands.Nodes.Add(Common.UITextSendMPMsg); - treeViewCommandList.Nodes.Add(mediaPortalCommands); + treeViewCommandList.Nodes.Add(mediaPortalCommands); } - void InsertCommand(string commandUiText) + private void InsertCommand(string commandUiText) { string newCommand = String.Empty; @@ -238,22 +220,18 @@ InsertText(beepCommand.CommandString); break; - - - - } if (!String.IsNullOrEmpty(newCommand)) InsertText(newCommand); } - void InsertText(string text) + private void InsertText(string text) { richTextBoxMacro.Text.Insert(richTextBoxMacro.SelectionStart, text); } - void UpdateStatus(string text) + private void UpdateStatus(string text) { toolStripStatusLabel.Text = text; } @@ -273,17 +251,14 @@ private void saveAsToolStripMenuItem_Click(object sender, EventArgs e) { - } private void saveToolStripMenuItem_Click(object sender, EventArgs e) { - } private void closeToolStripMenuItem_Click(object sender, EventArgs e) { - } private void quitToolStripMenuItem_Click(object sender, EventArgs e) @@ -293,12 +268,10 @@ private void contentsToolStripMenuItem_Click(object sender, EventArgs e) { - } private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { - } private void treeViewCommandList_DoubleClick(object sender, EventArgs e) @@ -321,8 +294,5 @@ { DebugEnd(); } - - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/Program.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/Program.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,21 +1,17 @@ using System; -using System.Collections.Generic; using System.Threading; using System.Windows.Forms; - using IrssUtils; namespace MacroScope { - - static class Program + internal static class Program { - /// <summary> /// The main entry point for the application. /// </summary> [STAThread] - static void Main() + private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); @@ -41,11 +37,9 @@ /// </summary> /// <param name="sender">Sender.</param> /// <param name="e">Event args.</param> - static void Application_ThreadException(object sender, ThreadExceptionEventArgs e) + private static void Application_ThreadException(object sender, ThreadExceptionEventArgs e) { IrssLog.Error(e.Exception); } - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,14 +1,14 @@ using System; using System.Reflection; -using System.Runtime.CompilerServices; +using System.Resources; using System.Runtime.InteropServices; -using System.Resources; // // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. // + [assembly: AssemblyTitle("MacroScope")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] @@ -21,9 +21,11 @@ // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. + [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM + [assembly: Guid("3b4dbc18-a931-42eb-aa55-fc96a32f215f")] // Version information for an assembly consists of the following four values: @@ -33,8 +35,8 @@ // Build Number // Revision // + [assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.2.0")] - [assembly: CLSCompliant(true)] -[assembly: NeutralResourcesLanguageAttribute("en")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/ExternalChannelConfig.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/ExternalChannelConfig.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/ExternalChannelConfig.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,49 +1,45 @@ using System; -using System.Collections.Generic; -using System.IO; using System.Text; using System.Xml; namespace MediaCenterBlaster { - /// <summary> /// External Channel Changing configuration file for tuning Set Top Boxes. /// </summary> public class ExternalChannelConfig { - #region Constants - const int DefaultCardID = 0; + private const int DefaultCardID = 0; - const int DefaultPauseTime = 500; - const bool DefaultSendSelect = false; - const bool DefaultDoubleChannelSelect = false; - const int DefaultRepeatChannelCommands = 0; - const int DefaultChannelDigits = 0; - const int DefaultRepeatPauseTime = 2000; - const bool DefaultUsePreChangeCommand = false; + private const int DefaultPauseTime = 500; + private const bool DefaultSendSelect = false; + private const bool DefaultDoubleChannelSelect = false; + private const int DefaultRepeatChannelCommands = 0; + private const int DefaultChannelDigits = 0; + private const int DefaultRepeatPauseTime = 2000; + private const bool DefaultUsePreChangeCommand = false; #endregion Constants #region Variables - string _fileName; + private readonly string _fileName; - int _cardID; + private int _cardID; - int _pauseTime; - bool _sendSelect; - bool _doubleChannelSelect; - int _repeatChannelCommands; - int _channelDigits; - int _repeatPauseTime; - bool _usePreChangeCommand; + private int _pauseTime; + private bool _sendSelect; + private bool _doubleChannelSelect; + private int _repeatChannelCommands; + private int _channelDigits; + private int _repeatPauseTime; + private bool _usePreChangeCommand; - string _selectCommand; - string _preChangeCommand; - string[] _digits; + private string _selectCommand; + private string _preChangeCommand; + private string[] _digits; #endregion Variables @@ -77,6 +73,7 @@ get { return _pauseTime; } set { _pauseTime = value; } } + /// <summary> /// Gets or sets a value indicating whether to send a select command. /// </summary> @@ -86,6 +83,7 @@ get { return _sendSelect; } set { _sendSelect = value; } } + /// <summary> /// Gets or sets a value indicating whether to send the select command twice. /// </summary> @@ -95,6 +93,7 @@ get { return _doubleChannelSelect; } set { _doubleChannelSelect = value; } } + /// <summary> /// Gets or sets the flag to repeat channel commands. /// </summary> @@ -104,6 +103,7 @@ get { return _repeatChannelCommands; } set { _repeatChannelCommands = value; } } + /// <summary> /// Gets or sets the channel digit count. /// </summary> @@ -113,6 +113,7 @@ get { return _channelDigits; } set { _channelDigits = value; } } + /// <summary> /// Gets or sets the pause time between repeats. /// </summary> @@ -122,6 +123,7 @@ get { return _repeatPauseTime; } set { _repeatPauseTime = value; } } + /// <summary> /// Gets or sets a value indicating whether to use a pre-change command. /// </summary> @@ -143,6 +145,7 @@ get { return _digits; } set { _digits = value; } } + /// <summary> /// Gets or sets the select command. /// </summary> @@ -152,6 +155,7 @@ get { return _selectCommand; } set { _selectCommand = value; } } + /// <summary> /// Gets or sets the pre-change command. /// </summary> @@ -161,7 +165,7 @@ get { return _preChangeCommand; } set { _preChangeCommand = value; } } - + #endregion Properties #region Constructor @@ -172,21 +176,21 @@ /// <param name="fileName">Name of the configuration file.</param> public ExternalChannelConfig(string fileName) { - _fileName = fileName; + _fileName = fileName; - _cardID = DefaultCardID; + _cardID = DefaultCardID; - _pauseTime = DefaultPauseTime; - _sendSelect = DefaultSendSelect; - _doubleChannelSelect = DefaultDoubleChannelSelect; - _repeatChannelCommands = DefaultRepeatChannelCommands; - _channelDigits = DefaultChannelDigits; - _repeatPauseTime = DefaultRepeatPauseTime; - _usePreChangeCommand = DefaultUsePreChangeCommand; + _pauseTime = DefaultPauseTime; + _sendSelect = DefaultSendSelect; + _doubleChannelSelect = DefaultDoubleChannelSelect; + _repeatChannelCommands = DefaultRepeatChannelCommands; + _channelDigits = DefaultChannelDigits; + _repeatPauseTime = DefaultRepeatPauseTime; + _usePreChangeCommand = DefaultUsePreChangeCommand; - _selectCommand = String.Empty; - _preChangeCommand = String.Empty; - _digits = new string[10]; + _selectCommand = String.Empty; + _preChangeCommand = String.Empty; + _digits = new string[10]; for (int i = 0; i < 10; i++) _digits[i] = String.Empty; @@ -203,7 +207,7 @@ { writer.Formatting = Formatting.Indented; writer.Indentation = 1; - writer.IndentChar = (char)9; + writer.IndentChar = (char) 9; writer.WriteStartDocument(true); writer.WriteStartElement("config"); // <config> @@ -226,18 +230,19 @@ } } - static string GetString(XmlDocument doc, string element, string defaultValue) + private static string GetString(XmlDocument doc, string element, string defaultValue) { if (String.IsNullOrEmpty(element)) return defaultValue; - + XmlNode node = doc.DocumentElement.SelectSingleNode(element); if (node == null) return defaultValue; return node.InnerText; } - static int GetInt(XmlDocument doc, string element, int defaultValue) + + private static int GetInt(XmlDocument doc, string element, int defaultValue) { if (String.IsNullOrEmpty(element)) return defaultValue; @@ -252,7 +257,8 @@ return defaultValue; } - static bool GetBool(XmlDocument doc, string element, bool defaultValue) + + private static bool GetBool(XmlDocument doc, string element, bool defaultValue) { if (String.IsNullOrEmpty(element)) return defaultValue; @@ -280,23 +286,21 @@ XmlDocument doc = new XmlDocument(); doc.Load(fileName); - newECC.PauseTime = GetInt(doc, "PauseTime", DefaultPauseTime); - newECC.UsePreChangeCommand = GetBool(doc, "UsePreChangeCommand", DefaultUsePreChangeCommand); - newECC.SendSelect = GetBool(doc, "SendSelect", DefaultSendSelect); - newECC.DoubleChannelSelect = GetBool(doc, "DoubleChannelSelect", DefaultDoubleChannelSelect); - newECC.RepeatChannelCommands = GetInt(doc, "RepeatChannelCommands", DefaultRepeatChannelCommands); - newECC.ChannelDigits = GetInt(doc, "ChannelDigits", DefaultChannelDigits); - newECC.RepeatPauseTime = GetInt(doc, "RepeatDelay", DefaultRepeatPauseTime); + newECC.PauseTime = GetInt(doc, "PauseTime", DefaultPauseTime); + newECC.UsePreChangeCommand = GetBool(doc, "UsePreChangeCommand", DefaultUsePreChangeCommand); + newECC.SendSelect = GetBool(doc, "SendSelect", DefaultSendSelect); + newECC.DoubleChannelSelect = GetBool(doc, "DoubleChannelSelect", DefaultDoubleChannelSelect); + newECC.RepeatChannelCommands = GetInt(doc, "RepeatChannelCommands", DefaultRepeatChannelCommands); + newECC.ChannelDigits = GetInt(doc, "ChannelDigits", DefaultChannelDigits); + newECC.RepeatPauseTime = GetInt(doc, "RepeatDelay", DefaultRepeatPauseTime); - newECC.SelectCommand = GetString(doc, "SelectCommand", String.Empty); - newECC.PreChangeCommand = GetString(doc, "PreChangeCommand", String.Empty); - + newECC.SelectCommand = GetString(doc, "SelectCommand", String.Empty); + newECC.PreChangeCommand = GetString(doc, "PreChangeCommand", String.Empty); + for (int index = 0; index < 10; index++) - newECC.Digits[index] = GetString(doc, "Digit" + index.ToString(), String.Empty); + newECC.Digits[index] = GetString(doc, "Digit" + index.ToString(), String.Empty); return newECC; } - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/ExternalChannels.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/ExternalChannels.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/ExternalChannels.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,30 +1,21 @@ using System; -using System.Collections; -using System.Collections.Generic; -using System.ComponentModel; -#if TRACE -using System.Diagnostics; -#endif -using System.Drawing; using System.IO; -using System.Text; using System.Threading; using System.Windows.Forms; -using System.Xml; - using IrssUtils; +#if TRACE +using System.Diagnostics; +#endif namespace MediaCenterBlaster { - - partial class ExternalChannels : Form + internal partial class ExternalChannels : Form { - #region Variables - TabPage _tvCardTab; - StbSetup _tvCardStbSetup; - + private TabPage _tvCardTab; + private StbSetup _tvCardStbSetup; + #endregion Variables #region Constructor @@ -45,7 +36,7 @@ _tvCardTab = new TabPage("STB"); _tvCardTab.Controls.Add(_tvCardStbSetup); - this.tabControlTVCards.TabPages.Add(_tvCardTab); + tabControlTVCards.TabPages.Add(_tvCardTab); // Setup quick setup combo box string[] quickSetupFiles = Directory.GetFiles(Common.FolderSTB, "*.xml", SearchOption.TopDirectoryOnly); @@ -55,7 +46,8 @@ comboBoxQuickSetup.Items.Add("Clear all"); } - static void ProcessExternalChannelProgram(string runCommand, int currentChannelDigit, string fullChannelString) + private static void ProcessExternalChannelProgram(string runCommand, int currentChannelDigit, + string fullChannelString) { string[] commands = Common.SplitRunCommand(runCommand); @@ -65,7 +57,7 @@ Common.ProcessRunCommand(commands); } - static void ProcessSerialCommand(string serialCommand, int currentChannelDigit, string fullChannelString) + private static void ProcessSerialCommand(string serialCommand, int currentChannelDigit, string fullChannelString) { string[] commands = Common.SplitSerialCommand(serialCommand); @@ -86,11 +78,12 @@ } catch (Exception ex) { - MessageBox.Show(ex.ToString(), "Failed to save external channel setup", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(ex.ToString(), "Failed to save external channel setup", MessageBoxButtons.OK, + MessageBoxIcon.Error); } - this.DialogResult = DialogResult.OK; - this.Close(); + DialogResult = DialogResult.OK; + Close(); } private void buttonTest_Click(object sender, EventArgs e) @@ -135,7 +128,7 @@ if (setup.PauseTime > 0) Thread.Sleep(setup.PauseTime); } - + foreach (char digit in channel) { charVal = digit - 48; @@ -183,18 +176,17 @@ } catch (Exception ex) { - MessageBox.Show(ex.ToString(), "Failed to quick-set external channel setup", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(ex.ToString(), "Failed to quick-set external channel setup", MessageBoxButtons.OK, + MessageBoxIcon.Error); } } private void buttonCancel_Click(object sender, EventArgs e) { - this.DialogResult = DialogResult.Cancel; - this.Close(); + DialogResult = DialogResult.Cancel; + Close(); } #endregion Buttons - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/MacroEditor.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/MacroEditor.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/MacroEditor.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,24 +1,19 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -#if TRACE -using System.Diagnostics; -#endif -using System.Drawing; using System.IO; using System.Text; using System.Windows.Forms; using System.Xml; - using IrssUtils; +using IrssUtils.Exceptions; using IrssUtils.Forms; +#if TRACE +using System.Diagnostics; +#endif namespace MediaCenterBlaster { - - partial class MacroEditor : Form + internal partial class MacroEditor : Form { - #region Constructor /// <summary> @@ -28,7 +23,7 @@ { InitializeComponent(); - textBoxName.Text = "New"; + textBoxName.Text = "New"; textBoxName.Enabled = true; } @@ -42,7 +37,7 @@ if (String.IsNullOrEmpty(name)) throw new ArgumentNullException("name"); - textBoxName.Text = name; + textBoxName.Text = name; textBoxName.Enabled = false; string fileName = Path.Combine(Tray.FolderMacros, name + Common.FileExtensionMacro); @@ -53,7 +48,7 @@ #region Implementation - void RefreshCommandList() + private void RefreshCommandList() { comboBoxCommands.Items.Clear(); @@ -88,7 +83,7 @@ /// Write the macro in the listBox to a macro name provided. /// </summary> /// <param name="fileName">Name of Macro to write (macro name, not file path).</param> - void WriteToFile(string fileName) + private void WriteToFile(string fileName) { try { @@ -119,7 +114,7 @@ /// Read a macro into the listBox from the macro name provided. /// </summary> /// <param name="fileName">Name of Macro to read (macro name, not file path).</param> - void ReadFromFile(string fileName) + private void ReadFromFile(string fileName) { try { @@ -214,7 +209,7 @@ if (popupMessage.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixPopup + popupMessage.CommandString; } - /* + /* else if (selected.Equals(Common.UITextWindowState, StringComparison.OrdinalIgnoreCase)) { newCommand = Common.CmdPrefixWindowState; @@ -261,7 +256,7 @@ } else { - throw new IrssUtils.Exceptions.CommandStructureException(String.Format("Unknown command in macro command list \"{0}\"", selected)); + throw new CommandStructureException(String.Format("Unknown command in macro command list \"{0}\"", selected)); } if (!String.IsNullOrEmpty(newCommand)) @@ -285,6 +280,7 @@ listBoxMacro.SelectedIndex = selected - 1; } } + private void buttonMoveDown_Click(object sender, EventArgs e) { int selected = listBoxMacro.SelectedIndex; @@ -309,14 +305,16 @@ if (name.Length == 0) { - MessageBox.Show(this, "You must supply a name for this Macro", "Name missing", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "You must supply a name for this Macro", "Name missing", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); textBoxName.Focus(); return; } if (!Common.IsValidFileName(name)) { - MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); textBoxName.Focus(); return; } @@ -337,8 +335,8 @@ private void buttonCancel_Click(object sender, EventArgs e) { - this.DialogResult = DialogResult.Cancel; - this.Close(); + DialogResult = DialogResult.Cancel; + Close(); } private void buttonOK_Click(object sender, EventArgs e) @@ -347,14 +345,16 @@ if (name.Length == 0) { - MessageBox.Show(this, "You must supply a name for this Macro", "Name missing", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "You must supply a name for this Macro", "Name missing", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); textBoxName.Focus(); return; } if (!Common.IsValidFileName(name)) { - MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); textBoxName.Focus(); return; } @@ -370,8 +370,8 @@ MessageBox.Show(this, ex.Message, "Failed writing macro to file", MessageBoxButtons.OK, MessageBoxIcon.Error); } - this.DialogResult = DialogResult.OK; - this.Close(); + DialogResult = DialogResult.OK; + Close(); } private void listBoxCommandSequence_DoubleClick(object sender, EventArgs e) @@ -425,7 +425,7 @@ else if (selected.StartsWith(Common.CmdPrefixHttpMsg, StringComparison.OrdinalIgnoreCase)) { string[] commands = Common.SplitHttpMessageCommand(selected.Substring(Common.CmdPrefixHttpMsg.Length)); - + HttpMessageCommand httpMessageCommand = new HttpMessageCommand(commands); if (httpMessageCommand.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixHttpMsg + httpMessageCommand.CommandString; @@ -486,7 +486,5 @@ } #endregion Implementation - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/SetupForm.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/SetupForm.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/SetupForm.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,27 +1,18 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; using System.IO; using System.Net; -using System.Text; -using System.Threading; using System.Windows.Forms; -using System.Xml; - using IrssComms; using IrssUtils; using IrssUtils.Forms; namespace MediaCenterBlaster { - - partial class SetupForm : Form + internal partial class SetupForm : Form { - #region Variables - LearnIR _learnIR; + private LearnIR _learnIR; #endregion Variables @@ -33,7 +24,7 @@ } #endregion Constructor - + private void SetupForm_Load(object sender, EventArgs e) { RefreshIRList(); @@ -49,7 +40,7 @@ #region Local Methods - void ReceivedMessage(IrssMessage received) + private void ReceivedMessage(IrssMessage received) { if (_learnIR != null && received.Type == MessageType.LearnIR) { @@ -68,7 +59,7 @@ } } - void RefreshIRList() + private void RefreshIRList() { listViewIR.Items.Clear(); @@ -77,7 +68,8 @@ foreach (string irFile in irList) listViewIR.Items.Add(irFile); } - void RefreshMacroList() + + private void RefreshMacroList() { listViewMacro.Items.Clear(); @@ -87,7 +79,7 @@ listViewMacro.Items.Add(macroFile); } - void EditIR() + private void EditIR() { if (listViewIR.SelectedItems.Count != 1) return; @@ -122,7 +114,8 @@ MessageBox.Show(this, ex.Message, "Failed to edit IR file", MessageBoxButtons.OK, MessageBoxIcon.Error); } } - void EditMacro() + + private void EditMacro() { if (listViewMacro.SelectedItems.Count != 1) return; @@ -182,10 +175,12 @@ RefreshIRList(); } + private void buttonEditIR_Click(object sender, EventArgs e) { EditIR(); } + private void buttonDeleteIR_Click(object sender, EventArgs e) { if (listViewIR.SelectedItems.Count != 1) @@ -195,12 +190,15 @@ string fileName = Path.Combine(Common.FolderIRCommands, file + Common.FileExtensionIR); if (File.Exists(fileName)) { - if (MessageBox.Show(this, String.Format("Are you sure you want to delete \"{0}\"?", file), "Confirm delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + if ( + MessageBox.Show(this, String.Format("Are you sure you want to delete \"{0}\"?", file), "Confirm delete", + MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) File.Delete(fileName); } else { - MessageBox.Show(this, "File not found: " + fileName, "IR file missing", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "File not found: " + fileName, "IR file missing", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); } RefreshIRList(); @@ -213,10 +211,12 @@ RefreshMacroList(); } + private void buttonEditMacro_Click(object sender, EventArgs e) { EditMacro(); } + private void buttonDeleteMacro_Click(object sender, EventArgs e) { if (listViewMacro.SelectedItems.Count != 1) @@ -226,16 +226,20 @@ string fileName = Path.Combine(Tray.FolderMacros, file + Common.FileExtensionMacro); if (File.Exists(fileName)) { - if (MessageBox.Show(this, String.Format("Are you sure you want to delete \"{0}\"?", file), "Confirm delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + if ( + MessageBox.Show(this, String.Format("Are you sure you want to delete \"{0}\"?", file), "Confirm delete", + MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) File.Delete(fileName); } else { - MessageBox.Show(this, "File not found: " + fileName, "Macro file missing", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, "File not found: " + fileName, "Macro file missing", MessageBoxButtons.OK, + MessageBoxIcon.Exclamation); } RefreshMacroList(); } + private void buttonTestMacro_Click(object sender, EventArgs e) { if (listViewMacro.SelectedItems.Count != 1) @@ -251,17 +255,19 @@ MessageBox.Show(this, ex.Message, "Test failed", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + private void buttonOK_Click(object sender, EventArgs e) { Tray.LogVerbose = checkBoxLogVerbose.Checked; - - this.DialogResult = DialogResult.OK; - this.Close(); + + DialogResult = DialogResult.OK; + Close(); } + private void buttonCancel_Click(object sender, EventArgs e) { - this.DialogResult = DialogResult.Cancel; - this.Close(); + DialogResult = DialogResult.Cancel; + Close(); } private void buttonChangeServer_Click(object sender, EventArgs e) @@ -274,7 +280,7 @@ Tray.ServerHost = serverAddress.ServerHost; IPAddress serverIP = Client.GetIPFromName(Tray.ServerHost); - IPEndPoint endPoint = new IPEndPoint(serverIP, IrssComms.Server.DefaultPort); + IPEndPoint endPoint = new IPEndPoint(serverIP, Server.DefaultPort); Tray.StartClient(endPoint); } @@ -293,6 +299,7 @@ { EditIR(); } + private void listViewMacro_DoubleClick(object sender, EventArgs e) { EditMacro(); @@ -318,7 +325,8 @@ string oldFileName = Path.Combine(Common.FolderIRCommands, originItem.Text + Common.FileExtensionIR); if (!File.Exists(oldFileName)) { - MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, + MessageBoxIcon.Error); e.CancelEdit = true; return; } @@ -327,7 +335,8 @@ if (!Common.IsValidFileName(name)) { - MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, + MessageBoxIcon.Error); e.CancelEdit = true; return; } @@ -344,6 +353,7 @@ MessageBox.Show(ex.Message, "Failed to rename file", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + private void listViewMacro_AfterLabelEdit(object sender, LabelEditEventArgs e) { ListView origin = sender as ListView; @@ -364,7 +374,8 @@ string oldFileName = Path.Combine(Tray.FolderMacros, originItem.Text + Common.FileExtensionMacro); if (!File.Exists(oldFileName)) { - MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, + MessageBoxIcon.Error); e.CancelEdit = true; return; } @@ -373,7 +384,8 @@ if (!Common.IsValidFileName(name)) { - MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, + MessageBoxIcon.Error); e.CancelEdit = true; return; } @@ -397,11 +409,8 @@ SystemRegistry.SetAutoRun("Media Center Blaster", Application.ExecutablePath); else SystemRegistry.RemoveAutoRun("Media Center Blaster"); - } #endregion Other Controls - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/StbSetup.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/StbSetup.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Forms/StbSetup.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,32 +1,26 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; using System.IO; -using System.Text; using System.Windows.Forms; using System.Xml; - using IrssUtils; +using IrssUtils.Exceptions; using IrssUtils.Forms; namespace MediaCenterBlaster { - - partial class StbSetup : UserControl + internal partial class StbSetup : UserControl { - #region Constants - const string ParameterInfo = -@"%1 = Current channel number digit (-1 for Select/Pre-Change) + private const string ParameterInfo = + @"%1 = Current channel number digit (-1 for Select/Pre-Change) %2 = Full channel number string"; #endregion Constants #region Variables - int _cardId; + private readonly int _cardId; #endregion Variables @@ -41,18 +35,22 @@ { get { return Decimal.ToInt32(numericUpDownPauseTime.Value); } } + public bool SendSelect { get { return checkBoxSendSelect.Checked; } } + public bool DoubleChannelSelect { get { return checkBoxDoubleSelect.Checked; } } + public int RepeatChannelCommands { get { return Decimal.ToInt32(numericUpDownRepeat.Value); } } + public int ChannelDigits { get @@ -63,10 +61,12 @@ return chDigits; } } + public int RepeatPauseTime { get { return Decimal.ToInt32(numericUpDownRepeatDelay.Value); } } + public bool UsePreChangeCommand { get { return checkBoxUsePreChange.Checked; } @@ -79,13 +79,15 @@ string[] _digits = new string[10]; for (int i = 0; i < 10; i++) _digits[i] = listViewExternalCommands.Items[i].SubItems[1].Text; - return _digits; + return _digits; } } + public string SelectCommand { get { return listViewExternalCommands.Items[10].SubItems[1].Text; } } + public string PreChangeCommand { get { return listViewExternalCommands.Items[11].SubItems[1].Text; } @@ -151,26 +153,26 @@ // Setup command list. for (int i = 0; i < 10; i++) - listViewExternalCommands.Items[i].SubItems[1].Text = config.Digits[i]; + listViewExternalCommands.Items[i].SubItems[1].Text = config.Digits[i]; - listViewExternalCommands.Items[10].SubItems[1].Text = config.SelectCommand; - listViewExternalCommands.Items[11].SubItems[1].Text = config.PreChangeCommand; + listViewExternalCommands.Items[10].SubItems[1].Text = config.SelectCommand; + listViewExternalCommands.Items[11].SubItems[1].Text = config.PreChangeCommand; // Setup options. - numericUpDownPauseTime.Value = config.PauseTime; - checkBoxSendSelect.Checked = config.SendSelect; - checkBoxDoubleSelect.Checked = config.DoubleChannelSelect; - numericUpDownRepeat.Value = config.RepeatChannelCommands; + numericUpDownPauseTime.Value = config.PauseTime; + checkBoxSendSelect.Checked = config.SendSelect; + checkBoxDoubleSelect.Checked = config.DoubleChannelSelect; + numericUpDownRepeat.Value = config.RepeatChannelCommands; - checkBoxDoubleSelect.Enabled = checkBoxSendSelect.Checked; + checkBoxDoubleSelect.Enabled = checkBoxSendSelect.Checked; int channelDigitsSelect = config.ChannelDigits; if (channelDigitsSelect > 0) channelDigitsSelect--; - comboBoxChDigits.SelectedIndex = channelDigitsSelect; + comboBoxChDigits.SelectedIndex = channelDigitsSelect; - checkBoxUsePreChange.Checked = config.UsePreChangeCommand; - numericUpDownRepeatDelay.Value = new Decimal(config.RepeatPauseTime); + checkBoxUsePreChange.Checked = config.UsePreChangeCommand; + numericUpDownRepeatDelay.Value = new Decimal(config.RepeatPauseTime); } public void SetToConfig() @@ -226,11 +228,11 @@ for (int i = 0; i < 12; i++) { if (i == 10) - command = IrssUtils.XML.GetString(nodeList, "SelectCommand", String.Empty); + command = XML.GetString(nodeList, "SelectCommand", String.Empty); else if (i == 11) - command = IrssUtils.XML.GetString(nodeList, "PreChangeCommand", String.Empty); + command = XML.GetString(nodeList, "PreChangeCommand", String.Empty); else - command = IrssUtils.XML.GetString(nodeList, String.Format("Digit{0}", i), String.Empty); + command = XML.GetString(nodeList, String.Format("Digit{0}", i), String.Empty); if (command.StartsWith(Common.CmdPrefixSTB, StringComparison.OrdinalIgnoreCase)) blastCommandCount++; @@ -239,11 +241,11 @@ for (int i = 0; i < 12; i++) { if (i == 10) - command = IrssUtils.XML.GetString(nodeList, "SelectCommand", String.Empty); + command = XML.GetString(nodeList, "SelectCommand", String.Empty); else if (i == 11) - command = IrssUtils.XML.GetString(nodeList, "PreChangeCommand", String.Empty); + command = XML.GetString(nodeList, "PreChangeCommand", String.Empty); else - command = IrssUtils.XML.GetString(nodeList, String.Format("Digit{0}", i), String.Empty); + command = XML.GetString(nodeList, String.Format("Digit{0}", i), String.Empty); if (command.StartsWith(Common.CmdPrefixSTB, StringComparison.OrdinalIgnoreCase)) { @@ -288,17 +290,20 @@ } } - numericUpDownPauseTime.Value = new Decimal(IrssUtils.XML.GetInt(nodeList, "PauseTime", Decimal.ToInt32(numericUpDownPauseTime.Value))); - checkBoxUsePreChange.Checked = IrssUtils.XML.GetBool(nodeList, "UsePreChangeCommand", checkBoxUsePreChange.Checked); - checkBoxSendSelect.Checked = IrssUtils.XML.GetBool(nodeList, "SendSelect", checkBoxSendSelect.Checked); - checkBoxDoubleSelect.Checked = IrssUtils.XML.GetBool(nodeList, "DoubleChannelSelect", checkBoxDoubleSelect.Checked); - numericUpDownRepeat.Value = new Decimal(IrssUtils.XML.GetInt(nodeList, "RepeatChannelCommands", Decimal.ToInt32(numericUpDownRepeat.Value))); - numericUpDownRepeatDelay.Value = new Decimal(IrssUtils.XML.GetInt(nodeList, "RepeatDelay", Decimal.ToInt32(numericUpDownRepeatDelay.Value))); + numericUpDownPauseTime.Value = + new Decimal(XML.GetInt(nodeList, "PauseTime", Decimal.ToInt32(numericUpDownPauseTime.Value))); + checkBoxUsePreChange.Checked = XML.GetBool(nodeList, "UsePreChangeCommand", checkBoxUsePreChange.Checked); + checkBoxSendSelect.Checked = XML.GetBool(nodeList, "SendSelect", checkBoxSendSelect.Checked); + checkBoxDoubleSelect.Checked = XML.GetBool(nodeList, "DoubleChannelSelect", checkBoxDoubleSelect.Checked); + numericUpDownRepeat.Value = + new Decimal(XML.GetInt(nodeList, "RepeatChannelCommands", Decimal.ToInt32(numericUpDownRepeat.Value))); + numericUpDownRepeatDelay.Value = + new Decimal(XML.GetInt(nodeList, "RepeatDelay", Decimal.ToInt32(numericUpDownRepeatDelay.Value))); int digitsWas = comboBoxChDigits.SelectedIndex; if (digitsWas > 0) digitsWas--; - int digits = IrssUtils.XML.GetInt(nodeList, "ChannelDigits", digitsWas); + int digits = XML.GetInt(nodeList, "ChannelDigits", digitsWas); if (digits > 0) digits++; comboBoxChDigits.SelectedIndex = digits; @@ -364,7 +369,7 @@ else if (selected.StartsWith(Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) { string[] commands = Common.SplitRunCommand(selected.Substring(Common.CmdPrefixRun.Length)); - + ExternalProgram executeProgram = new ExternalProgram(commands, ParameterInfo); if (executeProgram.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixRun + executeProgram.CommandString; @@ -372,7 +377,7 @@ else if (selected.StartsWith(Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) { string[] commands = Common.SplitSerialCommand(selected.Substring(Common.CmdPrefixSerial.Length)); - + SerialCommand serialCommand = new SerialCommand(commands, ParameterInfo); if (serialCommand.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixSerial + serialCommand.CommandString; @@ -380,7 +385,7 @@ else if (selected.StartsWith(Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) { string[] commands = Common.SplitWindowMessageCommand(selected.Substring(Common.CmdPrefixWindowMsg.Length)); - + MessageCommand messageCommand = new MessageCommand(commands); if (messageCommand.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixWindowMsg + messageCommand.CommandString; @@ -404,7 +409,7 @@ else if (selected.StartsWith(Common.CmdPrefixKeys, StringComparison.OrdinalIgnoreCase)) { KeysCommand keysCommand = new KeysCommand(selected.Substring(Common.CmdPrefixKeys.Length)); - + if (keysCommand.ShowDialog(this) == DialogResult.OK) newCommand = Common.CmdPrefixKeys + keysCommand.CommandString; } @@ -496,7 +501,7 @@ } else { - throw new IrssUtils.Exceptions.CommandStructureException(String.Format("Invalid command in STB Setup: {0}", selected)); + throw new CommandStructureException(String.Format("Invalid command in STB Setup: {0}", selected)); } if (!String.IsNullOrEmpty(newCommand)) @@ -511,7 +516,5 @@ } #endregion Private Methods - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Program.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Program.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -2,20 +2,17 @@ using System.Diagnostics; using System.Threading; using System.Windows.Forms; - using IrssUtils; namespace MediaCenterBlaster { - - static class Program + internal static class Program { - /// <summary> /// The main entry point for the application. /// </summary> [STAThread] - static void Main() + private static void Main() { // Check for multiple instances. if (Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName).Length != 1) @@ -52,7 +49,5 @@ { IrssLog.Error(e.Exception); } - } - -} +} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,14 +1,14 @@ using System; using System.Reflection; -using System.Runtime.CompilerServices; +using System.Resources; using System.Runtime.InteropServices; -using System.Resources; // // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. // + [assembly: AssemblyTitle("Media Center Blaster")] [assembly: AssemblyDescription("Runs in the system tray and listens to Media Center events")] [assembly: AssemblyConfiguration("")] @@ -21,6 +21,7 @@ // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. + [assembly: ComVisible(false)] // @@ -36,7 +37,6 @@ [assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.2.0")] - [assembly: CLSCompliant(true)] [assembly: Guid("38C3CDEB-6E99-4c35-BA19-504DA8C7C7E8")] -[assembly: NeutralResourcesLanguageAttribute("en")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file Modified: trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Tray.cs =================================================================== --- trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Tray.cs 2009-06-03 00:31:12 UTC (rev 2890) +++ trunk/plugins/IR Server Suite/Applications/Media Center Blaster/Tray.cs 2009-06-03 10:03:58 UTC (rev 2891) @@ -1,63 +1,59 @@ using System; using System.ComponentModel; -using System.Diagnostics; using System.Drawing; using System.IO; using System.Net; -using System.Net.Sockets; using System.Text; using System.Threading; using System.Windows.Forms; using System.Xml; - -using Microsoft.MediaCenter.Samples.MediaState; - using IrssComms; using IrssUtils; +using IrssUtils.Forms; +using Microsoft.MediaCenter.Samples.MediaState; namespace MediaCenterBlaster { - /// <summary> /// Media Center Blaster main class. /// </summary> - class Tray + internal class Tray { - #region Constants - static readonly string ConfigurationFile = Path.Combine(Common.FolderAppData, "Media Center Blaster\\Media Center Blaster.xml"); + private static readonly string ConfigurationFile = Path.Combine(Common.FolderAppData, + "Media Center Blaster\\Media Center Blaster.xml"); internal static readonly string FolderMacros = Path.Combine(Common.FolderAppData, "Media Center Blaster\\Macro"); internal static readonly string ExtCfgFolder = Path.Combine(Common.FolderAppData, "Media Center Blaster"); - const string ProcessCommandThreadName = "ProcessCommand"; + private const string ProcessCommandThreadName = "ProcessCommand"; #endregion Constants #region Variables - static ClientMessageSink _handleMessage; + private static ClientMessageSink _handleMessage; - static Client _client; + private static Client _client; - static bool _registered; + private static bool _registered; - static string _serverHost; - static bool _autoRun; - static bool _logVerbose; + private static string _serverHost; + private static bool _autoRun; + private static bool _logVerbose; - static ExternalChannelConfig _externalChannelConfig; + private static ExternalChannelConfig _externalChannelConfig; - static bool _inConfiguration; - static string _learnIRFilename; + private static bool _inConfiguration; + private static string _learnIRFilename; - static IRServerInfo _irServerInfo = new IRServerInfo(); + private static IRServerInfo _irServerInfo = new IRServerInfo(); - static Container _container; - static NotifyIcon _notifyIcon; - static MediaState _mediaState; + private static Container _container; + private static NotifyIcon _notifyIcon; + private static MediaState _mediaState; #endregion Variables @@ -147,22 +143,22 @@ #region Implementation - void OnMSASEvent(object state, MediaStatusEventArgs args) + private void OnMSASEvent(object state, MediaStatusEventArgs args) { //MediaState typedState = (MediaState)state; IrssLog.Info("OnMSASEvent: {0} {1} {2} {3}", args.Session, args.SessionID, args.Tag, args.Value); } - void TV_MediaChanged(object sender, EventArgs e) + private void TV_MediaChanged(object sender, EventArgs e) { IrssLog.Info("TV_MediaChanged"); - MediaStatusEventArgs mediaStatusEventArgs = (MediaStatusEventArgs)e; + MediaStatusEventArgs mediaStatusEventArgs = (MediaStatusEventArgs) e; // MSPROPTAG_TrackNumber IrssLog.Info("Channel: {0}", mediaStatusEventArgs.Value); - + /* if (_externalChannelConfig == null) throw new ApplicationException("Cannot process tune request, no STB settings are loaded"); @@ -182,7 +178,7 @@ } - static void UpdateTrayIcon(string text, Icon icon) + private static void UpdateTrayIcon(string text, Icon icon) { if (String.IsNullOrEmpty(text)) throw new ArgumentNullException("text"); @@ -213,14 +209,15 @@ try { IPAddress serverIP = Client.GetIPFromName(_serverHost); - IPEndPoint endPoint = new IPEndPoint(serverIP, IrssComms.Server.DefaultPort); + IPEndPoint endPoint = new IPEndPoint(serverIP, Server.DefaultPort); clientStarted = StartClient(endPoint); } catch (Exception ex) { IrssLog.Error(ex); - MessageBox.Show("Failed to start IR Server communications, refer to log file for more details.", "Media Center Blaster - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("Failed to start IR Server communications, refer to log file for more details.", + "Media Center Blaster - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); clientStarted = false; } @@ -251,7 +248,7 @@ return false; } - void Stop() + private void Stop() { _notifyIcon.Visible = false; @@ -265,8 +262,10 @@ _client.Send(message); } } - catch { } - + catch + { + } + StopClient(); if (_mediaState != null) @@ -276,7 +275,7 @@ } } - void LoadSettings() + private void LoadSettings() { try { @@ -310,7 +309,8 @@ CreateDefaultSettings(); } } - void SaveSettings() + + private void SaveSettings() { try { @@ -330,7 +330,7 @@ { writer.Formatting = Formatting.Indented; writer.Indentation = 1; - writer.IndentChar = (char)9; + writer.IndentChar = (char) 9; writer.WriteStartDocument(true); writer.WriteStartElement("settings"); // <settings> @@ -346,7 +346,8 @@ IrssLog.Error(ex); } } - void CreateDefaultSettings() + + private void CreateDefaultSettings() { _serverHost = "localhost"; _logVerbose = true; @@ -357,7 +358,7 @@ /// <summary> /// Load external channel configuration. /// </summary> - static void LoadExternalConfig() + private static void LoadExternalConfig() { string fileName = Path.Combine(ExtCfgFolder, "ExternalChannelConfig.xml"); @@ -3... [truncated message content] |
From: <che...@us...> - 2009-06-07 14:35:23
|
Revision: 2899 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2899&view=rev Author: chef_koch Date: 2009-06-07 14:35:15 +0000 (Sun, 07 Jun 2009) Log Message: ----------- Part 1: refactored irss dir structure - input service is able to be build without mpplugins - mp plugins have their own solution Added Paths: ----------- trunk/plugins/IR Server Suite/Build/ trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat trunk/plugins/IR Server Suite/IR Server Suite/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/ trunk/plugins/IR Server Suite/IR Server Suite/Commands/ trunk/plugins/IR Server Suite/IR Server Suite/Common/ trunk/plugins/IR Server Suite/IR Server Suite/Documentation/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.snk trunk/plugins/IR Server Suite/IR Server Suite/Input Service/ trunk/plugins/IR Server Suite/IR Server Suite/Set Top Boxes/ Removed Paths: ------------- trunk/plugins/IR Server Suite/Applications/ trunk/plugins/IR Server Suite/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build Deploy Release.bat trunk/plugins/IR Server Suite/Commands/ trunk/plugins/IR Server Suite/Common/ trunk/plugins/IR Server Suite/Documentation/ trunk/plugins/IR Server Suite/IR Server Plugins/ trunk/plugins/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/IR Server Suite.snk trunk/plugins/IR Server Suite/Input Service/ trunk/plugins/IR Server Suite/Set Top Boxes/ Copied: trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat (from rev 2898, trunk/plugins/IR Server Suite/Build Deploy Debug.bat) =================================================================== --- trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat 2009-06-07 14:35:15 UTC (rev 2899) @@ -0,0 +1,3 @@ +@ECHO OFF + +call "Build Deploy Release.bat" Debug \ No newline at end of file Copied: trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat (from rev 2898, trunk/plugins/IR Server Suite/Build Deploy Release.bat) =================================================================== --- trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat 2009-06-07 14:35:15 UTC (rev 2899) @@ -0,0 +1,53 @@ +@ECHO OFF + + +REM detect if BUILD_TYPE should be release or debug +if not %1!==Debug! goto RELEASE +:DEBUG +set BUILD_TYPE=Debug +goto START +:RELEASE +set BUILD_TYPE=Release +goto START + + +:START +REM Select program path based on current machine environment +set progpath=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + + +REM set logfile where the infos are written to, and clear that file +set LOG=build_%BUILD_TYPE%.log +echo. > %LOG% + + +echo. +echo -= IR Server Suite =- +echo -= build mode: %BUILD_TYPE% =- +echo. + +echo. +echo Writing SVN revision assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% + +echo. +echo Building IR Server Suite... +"%progpath%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% +rem "%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "IR Server Suite.sln" >> %LOG% + +echo. +echo Reverting assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% + +echo. +echo Reading the svn revision... +echo $WCREV$>template.txt +"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% +SET /p version=<version.txt >> %LOG% +DEL template.txt >> %LOG% +DEL version.txt >> %LOG% + +echo. +echo Building Installer... +"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% Deleted: trunk/plugins/IR Server Suite/Build Deploy Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/Build Deploy Debug.bat 2009-06-07 14:35:15 UTC (rev 2899) @@ -1,3 +0,0 @@ -@ECHO OFF - -call "Build Deploy Release.bat" Debug \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/Build Deploy Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/Build Deploy Release.bat 2009-06-07 14:35:15 UTC (rev 2899) @@ -1,53 +0,0 @@ -@ECHO OFF - - -REM detect if BUILD_TYPE should be release or debug -if not %1!==Debug! goto RELEASE -:DEBUG -set BUILD_TYPE=Debug -goto START -:RELEASE -set BUILD_TYPE=Release -goto START - - -:START -REM Select program path based on current machine environment -set progpath=%ProgramFiles% -if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% - - -REM set logfile where the infos are written to, and clear that file -set LOG=build_%BUILD_TYPE%.log -echo. > %LOG% - - -echo. -echo -= IR Server Suite =- -echo -= build mode: %BUILD_TYPE% =- -echo. - -echo. -echo Writing SVN revision assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% - -echo. -echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% -rem "%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "IR Server Suite.sln" >> %LOG% - -echo. -echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% - -echo. -echo Reading the svn revision... -echo $WCREV$>template.txt -"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% -SET /p version=<version.txt >> %LOG% -DEL template.txt >> %LOG% -DEL version.txt >> %LOG% - -echo. -echo Building Installer... -"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% Copied: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln (from rev 2898, trunk/plugins/IR Server Suite/IR Server Suite.sln) =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln (rev 0) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln 2009-06-07 14:35:15 UTC (rev 2899) @@ -0,0 +1,991 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Applications", "Applications", "{0C209E91-5AD5-4662-AD0E-976A940D4806}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IR Server Plugins", "IR Server Plugins", "{0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaPortal Plugins", "MediaPortal Plugins", "{6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{E757F80C-23C5-4AD6-B178-16799E337E03}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Input Service", "Input Service", "{DEE5AAD1-0110-4681-8FF9-662CEA72FD94}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Commands", "Commands", "{F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Server", "Applications\IR Server\IR Server.csproj", "{D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tray Launcher", "Applications\Tray Launcher\Tray Launcher.csproj", "{0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debug Client", "Applications\Debug Client\Debug Client.csproj", "{4CD051F4-F2B5-47B3-8647-F47C2E4DC131}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Translator", "Applications\Translator\Translator.csproj", "{A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote", "Applications\Virtual Remote\Virtual Remote.csproj", "{46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote Skin Editor", "Applications\Virtual Remote Skin Editor\Virtual Remote Skin Editor.csproj", "{D871AB9A-71B3-4D63-8320-084BAD75064E}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MediaPortal Plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "MediaPortal Plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRMan Receiver", "IR Server Plugins\IRMan Receiver\IRMan Receiver.csproj", "{7C686499-7517-4338-8837-7E8617549D9A}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft MCE Transceiver", "IR Server Plugins\Microsoft MCE Transceiver\Microsoft MCE Transceiver.csproj", "{BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "USB-UIRT Transceiver", "IR Server Plugins\USB-UIRT Transceiver\USB-UIRT Transceiver.csproj", "{99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Windows Message Receiver", "IR Server Plugins\Windows Message Receiver\Windows Message Receiver.csproj", "{4CBA81F9-F0C2-4242-8D72-204597285042}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XBCDRC Receiver", "IR Server Plugins\XBCDRC Receiver\XBCDRC Receiver.csproj", "{2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MediaPortal Plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRTrans Transceiver", "IR Server Plugins\IRTrans Transceiver\IRTrans Transceiver.csproj", "{883913F6-F4A7-4DE2-846A-C2102FAF499E}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "X10 Transceiver", "IR Server Plugins\X10 Transceiver\X10 Transceiver.csproj", "{253FFB14-AB8E-49AB-A005-A42428C3F452}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FusionREMOTE Receiver", "IR Server Plugins\FusionRemote Receiver\FusionREMOTE Receiver.csproj", "{9FDD649E-0502-4FED-9AC1-AA0346394375}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssUtils", "Common\IrssUtils\IrssUtils.csproj", "{CA15769C-232E-4CA7-94FD-206A06CA3ABB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Server Plugin Interface", "IR Server Plugins\IR Server Plugin Interface\IR Server Plugin Interface.csproj", "{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Custom HID Receiver", "IR Server Plugins\Custom HID Receiver\Custom HID Receiver.csproj", "{0F6576B4-C88E-4E79-B7E9-9480498C5A32}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Blast", "Applications\IR Blast\IR Blast.csproj", "{C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Blast (No Window)", "Applications\IR Blast (No Window)\IR Blast (No Window).csproj", "{54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssComms", "Common\IrssComms\IrssComms.csproj", "{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinLirc Transceiver", "IR Server Plugins\WinLirc Transceiver\WinLirc Transceiver.csproj", "{E6A68244-8C31-44A9-9F85-B4A102B5F209}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Girder Plugin", "IR Server Plugins\Girder Plugin\Girder Plugin.csproj", "{0C291BE9-5D15-4097-9119-4FFE19C23113}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serial IR Blaster", "IR Server Plugins\Serial IR Blaster\Serial IR Blaster.csproj", "{1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Input Service", "Input Service\Input Service\Input Service.csproj", "{8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Configuration", "Input Service\Input Service Configuration\Configuration.csproj", "{DC79E2EC-7D1B-4359-A285-38AC8154166B}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IgorPlug Receiver", "IR Server Plugins\IgorPlug Receiver\IgorPlug Receiver.csproj", "{A4023992-CCD6-461E-8E14-219A496734C5}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RedEye Blaster", "IR Server Plugins\RedEye Blaster\RedEye Blaster.csproj", "{5A9954F8-344C-489C-B8DA-8E8927271A02}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web Remote", "Applications\Web Remote\Web Remote.csproj", "{CCDBA239-8E8E-4F5F-A098-7132EED5F160}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wii Remote Receiver", "IR Server Plugins\Wii Remote Receiver\Wii Remote Receiver.csproj", "{A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WiimoteLib", "IR Server Plugins\WiimoteLib\WiimoteLib.csproj", "{37A555DF-7012-4B99-8A47-1C922A361E52}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Direct Input Receiver", "IR Server Plugins\Direct Input Receiver\Direct Input Receiver.csproj", "{732CDF64-D047-4D3C-91DA-E2FF27D84179}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ads Tech PTV-335 Receiver", "IR Server Plugins\Ads Tech PTV-335 Receiver\Ads Tech PTV-335 Receiver.csproj", "{E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Command", "Commands\Command\Command.csproj", "{21E04B17-D850-43E7-AAD3-876C0E062BDB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VariableList", "Commands\VariableList\VariableList.csproj", "{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralCommands", "Commands\GeneralCommands\GeneralCommands.csproj", "{D1BAC7A9-FFB6-44BA-825F-32506831DC3D}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Commands\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShellLink", "Common\ShellLink\ShellLink.csproj", "{28923F6E-8A68-4BC8-A507-825B09C3F64E}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR File Tool", "Applications\IR File Tool\IR File Tool.csproj", "{B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCW Receiver", "IR Server Plugins\HCW Receiver\HCW Receiver.csproj", "{EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speech Receiver", "IR Server Plugins\Speech Receiver\Speech Receiver.csproj", "{3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveDrive Receiver", "IR Server Plugins\LiveDrive Receiver\LiveDrive Receiver.csproj", "{ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RC102 Receiver", "IR Server Plugins\RC102 Receiver\RC102 Receiver.csproj", "{A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacroScope", "Applications\MacroScope\MacroScope.csproj", "{2F296C09-627B-4D6E-A041-1601A8C030C7}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sage Setup", "Applications\SageSetup\Sage Setup.csproj", "{905131F8-F8AC-4A65-A722-37783902D7B8}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dbox Tuner", "Applications\Dbox Tuner\Dbox Tuner.csproj", "{F8CC05AA-6306-459E-BD32-40C02489EFEC}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR501 Receiver", "IR Server Plugins\IR501 Receiver\IR501 Receiver.csproj", "{C7BF555E-638F-4E1B-9D5A-D2D226C77676}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR507 Receiver", "IR Server Plugins\IR507 Receiver\IR507 Receiver.csproj", "{1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoolCommand Receiver", "IR Server Plugins\CoolCommand Receiver\CoolCommand Receiver.csproj", "{C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Abstractor", "Applications\Abstractor\Abstractor.csproj", "{66F37FF9-0398-4954-812D-065C2D153746}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacMini Receiver", "IR Server Plugins\MacMini Receiver\MacMini Receiver.csproj", "{FCE5308F-C451-4113-B7F2-BB6212EA7FAD}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HCW PVR Tuner", "Applications\HCW PVR Tuner\HCW PVR Tuner.csproj", "{EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (PocketPC2003)", "Applications\Virtual Remote (PocketPC2003)\Virtual Remote (PocketPC2003).csproj", "{48839540-780F-4323-8F50-68E2A2385502}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (WinCE5)", "Applications\Virtual Remote (WinCE5)\Virtual Remote (WinCE5).csproj", "{3BB1C204-D08E-43E5-AC68-DCDD624404A5}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Virtual Remote (Smartphone2003)", "Applications\Virtual Remote (Smartphone2003)\Virtual Remote (Smartphone2003).csproj", "{BA322C1E-D7C6-4673-80E2-123B7714B0DB}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keyboard Input Relay", "Applications\Keyboard Input Relay\Keyboard Input Relay.csproj", "{097F7027-77A1-4623-8D6C-3D2020769EFD}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (PocketPC2003) Installer", "Applications\Virtual Remote (PocketPC2003) Installer\Virtual Remote (PocketPC2003) Installer.vddproj", "{FEB70334-6F8E-41D5-9B0A-D5714A296830}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (Smartphone2003) Installer", "Applications\Virtual Remote (Smartphone2003) Installer\Virtual Remote (Smartphone2003) Installer.vddproj", "{4C18B138-BF94-4224-9085-4D3EDA680EDA}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{B900F1C2-3D47-4FEC-85B3-04AAF18C3634}") = "Virtual Remote (WinCE5) Installer", "Applications\Virtual Remote (WinCE5) Installer\Virtual Remote (WinCE5) Installer.vddproj", "{DCE0C464-3843-45F1-A48B-C1A3FF532C1D}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Technotrend Receiver", "IR Server Plugins\Technotrend Receiver\Technotrend Receiver.csproj", "{E83E5C73-5F70-4B52-B6BD-E906BAE90DF6}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keyboard Input", "IR Server Plugins\Keyboard Input\Keyboard Input.csproj", "{26DEDF6D-F60D-4311-9A9E-DDF64500D5BF}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogTimeCodeExtractor", "Applications\LogTimeCodeExtractor\LogTimeCodeExtractor.csproj", "{58BFF250-541B-4AA4-A62D-ACB819AD317B}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssScheduler", "Common\IrssScheduler\IrssScheduler.csproj", "{28098574-D22E-457C-AFFA-560554499EAC}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imon Receiver", "IR Server Plugins\Imon Receiver\Imon Receiver.csproj", "{1F9F8771-1173-409E-A3D0-265756220D27}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Media Center Blaster", "Applications\Media Center Blaster\Media Center Blaster.csproj", "{349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imon USB Receivers", "IR Server Plugins\Imon USB Receivers\Imon USB Receivers.csproj", "{EC37743A-64B2-472A-9EB6-CB052AD2B35C}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pinnacle Serial Receiver", "IR Server Plugins\Pinnacle Serial Receiver\Pinnacle Serial Receiver.csproj", "{EBFA0F67-1EB6-4282-8475-C397B9852B3F}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Debug|x86.ActiveCfg = Debug|Any CPU + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|Any CPU.Build.0 = Release|Any CPU + {D2A1F8D6-A9D3-4BFA-913B-8806642BD0DA}.Release|x86.ActiveCfg = Release|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|x86.ActiveCfg = Debug|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|Any CPU.Build.0 = Release|Any CPU + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|x86.ActiveCfg = Release|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|x86.ActiveCfg = Debug|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|Any CPU.Build.0 = Release|Any CPU + {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|x86.ActiveCfg = Release|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Debug|x86.ActiveCfg = Debug|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|Any CPU.Build.0 = Release|Any CPU + {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}.Release|x86.ActiveCfg = Release|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|Any CPU.Build.0 = Debug|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Debug|x86.ActiveCfg = Debug|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|Any CPU.ActiveCfg = Release|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|Any CPU.Build.0 = Release|Any CPU + {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}.Release|x86.ActiveCfg = Release|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Debug|x86.ActiveCfg = Debug|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.Build.0 = Release|Any CPU + {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|x86.ActiveCfg = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.ActiveCfg = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.ActiveCfg = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.ActiveCfg = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.ActiveCfg = Release|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.ActiveCfg = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.ActiveCfg = Release|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Debug|x86.ActiveCfg = Debug|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Release|Any CPU.Build.0 = Release|Any CPU + {7C686499-7517-4338-8837-7E8617549D9A}.Release|x86.ActiveCfg = Release|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Debug|x86.ActiveCfg = Debug|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|Any CPU.Build.0 = Release|Any CPU + {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9}.Release|x86.ActiveCfg = Release|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Debug|x86.ActiveCfg = Debug|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|Any CPU.Build.0 = Release|Any CPU + {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4}.Release|x86.ActiveCfg = Release|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Debug|x86.ActiveCfg = Debug|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|Any CPU.Build.0 = Release|Any CPU + {4CBA81F9-F0C2-4242-8D72-204597285042}.Release|x86.ActiveCfg = Release|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Debug|x86.ActiveCfg = Debug|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.Build.0 = Release|Any CPU + {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|x86.ActiveCfg = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.ActiveCfg = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.ActiveCfg = Release|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|x86.ActiveCfg = Debug|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|Any CPU.Build.0 = Release|Any CPU + {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Release|x86.ActiveCfg = Release|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|Any CPU.Build.0 = Debug|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Debug|x86.ActiveCfg = Debug|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|Any CPU.ActiveCfg = Release|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|Any CPU.Build.0 = Release|Any CPU + {253FFB14-AB8E-49AB-A005-A42428C3F452}.Release|x86.ActiveCfg = Release|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Debug|x86.ActiveCfg = Debug|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|Any CPU.Build.0 = Release|Any CPU + {9FDD649E-0502-4FED-9AC1-AA0346394375}.Release|x86.ActiveCfg = Release|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|x86.ActiveCfg = Debug|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.Build.0 = Release|Any CPU + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|x86.ActiveCfg = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.ActiveCfg = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.ActiveCfg = Release|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|x86.ActiveCfg = Debug|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|Any CPU.Build.0 = Release|Any CPU + {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Release|x86.ActiveCfg = Release|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Debug|x86.ActiveCfg = Debug|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|Any CPU.Build.0 = Release|Any CPU + {0F6576B4-C88E-4E79-B7E9-9480498C5A32}.Release|x86.ActiveCfg = Release|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Debug|x86.ActiveCfg = Debug|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|Any CPU.Build.0 = Release|Any CPU + {C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}.Release|x86.ActiveCfg = Release|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|Any CPU.Build.0 = Debug|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Debug|x86.ActiveCfg = Debug|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|Any CPU.ActiveCfg = Release|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|Any CPU.Build.0 = Release|Any CPU + {54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}.Release|x86.ActiveCfg = Release|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|x86.ActiveCfg = Debug|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|Any CPU.Build.0 = Release|Any CPU + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|x86.ActiveCfg = Release|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Debug|x86.ActiveCfg = Debug|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|Any CPU.Build.0 = Release|Any CPU + {E6A68244-8C31-44A9-9F85-B4A102B5F209}.Release|x86.ActiveCfg = Release|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Debug|x86.ActiveCfg = Debug|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|Any CPU.Build.0 = Release|Any CPU + {0C291BE9-5D15-4097-9119-4FFE19C23113}.Release|x86.ActiveCfg = Release|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Debug|x86.ActiveCfg = Debug|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|Any CPU.Build.0 = Release|Any CPU + {1D4B9ABE-F37D-4C38-9BC5-EDD43F271F4E}.Release|x86.ActiveCfg = Release|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Debug|x86.ActiveCfg = Debug|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|Any CPU.Build.0 = Release|Any CPU + {8ADDE1CB-2D23-4AB1-88B1-A241C60C16BA}.Release|x86.ActiveCfg = Release|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Debug|x86.ActiveCfg = Debug|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|Any CPU.Build.0 = Release|Any CPU + {DC79E2EC-7D1B-4359-A285-38AC8154166B}.Release|x86.ActiveCfg = Release|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Debug|x86.ActiveCfg = Debug|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Release|Any CPU.Build.0 = Release|Any CPU + {A4023992-CCD6-461E-8E14-219A496734C5}.Release|x86.ActiveCfg = Release|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Debug|x86.ActiveCfg = Debug|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|Any CPU.Build.0 = Release|Any CPU + {5A9954F8-344C-489C-B8DA-8E8927271A02}.Release|x86.ActiveCfg = Release|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Debug|x86.ActiveCfg = Debug|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|Any CPU.Build.0 = Release|Any CPU + {CCDBA239-8E8E-4F5F-A098-7132EED5F160}.Release|x86.ActiveCfg = Release|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Debug|x86.ActiveCfg = Debug|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|Any CPU.Build.0 = Release|Any CPU + {A50080F4-53D1-41CC-9C5F-500AFDDE9E8B}.Release|x86.ActiveCfg = Release|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|Any CPU.Build.0 = Debug|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Debug|x86.ActiveCfg = Debug|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|Any CPU.ActiveCfg = Release|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|Any CPU.Build.0 = Release|Any CPU + {37A555DF-7012-4B99-8A47-1C922A361E52}.Release|x86.ActiveCfg = Release|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|Any CPU.Build.0 = Debug|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Debug|x86.ActiveCfg = Debug|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|Any CPU.ActiveCfg = Release|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|Any CPU.Build.0 = Release|Any CPU + {732CDF64-D047-4D3C-91DA-E2FF27D84179}.Release|x86.ActiveCfg = Release|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Debug|x86.ActiveCfg = Debug|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|Any CPU.Build.0 = Release|Any CPU + {E146C2D8-6842-46C5-B2A9-AFA9D6F1A3BB}.Release|x86.ActiveCfg = Release|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|x86.ActiveCfg = Debug|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|Any CPU.Build.0 = Release|Any CPU + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|x86.ActiveCfg = Release|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|x86.ActiveCfg = Debug|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|Any CPU.Build.0 = Release|Any CPU + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|x86.ActiveCfg = Release|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Debug|x86.ActiveCfg = Debug|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.Build.0 = Release|Any CPU + {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|x86.ActiveCfg = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.ActiveCfg = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.ActiveCfg = Release|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|x86.ActiveCfg = Debug|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|Any CPU.Build.0 = Release|Any CPU + {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Release|x86.ActiveCfg = Release|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Debug|x86.ActiveCfg = Debug|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|Any CPU.Build.0 = Release|Any CPU + {B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}.Release|x86.ActiveCfg = Release|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Debug|x86.ActiveCfg = Debug|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|Any CPU.Build.0 = Release|Any CPU + {EE8F2C22-8BD3-4832-85F0-E6F67ED3AADB}.Release|x86.ActiveCfg = Release|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Debug|x86.ActiveCfg = Debug|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|Any CPU.Build.0 = Release|Any CPU + {3778B6E7-F5A4-40A4-90C4-CD19EBC6B039}.Release|x86.ActiveCfg = Release|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Debug|x86.ActiveCfg = Debug|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|Any CPU.Build.0 = Release|Any CPU + {ABA2DAF3-B4CF-42BF-8686-DD662B0D6406}.Release|x86.ActiveCfg = Release|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Debug|x86.ActiveCfg = Debug|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Release|Any CPU.Build.0 = Release|Any CPU + {A2702ACF-C59E-4564-8A4A-5CBFF21C1E66}.Release|x86.ActiveCfg = Release|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Debug|x86.ActiveCfg = Debug|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Release|Any CPU.Build.0 = Release|Any CPU + {2F296C09-627B-4D6E-A041-1601A8C030C7}.Release|x86.ActiveCfg = Release|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Debug|x86.ActiveCfg = Debug|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Release|Any CPU.Build.0 = Release|Any CPU + {905131F8-F8AC-4A65-A722-37783902D7B8}.Release|x86.ActiveCfg = Release|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Debug|x86.ActiveCfg = Debug|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Release|Any CPU.Build.0 = Release|Any CPU + {F8CC05AA-6306-459E-BD32-40C02489EFEC}.Release|x86.ActiveCfg = Release|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Debug|x86.ActiveCfg = Debug|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Release|Any CPU.Build.0 = Release|Any CPU + {C7BF555E-638F-4E1B-9D5A-D2D226C77676}.Release|x86.ActiveCfg = Release|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Debug|x86.ActiveCfg = Debug|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Release|Any CPU.Build.0 = Release|Any CPU + {1DD4B652-DBF4-47E2-B46C-C810EEE3B7C3}.Release|x86.ActiveCfg = Release|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Debug|x86.ActiveCfg = Debug|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Release|Any CPU.Build.0 = Release|Any CPU + {C9DB6BFE-4AA7-43D6-8B5D-3B27A2FA4B1A}.Release|x86.ActiveCfg = Release|Any CPU + {66F37FF9-0398-4954-812D-065C2D153746}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {66F37FF9-0398-4954-812D-065C2D153746}.Debug|Any CPU.Build.0 = Debug|Any CPU + {66F37FF9-0398-4954-812D-065C2D153746}.Debug|x86.ActiveCfg = Debug|x86 + {66F37FF9-0398-4954-812D-065C2D153746}.Debug|x86.Build.0 = Debug|x86 + {66F37FF9-0398-4954-812D-065C2D153746}.Release|Any CPU.ActiveCfg = Release|Any CPU + {66F37FF9-0398-4954-812D-065C2D153746}.Release|Any CPU.Build.0 = Release|Any CPU + {66F37FF9-0398-4954-812D-065C2D153746}.Release|x86.ActiveCfg = Release|x86 + {66F37FF9-0398-4954-812D-065C2D153746}.Release|x86.Build.0 = Release|x86 + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Debug|x86.ActiveCfg = Debug|Any CPU + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Release|Any CPU.Build.0 = Release|Any CPU + {FCE5308F-C451-4113-B7F2-BB6212EA7FAD}.Release|x86.ActiveCfg = Release|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Debug|x86.ActiveCfg = Debug|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Release|Any CPU.Build.0 = Release|Any CPU + {EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}.Release|x86.ActiveCfg = Release|Any CPU + {48839540-780F-4323-8F50-68E2A2385502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {48839540-780F-4323-8F50-68E2A2385502}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4... [truncated message content] |
From: <che...@us...> - 2009-06-07 14:45:02
|
Revision: 2900 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2900&view=rev Author: chef_koch Date: 2009-06-07 14:44:49 +0000 (Sun, 07 Jun 2009) Log Message: ----------- Part 2: refactored irss dir structure - input service is able to be build without mpplugins - mp plugins have their own solution Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Added Paths: ----------- trunk/plugins/IR Server Suite/Build/BUILD_InputService_Debug.bat trunk/plugins/IR Server Suite/Build/BUILD_InputService_Release.bat trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Debug.bat trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Release.bat trunk/plugins/IR Server Suite/Build/BuildScript.bat trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/ Removed Paths: ------------- trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat trunk/plugins/IR Server Suite/IR Server Suite/Commands/MediaPortalCommands/ trunk/plugins/IR Server Suite/IR Server Suite/Common/MPUtils/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/ Added: trunk/plugins/IR Server Suite/Build/BUILD_InputService_Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BUILD_InputService_Debug.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/BUILD_InputService_Debug.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,3 @@ +@ECHO OFF + +call BuildScript.bat Debug \ No newline at end of file Added: trunk/plugins/IR Server Suite/Build/BUILD_InputService_Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BUILD_InputService_Release.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/BUILD_InputService_Release.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,3 @@ +@ECHO OFF + +call BuildScript.bat \ No newline at end of file Added: trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Debug.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Debug.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,3 @@ +@ECHO OFF + +call BuildScript.bat Debug MPplugins \ No newline at end of file Added: trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Release.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/BUILD_InputService_WithMPplugins_Release.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,3 @@ +@ECHO OFF + +call BuildScript.bat Release MPplugins \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat 2009-06-07 14:35:15 UTC (rev 2899) +++ trunk/plugins/IR Server Suite/Build/Build Deploy Debug.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -1,3 +0,0 @@ -@ECHO OFF - -call "Build Deploy Release.bat" Debug \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat 2009-06-07 14:35:15 UTC (rev 2899) +++ trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -1,53 +0,0 @@ -@ECHO OFF - - -REM detect if BUILD_TYPE should be release or debug -if not %1!==Debug! goto RELEASE -:DEBUG -set BUILD_TYPE=Debug -goto START -:RELEASE -set BUILD_TYPE=Release -goto START - - -:START -REM Select program path based on current machine environment -set progpath=%ProgramFiles% -if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% - - -REM set logfile where the infos are written to, and clear that file -set LOG=build_%BUILD_TYPE%.log -echo. > %LOG% - - -echo. -echo -= IR Server Suite =- -echo -= build mode: %BUILD_TYPE% =- -echo. - -echo. -echo Writing SVN revision assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% - -echo. -echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% -rem "%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "IR Server Suite.sln" >> %LOG% - -echo. -echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% - -echo. -echo Reading the svn revision... -echo $WCREV$>template.txt -"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% -SET /p version=<version.txt >> %LOG% -DEL template.txt >> %LOG% -DEL version.txt >> %LOG% - -echo. -echo Building Installer... -"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% Copied: trunk/plugins/IR Server Suite/Build/BuildScript.bat (from rev 2899, trunk/plugins/IR Server Suite/Build/Build Deploy Release.bat) =================================================================== --- trunk/plugins/IR Server Suite/Build/BuildScript.bat (rev 0) +++ trunk/plugins/IR Server Suite/Build/BuildScript.bat 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,53 @@ +@ECHO OFF + + +REM detect if BUILD_TYPE should be release or debug +if not %1!==Debug! goto RELEASE +:DEBUG +set BUILD_TYPE=Debug +goto START +:RELEASE +set BUILD_TYPE=Release +goto START + + +:START +REM Select program path based on current machine environment +set progpath=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% + + +REM set logfile where the infos are written to, and clear that file +set LOG=build_%BUILD_TYPE%.log +echo. > %LOG% + + +echo. +echo -= IR Server Suite =- +echo -= build mode: %BUILD_TYPE% =- +echo. + +echo. +echo Writing SVN revision assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% + +echo. +echo Building IR Server Suite... +"%progpath%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% +rem "%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "IR Server Suite.sln" >> %LOG% + +echo. +echo Reverting assemblies... +setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% + +echo. +echo Reading the svn revision... +echo $WCREV$>template.txt +"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% +SET /p version=<version.txt >> %LOG% +DEL template.txt >> %LOG% +DEL version.txt >> %LOG% + +echo. +echo Building Installer... +"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/MPUtils/MPUtils.csproj 2009-06-07 14:35:15 UTC (rev 2899) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</ProjectGuid> <OutputType>Library</OutputType> @@ -45,13 +45,13 @@ </PropertyGroup> <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> <SpecificVersion>False</SpecificVersion> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -61,7 +61,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/MediaPortalCommands/MediaPortalCommands.csproj 2009-06-07 14:35:15 UTC (rev 2899) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{966281F9-3898-4CB7-9940-99D49C21F170}</ProjectGuid> <OutputType>Library</OutputType> @@ -41,16 +41,22 @@ <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <ItemGroup> - <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> + <Reference Include="CommandBase, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> - <Private>False</Private> + <HintPath>..\..\..\IR Server Suite\Commands\Command\bin\Release\CommandBase.dll</HintPath> </Reference> - <Reference Include="Dialogs, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> + <Reference Include="Core, Version=1.0.2.20620, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\Windows\Dialogs.dll</HintPath> - <Private>False</Private> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> </Reference> + <Reference Include="Dialogs, Version=1.0.2.20629, Culture=neutral, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> + </Reference> + <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> @@ -58,9 +64,13 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> + <Reference Include="VariableList, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Commands\VariableList\bin\Release\VariableList.dll</HintPath> + </Reference> </ItemGroup> <ItemGroup> <Compile Include="CommandGotoScreen.cs" /> @@ -101,23 +111,6 @@ <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\..\Common\IrssUtils\IrssUtils.csproj"> - <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> - <Name>IrssUtils</Name> - <Private>False</Private> - </ProjectReference> - <ProjectReference Include="..\Command\Command.csproj"> - <Project>{21E04B17-D850-43E7-AAD3-876C0E062BDB}</Project> - <Name>Command</Name> - <Private>False</Private> - </ProjectReference> - <ProjectReference Include="..\VariableList\VariableList.csproj"> - <Project>{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}</Project> - <Name>VariableList</Name> - <Private>False</Private> - </ProjectReference> - </ItemGroup> - <ItemGroup> <EmbeddedResource Include="Forms\EditSendMessage.resx"> <DependentUpon>EditSendMessage.cs</DependentUpon> <SubType>Designer</SubType> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}</ProjectGuid> <OutputType>Library</OutputType> @@ -77,21 +77,29 @@ <ItemGroup> <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> <Private>False</Private> </Reference> + <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> + </Reference> + <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> @@ -100,14 +108,6 @@ </PostBuildEvent> </PropertyGroup> <ItemGroup> - <ProjectReference Include="..\..\Common\IrssComms\IrssComms.csproj"> - <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> - <Name>IrssComms</Name> - </ProjectReference> - <ProjectReference Include="..\..\Common\irssUtils\IrssUtils.csproj"> - <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> - <Name>IrssUtils</Name> - </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -83,26 +83,33 @@ <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Databases, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Databases.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Databases\bin\Release\Databases.dll</HintPath> <Private>False</Private> </Reference> - <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> + <Reference Include="Dialogs, Version=1.0.2.20629, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.dll</HintPath> - <Private>False</Private> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> </Reference> + <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> + </Reference> + <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> + </Reference> <Reference Include="Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> </Reference> <Reference Include="RemotePlugins, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\RemotePlugins.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\RemotePlugins\bin\Release\RemotePlugins.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="System" /> @@ -111,7 +118,7 @@ <Reference Include="System.Xml" /> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> @@ -138,14 +145,6 @@ </PostBuildEvent> </PropertyGroup> <ItemGroup> - <ProjectReference Include="..\..\Common\IrssComms\IrssComms.csproj"> - <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> - <Name>IrssComms</Name> - </ProjectReference> - <ProjectReference Include="..\..\Common\irssUtils\IrssUtils.csproj"> - <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> - <Name>IrssUtils</Name> - </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.30729</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}</ProjectGuid> <OutputType>Library</OutputType> @@ -83,35 +83,43 @@ <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Databases, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Databases.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Databases\bin\Release\Databases.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\plugins\windows\Dialogs.DLL</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> <Private>False</Private> </Reference> + <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> + </Reference> + <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine2\Core\TvCapture\bin\Release\TVCapture.DLL</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\TVCapture\bin\Release\TVCapture.dll</HintPath> <Private>False</Private> </Reference> - <Reference Include="TVCapture-Databases, Version=1.0.2.22074, Culture=neutral, processorArchitecture=x86"> + <Reference Include="TVCapture-Databases, Version=1.0.2.35455, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\Databases\bin\Release\TVCapture-Databases.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\Databases\bin\Release\TVCapture-Databases.dll</HintPath> </Reference> <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Utils.DLL</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> @@ -138,14 +146,6 @@ </PostBuildEvent> </PropertyGroup> <ItemGroup> - <ProjectReference Include="..\..\Common\IrssComms\IrssComms.csproj"> - <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> - <Name>IrssComms</Name> - </ProjectReference> - <ProjectReference Include="..\..\Common\irssUtils\IrssUtils.csproj"> - <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> - <Name>IrssUtils</Name> - </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Added: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln (rev 0) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2009-06-07 14:44:49 UTC (rev 2900) @@ -0,0 +1,64 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MP plugins", "MP plugins", "{79836E52-FF93-4FD0-818B-03FAD48D426E}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TVServer plugins", "TVServer plugins", "{2F3BA832-EA15-492D-AC8E-400CF3FEA715}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{A49450EE-A82E-4BDA-A7B2-C0609EECC7CE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "TVServer plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MP plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MP plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MP plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Common\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25} = {79836E52-FF93-4FD0-818B-03FAD48D426E} + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479} = {79836E52-FF93-4FD0-818B-03FAD48D426E} + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90} = {79836E52-FF93-4FD0-818B-03FAD48D426E} + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50} = {2F3BA832-EA15-492D-AC8E-400CF3FEA715} + {966281F9-3898-4CB7-9940-99D49C21F170} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} + EndGlobalSection +EndGlobal Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-06-07 12:25:41 UTC (rev 2898) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-06-07 14:44:49 UTC (rev 2900) @@ -1,7 +1,7 @@ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <ProjectType>Local</ProjectType> - <ProductVersion>9.0.30729</ProductVersion> + <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}</ProjectGuid> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> @@ -81,22 +81,30 @@ <ItemGroup> <Reference Include="Gentle.Common, Version=1.2.9.1285, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\Gentle.Common.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\Gentle.Common.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Gentle.Framework, Version=1.2.9.1286, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\Gentle.Framework.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\Gentle.Framework.dll</HintPath> <Private>False</Private> </Reference> + <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> + </Reference> + <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> + </Reference> <Reference Include="PluginBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\bin\Release\PluginBase.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\bin\Release\PluginBase.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="SetupControls, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\bin\Release\SetupControls.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\SetupControls\bin\Release\SetupControls.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="System"> @@ -111,22 +119,22 @@ <Reference Include="System.Xml" /> <Reference Include="TvBusinessLayer, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\bin\Release\TvBusinessLayer.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\bin\Release\TvBusinessLayer.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TvControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\bin\Release\TvControl.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TvControl\bin\Release\TvControl.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TVDatabase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVLibrary\bin\Release\TVDatabase.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\TVDatabase.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="TvLibrary.Interfaces, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVLibrary\bin\Release\TvLibrary.Interfaces.dll</HintPath> + <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\bin\Release\TvLibrary.Interfaces.dll</HintPath> <Private>False</Private> </Reference> </ItemGroup> @@ -181,14 +189,6 @@ </EmbeddedResource> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\..\Common\IrssComms\IrssComms.csproj"> - <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> - <Name>IrssComms</Name> - </ProjectReference> - <ProjectReference Include="..\..\Common\irssUtils\IrssUtils.csproj"> - <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> - <Name>IrssUtils</Name> - </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-07 14:49:36
|
Revision: 2901 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2901&view=rev Author: chef_koch Date: 2009-06-07 14:49:24 +0000 (Sun, 07 Jun 2009) Log Message: ----------- Modified Paths: -------------- trunk/plugins/IR Server Suite/Build/BuildScript.bat trunk/plugins/IR Server Suite/setup/setup.nsi Modified: trunk/plugins/IR Server Suite/Build/BuildScript.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BuildScript.bat 2009-06-07 14:44:49 UTC (rev 2900) +++ trunk/plugins/IR Server Suite/Build/BuildScript.bat 2009-06-07 14:49:24 UTC (rev 2901) @@ -13,8 +13,8 @@ :START REM Select program path based on current machine environment -set progpath=%ProgramFiles% -if not "%ProgramFiles(x86)%".=="". set progpath=%ProgramFiles(x86)% +set ProgramDir=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set ProgramDir=%ProgramFiles(x86)% REM set logfile where the infos are written to, and clear that file @@ -29,25 +29,48 @@ echo. echo Writing SVN revision assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" >> %LOG% +..\setup\DeployVersionSVN.exe /svn=".." >> %LOG% + + echo. echo Building IR Server Suite... -"%progpath%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "IR Server Suite.sln" >> %LOG% +"%ProgramDir%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.com" /rebuild %BUILD_TYPE% "..\IR Server Suite\IR Server Suite.sln" >> %LOG% rem "%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "IR Server Suite.sln" >> %LOG% + +if not %2!==MPplugins! goto NoMPplugins echo. +echo Building MediaPortal plugins... +"%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=%BUILD_TYPE% "..\MediaPortal Plugins\MediaPortal plugins.sln" >> %LOG% +:NoMPplugins + + + +echo. echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn="%CD%" /revert >> %LOG% +setup\DeployVersionSVN.exe /svn=".." /revert >> %LOG% echo. echo Reading the svn revision... echo $WCREV$>template.txt -"%ProgramFiles%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% +"%ProgramDir%\TortoiseSVN\bin\SubWCRev.exe" "." template.txt version.txt >> %LOG% SET /p version=<version.txt >> %LOG% DEL template.txt >> %LOG% DEL version.txt >> %LOG% + + echo. +if not %2!==MPplugins! goto NoMPplugins + +echo Building Installer with MPplugins... +"%ProgramDir%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% /DMPplugins ..\setup\setup.nsi >> %LOG% +GOTO END + +:NoMPplugins echo Building Installer... -"%progpath%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% setup\setup.nsi >> %LOG% +"%ProgramDir%\NSIS\makensis.exe" /DBUILD_TYPE=%BUILD_TYPE% /DVER_BUILD=%version% ..\setup\setup.nsi >> %LOG% + +:END + Modified: trunk/plugins/IR Server Suite/setup/setup.nsi =================================================================== --- trunk/plugins/IR Server Suite/setup/setup.nsi 2009-06-07 14:44:49 UTC (rev 2900) +++ trunk/plugins/IR Server Suite/setup/setup.nsi 2009-06-07 14:49:24 UTC (rev 2901) @@ -26,7 +26,10 @@ ;!define svn_InstallScripts "${svn_ROOT_IRSS}\setup\CommonNSIS" !define svn_InstallScripts "." +!define svn_IRSS "..\IR Server Suite" +!define svn_MPplugins "..\MediaPortal Plugins" + #--------------------------------------------------------------------------- # DEFINES #--------------------------------------------------------------------------- @@ -69,8 +72,10 @@ # VARIABLES #--------------------------------------------------------------------------- Var DIR_INSTALL +!ifdef MPplugins Var DIR_MEDIAPORTAL Var DIR_TVSERVER +!endif Var PREVIOUS_INSTALLDIR Var PREVIOUS_VERSION @@ -92,8 +97,20 @@ !include Memento.nsh !include WinVer.nsh -!include "include\*" + +!include "include\DumpLog.nsh" +;!include "include\FileAssociation.nsh" +!include "include\IrssSystemRegistry.nsh" +!include "include\LanguageMacros.nsh" +!include "include\LoggingMacros.nsh" +!ifdef MPplugins +!include "include\MediaPortalDirectories.nsh" +!endif +!include "include\MediaPortalMacros.nsh" +!include "include\ProcessMacros.nsh" +!include "include\WinVerEx.nsh" + !include pages\AddRemovePage.nsh !include pages\ServerServiceMode.nsh @@ -143,7 +160,7 @@ # INSTALLER INTERFACE #--------------------------------------------------------------------------- !insertmacro MUI_PAGE_WELCOME -!insertmacro MUI_PAGE_LICENSE "..\Documentation\LICENSE.GPL" +!insertmacro MUI_PAGE_LICENSE "${svn_IRSS}\Documentation\LICENSE.GPL" Page custom PageReinstallMode PageLeaveReinstallMode @@ -207,6 +224,7 @@ ; List all of your components in following manner here. !insertmacro "${MacroName}" "SectionInputService" +!ifdef MPplugins !insertmacro "${MacroName}" "SectionMPCommon" !insertmacro "${MacroName}" "SectionMPControlPlugin" !insertmacro "${MacroName}" "SectionMPBlastZonePlugin" @@ -216,6 +234,7 @@ !insertmacro "${MacroName}" "SectionTV3BlasterPlugin" ; !insertmacro "${MacroName}" "SectionMCEBlaster" +!endif #SectionGroupTools !insertmacro "${MacroName}" "SectionAbstractor" @@ -290,7 +309,7 @@ ; Create app data directories SetOutPath "$DIR_INSTALL" - File "..\Documentation\${PRODUCT_NAME}.chm" + File "${svn_IRSS}\Documentation\${PRODUCT_NAME}.chm" CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" @@ -304,7 +323,7 @@ CreateDirectory "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" SetOutPath "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" SetOverwrite ifnewer - File /r /x .svn "..\Set Top Boxes\*.*" + File /r /x .svn "${svn_IRSS}\Set Top Boxes\*.*" SetOverwrite on @@ -329,60 +348,59 @@ ;ExecWait '"$DIR_INSTALL\Input Service\Input Service.exe" /uninstall' - ${LOG_TEXT} "INFO" "Installing Input Service..." SetOutPath "$DIR_INSTALL\Input Service" - File "..\Input Service\Input Service\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Input Service\Input Service\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing Input Service Configuration..." SetOutPath "$DIR_INSTALL\Input Service Configuration" - File "..\Input Service\Input Service Configuration\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Input Service\Input Service Configuration\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing IR Server..." SetOutPath "$DIR_INSTALL\Input Service" - File "..\Applications\IR Server\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\IR Server\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing IR Server Plugins..." SetOutPath "$DIR_INSTALL\IR Server Plugins" - File "..\IR Server Plugins\Ads Tech PTV-335 Receiver\bin\${Build_Type}\Ads Tech PTV-335 Receiver.*" - File "..\IR Server Plugins\CoolCommand Receiver\bin\${Build_Type}\CoolCommand Receiver.*" - File "..\IR Server Plugins\Custom HID Receiver\bin\${Build_Type}\Custom HID Receiver.*" - File "..\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Direct Input Receiver.*" - File "..\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.DirectInput.dll" - File "..\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.dll" - File "..\IR Server Plugins\FusionRemote Receiver\bin\${Build_Type}\FusionRemote Receiver.*" - File "..\IR Server Plugins\Girder Plugin\bin\${Build_Type}\Girder Plugin.*" - File "..\IR Server Plugins\HCW Receiver\bin\${Build_Type}\HCW Receiver.*" - File "..\IR Server Plugins\IgorPlug Receiver\bin\${Build_Type}\IgorPlug Receiver.*" - ;File "..\IR Server Plugins\Imon Receiver\bin\${Build_Type}\Imon Receiver.*" - File "..\IR Server Plugins\Imon USB Receivers\bin\${Build_Type}\Imon USB Receivers.*" - ;File "..\IR Server Plugins\IR501 Receiver\bin\${Build_Type}\IR501 Receiver.*" - File "..\IR Server Plugins\IR507 Receiver\bin\${Build_Type}\IR507 Receiver.*" - ;File "..\IR Server Plugins\Ira Transceiver\bin\${Build_Type}\Ira Transceiver.*" - File "..\IR Server Plugins\IRMan Receiver\bin\${Build_Type}\IRMan Receiver.*" - File "..\IR Server Plugins\IRTrans Transceiver\bin\${Build_Type}\IRTrans Transceiver.*" - ;File "..\IR Server Plugins\Keyboard Input\bin\${Build_Type}\Keyboard Input.*" - File "..\IR Server Plugins\LiveDrive Receiver\bin\${Build_Type}\LiveDrive Receiver.*" - File "..\IR Server Plugins\MacMini Receiver\bin\${Build_Type}\MacMini Receiver.*" - File "..\IR Server Plugins\Microsoft MCE Transceiver\bin\${Build_Type}\Microsoft MCE Transceiver.*" - File "..\IR Server Plugins\Pinnacle Serial Receiver\bin\${Build_Type}\Pinnacle Serial Receiver.*" - ;File "..\IR Server Plugins\RC102 Receiver\bin\${Build_Type}\RC102 Receiver.*" - File "..\IR Server Plugins\RedEye Blaster\bin\${Build_Type}\RedEye Blaster.*" - File "..\IR Server Plugins\Serial IR Blaster\bin\${Build_Type}\Serial IR Blaster.*" - ;File "..\IR Server Plugins\Speech Receiver\bin\${Build_Type}\Speech Receiver.*" - File "..\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\Technotrend Receiver.*" - File "..\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\ttBdaDrvApi_Dll.dll" - ;File "..\IR Server Plugins\Tira Transceiver\bin\${Build_Type}\Tira Transceiver.*" - File "..\IR Server Plugins\USB-UIRT Transceiver\bin\${Build_Type}\USB-UIRT Transceiver.*" - File "..\IR Server Plugins\Wii Remote Receiver\bin\${Build_Type}\Wii Remote Receiver.*" - File "..\IR Server Plugins\WiimoteLib\bin\${Build_Type}\WiimoteLib.*" - File "..\IR Server Plugins\Windows Message Receiver\bin\${Build_Type}\Windows Message Receiver.*" - File "..\IR Server Plugins\WinLirc Transceiver\bin\${Build_Type}\WinLirc Transceiver.*" - File "..\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\X10 Transceiver.*" - File "..\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\Interop.X10.dll" - File "..\IR Server Plugins\XBCDRC Receiver\bin\${Build_Type}\XBCDRC Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Ads Tech PTV-335 Receiver\bin\${Build_Type}\Ads Tech PTV-335 Receiver.*" + File "${svn_IRSS}\IR Server Plugins\CoolCommand Receiver\bin\${Build_Type}\CoolCommand Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Custom HID Receiver\bin\${Build_Type}\Custom HID Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Direct Input Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.DirectInput.dll" + File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.dll" + File "${svn_IRSS}\IR Server Plugins\FusionRemote Receiver\bin\${Build_Type}\FusionRemote Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Girder Plugin\bin\${Build_Type}\Girder Plugin.*" + File "${svn_IRSS}\IR Server Plugins\HCW Receiver\bin\${Build_Type}\HCW Receiver.*" + File "${svn_IRSS}\IR Server Plugins\IgorPlug Receiver\bin\${Build_Type}\IgorPlug Receiver.*" + ;File "${svn_IRSS}\IR Server Plugins\Imon Receiver\bin\${Build_Type}\Imon Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Imon USB Receivers\bin\${Build_Type}\Imon USB Receivers.*" + ;File "${svn_IRSS}\IR Server Plugins\IR501 Receiver\bin\${Build_Type}\IR501 Receiver.*" + File "${svn_IRSS}\IR Server Plugins\IR507 Receiver\bin\${Build_Type}\IR507 Receiver.*" + ;File "${svn_IRSS}\IR Server Plugins\Ira Transceiver\bin\${Build_Type}\Ira Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\IRMan Receiver\bin\${Build_Type}\IRMan Receiver.*" + File "${svn_IRSS}\IR Server Plugins\IRTrans Transceiver\bin\${Build_Type}\IRTrans Transceiver.*" + ;File "${svn_IRSS}\IR Server Plugins\Keyboard Input\bin\${Build_Type}\Keyboard Input.*" + File "${svn_IRSS}\IR Server Plugins\LiveDrive Receiver\bin\${Build_Type}\LiveDrive Receiver.*" + File "${svn_IRSS}\IR Server Plugins\MacMini Receiver\bin\${Build_Type}\MacMini Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Microsoft MCE Transceiver\bin\${Build_Type}\Microsoft MCE Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\Pinnacle Serial Receiver\bin\${Build_Type}\Pinnacle Serial Receiver.*" + ;File "${svn_IRSS}\IR Server Plugins\RC102 Receiver\bin\${Build_Type}\RC102 Receiver.*" + File "${svn_IRSS}\IR Server Plugins\RedEye Blaster\bin\${Build_Type}\RedEye Blaster.*" + File "${svn_IRSS}\IR Server Plugins\Serial IR Blaster\bin\${Build_Type}\Serial IR Blaster.*" + ;File "${svn_IRSS}\IR Server Plugins\Speech Receiver\bin\${Build_Type}\Speech Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\Technotrend Receiver.*" + File "${svn_IRSS}\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\ttBdaDrvApi_Dll.dll" + ;File "${svn_IRSS}\IR Server Plugins\Tira Transceiver\bin\${Build_Type}\Tira Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\USB-UIRT Transceiver\bin\${Build_Type}\USB-UIRT Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\Wii Remote Receiver\bin\${Build_Type}\Wii Remote Receiver.*" + File "${svn_IRSS}\IR Server Plugins\WiimoteLib\bin\${Build_Type}\WiimoteLib.*" + File "${svn_IRSS}\IR Server Plugins\Windows Message Receiver\bin\${Build_Type}\Windows Message Receiver.*" + File "${svn_IRSS}\IR Server Plugins\WinLirc Transceiver\bin\${Build_Type}\WinLirc Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\X10 Transceiver.*" + File "${svn_IRSS}\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\Interop.X10.dll" + File "${svn_IRSS}\IR Server Plugins\XBCDRC Receiver\bin\${Build_Type}\XBCDRC Receiver.*" ; Create App Data Folder for IR Server configuration files CreateDirectory "$APPDATA\${PRODUCT_NAME}\Input Service" @@ -390,8 +408,8 @@ ; Copy Abstract Remote maps SetOutPath "$APPDATA\${PRODUCT_NAME}\Input Service\Abstract Remote Maps" SetOverwrite ifnewer - File /r /x .svn "..\Input Service\Input Service\Abstract Remote Maps\*.*" - File "..\Input Service\Input Service\RemoteTable.xsd" + File /r /x .svn "${svn_IRSS}\Input Service\Input Service\Abstract Remote Maps\*.*" + File "${svn_IRSS}\Input Service\Input Service\RemoteTable.xsd" SetOverwrite on ; Create start menu shortcut @@ -430,6 +448,8 @@ ;====================================== +!ifdef MPplugins + SectionGroup "MediaPortal plugins" SectionGroupMP Section "-commonMP" SectionMPCommon @@ -439,15 +459,15 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "..\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "..\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "..\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" ; Write plugin dll SetOutPath "$MPdir.Plugins\Windows" - File "..\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "..\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "..\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" SectionEnd !macro Remove_${SectionMPCommon} ${LOG_TEXT} "INFO" "Removing common files for MediaPortal plugins..." @@ -470,17 +490,17 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "..\MediaPortal Plugins\MP Control Plugin\bin\${Build_Type}\MPControlPlugin.*" + File "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\bin\${Build_Type}\MPControlPlugin.*" ; Write input mapping SetOutPath "$MPdir.CustomInputDefault" - File "..\MediaPortal Plugins\MP Control Plugin\InputMapping\MPControlPlugin.xml" + File "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\InputMapping\MPControlPlugin.xml" ; Write app data CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" SetOverwrite ifnewer - File /r /x .svn "..\MediaPortal Plugins\MP Control Plugin\AppData\*.*" + File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\AppData\*.*" SetOverwrite on ; Create Macro folder @@ -503,21 +523,21 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Windows" - File "..\MediaPortal Plugins\MP Blast Zone Plugin\bin\${Build_Type}\MPBlastZonePlugin.*" + File "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\bin\${Build_Type}\MPBlastZonePlugin.*" ; Write app data CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" SetOverwrite off - File "..\MediaPortal Plugins\MP Blast Zone Plugin\AppData\Menu.xml" + File "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\AppData\Menu.xml" SetOverwrite on ; Write skin files SetOutPath "$MPdir.Skin\Blue3" - File /r /x .svn "..\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" SetOutPath "$MPdir.Skin\Blue3wide" - File /r /x .svn "..\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" ; Create Macro folder CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin\Macro" @@ -536,7 +556,7 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "..\MediaPortal Plugins\TV2 Blaster Plugin\bin\${Build_Type}\TV2BlasterPlugin.*" + File "${svn_MPplugins}\MediaPortal Plugins\TV2 Blaster Plugin\bin\${Build_Type}\TV2BlasterPlugin.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV2 Blaster Plugin" @@ -587,9 +607,9 @@ ; Write plugin dll SetOutPath "$DIR_TVSERVER\Plugins" - File "..\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "..\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "..\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" SectionEnd !macro Remove_${SectionTV3Common} ${If} ${FileExists} "$DIR_TVSERVER\Plugins\MPUtils.*" @@ -614,7 +634,7 @@ ; Write plugin dll SetOutPath "$DIR_TVSERVER\Plugins" - File "..\MediaPortal Plugins\TV3 Blaster Plugin\bin\${Build_Type}\TV3BlasterPlugin.*" + File "${svn_MPplugins}\MediaPortal Plugins\TV3 Blaster Plugin\bin\${Build_Type}\TV3BlasterPlugin.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV3 Blaster Plugin" @@ -650,7 +670,7 @@ ; Installing Translator CreateDirectory "$DIR_INSTALL\Media Center Blaster" SetOutPath "$DIR_INSTALL\Media Center Blaster" - File "..\Applications\Media Center Blaster\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Media Center Blaster\bin\${Build_Type}\*.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Media Center Blaster" @@ -681,6 +701,8 @@ ;====================================== */ +!endif + SectionGroup "Tools" SectionGroupTools ${MementoSection} "Abstractor" SectionAbstractor @@ -689,7 +711,7 @@ ; install files SetOutPath "$DIR_INSTALL\Abstractor" - File "..\Applications\Abstractor\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Abstractor\bin\${Build_Type}\*.*" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Abstractor.lnk" "$DIR_INSTALL\Abstractor\Abstractor.exe" "" "$DIR_INSTALL\Abstractor\Abstractor.exe" 0 @@ -714,7 +736,7 @@ ; install files SetOutPath "$DIR_INSTALL\Debug Client" - File "..\Applications\Debug Client\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Debug Client\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Debug Client" @@ -742,7 +764,7 @@ ; install files SetOutPath "$DIR_INSTALL\IR File Tool" - File "..\Applications\IR File Tool\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\IR File Tool\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\IR File Tool" @@ -770,7 +792,7 @@ ; install files SetOutPath "$DIR_INSTALL\Keyboard Input Relay" - File "..\Applications\Keyboard Input Relay\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Keyboard Input Relay\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Keyboard Input Relay" @@ -801,7 +823,7 @@ ; install files SetOutPath "$DIR_INSTALL\Translator" - File "..\Applications\Translator\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Translator\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Translator" @@ -810,7 +832,7 @@ ; Copy in default settings files SetOutPath "$APPDATA\${PRODUCT_NAME}\Translator\Default Settings" - File "..\Applications\Translator\Default Settings\*.xml" + File "${svn_IRSS}\Applications\Translator\Default Settings\*.xml" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Translator.lnk" "$DIR_INSTALL\Translator\Translator.exe" "" "$DIR_INSTALL\Translator\Translator.exe" 0 @@ -838,7 +860,7 @@ ; install files SetOutPath "$DIR_INSTALL\Tray Launcher" - File "..\Applications\Tray Launcher\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Tray Launcher\bin\${Build_Type}\*.*" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Tray Launcher.lnk" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" "" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" 0 @@ -868,19 +890,19 @@ ; Installing Virtual Remote and Web Remote SetOutPath "$DIR_INSTALL\Virtual Remote" - File "..\Applications\Virtual Remote\bin\${Build_Type}\*.*" - File "..\Applications\Web Remote\bin\${Build_Type}\WebRemote.*" - File "..\Applications\Virtual Remote Skin Editor\bin\${Build_Type}\VirtualRemoteSkinEditor.*" + File "${svn_IRSS}\Applications\Virtual Remote\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Web Remote\bin\${Build_Type}\WebRemote.*" + File "${svn_IRSS}\Applications\Virtual Remote Skin Editor\bin\${Build_Type}\VirtualRemoteSkinEditor.*" ; Installing skins SetOutPath "$DIR_INSTALL\Virtual Remote\Skins" - File "..\Applications\Virtual Remote\Skins\*.*" + File "${svn_IRSS}\Applications\Virtual Remote\Skins\*.*" ; Installing Virtual Remote for Smart Devices SetOutPath "$DIR_INSTALL\Virtual Remote\Smart Devices" - File "..\Applications\Virtual Remote (PocketPC2003) Installer\${Build_Type}\*.cab" - File "..\Applications\Virtual Remote (Smartphone2003) Installer\${Build_Type}\*.cab" - File "..\Applications\Virtual Remote (WinCE5) Installer\${Build_Type}\*.cab" + File "${svn_IRSS}\Applications\Virtual Remote (PocketPC2003) Installer\${Build_Type}\*.cab" + File "${svn_IRSS}\Applications\Virtual Remote (Smartphone2003) Installer\${Build_Type}\*.cab" + File "${svn_IRSS}\Applications\Virtual Remote (WinCE5) Installer\${Build_Type}\*.cab" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Virtual Remote" @@ -919,8 +941,8 @@ ; install files SetOutPath "$DIR_INSTALL\IR Blast" - File "..\Applications\IR Blast (No Window)\bin\${Build_Type}\*.*" - File "..\Applications\IR Blast\bin\${Build_Type}\IRBlast.exe" + File "${svn_IRSS}\Applications\IR Blast (No Window)\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\IR Blast\bin\${Build_Type}\IRBlast.exe" ${MementoSectionEnd} !macro Remove_${SectionIRBlast} @@ -937,7 +959,7 @@ ; install files SetOutPath "$DIR_INSTALL\Dbox Tuner" - File "..\Applications\Dbox Tuner\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\Dbox Tuner\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Dbox Tuner" @@ -957,7 +979,7 @@ ; install files SetOutPath "$DIR_INSTALL\HCW PVR Tuner" - File "..\Applications\HCW PVR Tuner\bin\${Build_Type}\*.*" + File "${svn_IRSS}\Applications\HCW PVR Tuner\bin\${Build_Type}\*.*" ${MementoSectionEnd} !macro Remove_${SectionHcwPvrTuner} @@ -984,8 +1006,10 @@ ;writes component status to registry ${MementoSectionSave} +!ifdef MPplugins ; start tvservice, if it was closed before !insertmacro StartTVService +!endif ; Use the all users context SetShellVarContext all @@ -1008,8 +1032,10 @@ ; Write the installation paths into the registry WriteRegStr HKLM "Software\${PRODUCT_NAME}" "Install_Dir" "$DIR_INSTALL" +!ifdef MPplugins WriteRegStr HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" "$DIR_MEDIAPORTAL" WriteRegStr HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" "$DIR_TVSERVER" +!endif ; Write the product version into the registry WriteRegDWORD HKLM "${REG_UNINSTALL}" "VersionMajor" "${VER_MAJOR}" @@ -1047,8 +1073,10 @@ ; First removes all optional components !insertmacro SectionList "RemoveSection" +!ifdef MPplugins ; start tvservice, if it was closed before !insertmacro StartTVService +!endif ; do not remove anything in appdata ;DetailPrint "Removing Set Top Box presets ..." @@ -1076,6 +1104,7 @@ #--------------------------------------------------------------------------- # SOME MACROS AND FUNCTIONS #--------------------------------------------------------------------------- +!ifdef MPplugins !macro GetMediaPortalPaths ${If} ${RunningX64} @@ -1098,6 +1127,7 @@ ${Endif} !macroend +!endif Function ReadPreviousSettings ${If} ${RunningX64} @@ -1110,9 +1140,11 @@ ; read previous used directories ReadRegStr $PREVIOUS_INSTALLDIR HKLM "Software\${PRODUCT_NAME}" "Install_Dir" +!ifdef MPplugins #ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" #ReadRegStr $DIR_TVSERVER HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" !insertmacro GetMediaPortalPaths ; if not installed, path == "" +!endif ; read previous settings ReadRegStr $PREVIOUS_ServerServiceMode HKLM "${REG_UNINSTALL}" "ServerServiceMode" @@ -1138,6 +1170,7 @@ ; reset previous component selection from registry ${MementoSectionRestore} +!ifdef MPplugins ; set sections, according to possible selections ${If} "$DIR_MEDIAPORTAL" != "" !insertmacro EnableSection "${SectionMPControlPlugin}" "MP Control Plugin" @@ -1158,6 +1191,7 @@ !insertmacro DisableSection "${SectionTV3BlasterPlugin}" "TV Server Blaster Plugin" " " !insertmacro DisableSection "${SectionGroupTV3}" "TV Server plugins" " ($(TEXT_TVSERVER_NOT_INSTALLED))" ${Endif} +!endif ; update component selection Call .onSelChange @@ -1200,6 +1234,7 @@ Function .onSelChange +!ifdef MPplugins ; disable/remove common files for MediaPortal plugins if all MediaPortal plugins are unselected ${IfNot} ${SectionIsSelected} ${SectionMPControlPlugin} ${AndIfNot} ${SectionIsSelected} ${SectionMPBlastZonePlugin} @@ -1215,6 +1250,7 @@ ${Else} !insertmacro SelectSection ${SectionTV3Common} ${EndIf} +!endif FunctionEnd @@ -1300,9 +1336,11 @@ Function un.onInit ReadRegStr $PREVIOUS_INSTALLDIR HKLM "Software\${PRODUCT_NAME}" "Install_Dir" +!ifdef MPplugins ReadRegStr $DIR_MEDIAPORTAL HKLM "Software\${PRODUCT_NAME}" "MediaPortal_Dir" ReadRegStr $DIR_TVSERVER HKLM "Software\${PRODUCT_NAME}" "TVServer_Dir" ${un.ReadMediaPortalDirs} $DIR_MEDIAPORTAL +!endif ${un.InitCommandlineParameter} ${un.ReadCommandlineParameter} "frominstall" @@ -1342,6 +1380,8 @@ #--------------------------------------------------------------------------- !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${SectionInputService} "$(DESC_SectionInputService)" + +!ifdef MPplugins !insertmacro MUI_DESCRIPTION_TEXT ${SectionGroupMP} "$(DESC_SectionGroupMP)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPControlPlugin} "$(DESC_SectionMPControlPlugin)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionMPBlastZonePlugin} "$(DESC_SectionMPBlastZonePlugin)" @@ -1350,6 +1390,8 @@ !insertmacro MUI_DESCRIPTION_TEXT ${SectionTV3BlasterPlugin} "$(DESC_SectionTV3BlasterPlugin)" ; !insertmacro MUI_DESCRIPTION_TEXT ${SectionGroupMCE} "$(DESC_SectionGroupMCE)" ; !insertmacro MUI_DESCRIPTION_TEXT ${SectionMCEBlaster} "$(DESC_SectionMCEBlaster)" +!endif + !insertmacro MUI_DESCRIPTION_TEXT ${SectionTranslator} "$(DESC_SectionTranslator)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionTrayLauncher} "$(DESC_SectionTrayLauncher)" !insertmacro MUI_DESCRIPTION_TEXT ${SectionVirtualRemote} "$(DESC_SectionVirtualRemote)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-07 14:58:35
|
Revision: 2902 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2902&view=rev Author: chef_koch Date: 2009-06-07 14:58:27 +0000 (Sun, 07 Jun 2009) Log Message: ----------- Part 3: refactored irss dir structure - input service is able to be build without mpplugins - mp plugins have their own solution Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln 2009-06-07 14:49:24 UTC (rev 2901) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln 2009-06-07 14:58:27 UTC (rev 2902) @@ -13,12 +13,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaPortal Plugins", "MediaPortal Plugins", "{6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{E757F80C-23C5-4AD6-B178-16799E337E03}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -73,24 +67,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MediaPortal Plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "MediaPortal Plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRMan Receiver", "IR Server Plugins\IRMan Receiver\IRMan Receiver.csproj", "{7C686499-7517-4338-8837-7E8617549D9A}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -121,12 +97,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MediaPortal Plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRTrans Transceiver", "IR Server Plugins\IRTrans Transceiver\IRTrans Transceiver.csproj", "{883913F6-F4A7-4DE2-846A-C2102FAF499E}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -151,12 +121,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IR Server Plugin Interface", "IR Server Plugins\IR Server Plugin Interface\IR Server Plugin Interface.csproj", "{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -277,12 +241,6 @@ Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Commands\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShellLink", "Common\ShellLink\ShellLink.csproj", "{28923F6E-8A68-4BC8-A507-825B09C3F64E}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -507,24 +465,6 @@ {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.ActiveCfg = Release|Any CPU {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|Any CPU.Build.0 = Release|Any CPU {D871AB9A-71B3-4D63-8320-084BAD75064E}.Release|x86.ActiveCfg = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.ActiveCfg = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.ActiveCfg = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.ActiveCfg = Debug|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.ActiveCfg = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.ActiveCfg = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.ActiveCfg = Release|Any CPU {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7C686499-7517-4338-8837-7E8617549D9A}.Debug|Any CPU.Build.0 = Debug|Any CPU {7C686499-7517-4338-8837-7E8617549D9A}.Debug|x86.ActiveCfg = Debug|Any CPU @@ -555,12 +495,6 @@ {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.ActiveCfg = Release|Any CPU {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|Any CPU.Build.0 = Release|Any CPU {2B9C6BE9-98D0-4D69-B041-57EE5D2DFB97}.Release|x86.ActiveCfg = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.ActiveCfg = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.ActiveCfg = Release|Any CPU {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|Any CPU.Build.0 = Debug|Any CPU {883913F6-F4A7-4DE2-846A-C2102FAF499E}.Debug|x86.ActiveCfg = Debug|Any CPU @@ -585,12 +519,6 @@ {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.ActiveCfg = Release|Any CPU {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|Any CPU.Build.0 = Release|Any CPU {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|x86.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.ActiveCfg = Release|Any CPU {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|Any CPU.Build.0 = Debug|Any CPU {D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}.Debug|x86.ActiveCfg = Debug|Any CPU @@ -711,12 +639,6 @@ {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.ActiveCfg = Release|Any CPU {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|Any CPU.Build.0 = Release|Any CPU {D1BAC7A9-FFB6-44BA-825F-32506831DC3D}.Release|x86.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.ActiveCfg = Release|Any CPU {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|Any CPU.Build.0 = Debug|Any CPU {28923F6E-8A68-4BC8-A507-825B09C3F64E}.Debug|x86.ActiveCfg = Debug|Any CPU @@ -972,12 +894,7 @@ {1F9F8771-1173-409E-A3D0-265756220D27} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {EC37743A-64B2-472A-9EB6-CB052AD2B35C} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {EBFA0F67-1EB6-4282-8475-C397B9852B3F} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479} = {6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA} - {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90} = {6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA} - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50} = {6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA} - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25} = {6C18D808-E5ED-4CFB-A7CD-E2BDBB1D9BDA} {CA15769C-232E-4CA7-94FD-206A06CA3ABB} = {E757F80C-23C5-4AD6-B178-16799E337E03} - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64} = {E757F80C-23C5-4AD6-B178-16799E337E03} {BCAFDF45-70DD-46FD-8B98-880DDA585AD2} = {E757F80C-23C5-4AD6-B178-16799E337E03} {28923F6E-8A68-4BC8-A507-825B09C3F64E} = {E757F80C-23C5-4AD6-B178-16799E337E03} {28098574-D22E-457C-AFFA-560554499EAC} = {E757F80C-23C5-4AD6-B178-16799E337E03} @@ -986,6 +903,5 @@ {21E04B17-D850-43E7-AAD3-876C0E062BDB} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} {D1BAC7A9-FFB6-44BA-825F-32506831DC3D} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} - {966281F9-3898-4CB7-9940-99D49C21F170} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} EndGlobalSection EndGlobal Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2009-06-07 14:49:24 UTC (rev 2901) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2009-06-07 14:58:27 UTC (rev 2902) @@ -9,15 +9,15 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "TVServer plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MP plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Common\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MP plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MP plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Blast Zone Plugin", "MediaPortal Plugins\MP Blast Zone Plugin\MP Blast Zone Plugin.csproj", "{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Common\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MPUtils", "Common\MPUtils\MPUtils.csproj", "{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MediaPortal Plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -29,6 +29,14 @@ {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -41,14 +49,6 @@ {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-07 17:26:32
|
Revision: 2903 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2903&view=rev Author: chef_koch Date: 2009-06-07 17:26:31 +0000 (Sun, 07 Jun 2009) Log Message: ----------- fixed path in build script fixed path in installer script Modified Paths: -------------- trunk/plugins/IR Server Suite/Build/BuildScript.bat trunk/plugins/IR Server Suite/setup/setup.nsi Modified: trunk/plugins/IR Server Suite/Build/BuildScript.bat =================================================================== --- trunk/plugins/IR Server Suite/Build/BuildScript.bat 2009-06-07 14:58:27 UTC (rev 2902) +++ trunk/plugins/IR Server Suite/Build/BuildScript.bat 2009-06-07 17:26:31 UTC (rev 2903) @@ -49,7 +49,7 @@ echo. echo Reverting assemblies... -setup\DeployVersionSVN.exe /svn=".." /revert >> %LOG% +..\setup\DeployVersionSVN.exe /svn=".." /revert >> %LOG% echo. echo Reading the svn revision... Modified: trunk/plugins/IR Server Suite/setup/setup.nsi =================================================================== --- trunk/plugins/IR Server Suite/setup/setup.nsi 2009-06-07 14:58:27 UTC (rev 2902) +++ trunk/plugins/IR Server Suite/setup/setup.nsi 2009-06-07 17:26:31 UTC (rev 2903) @@ -26,7 +26,6 @@ ;!define svn_InstallScripts "${svn_ROOT_IRSS}\setup\CommonNSIS" !define svn_InstallScripts "." -!define svn_IRSS "..\IR Server Suite" !define svn_MPplugins "..\MediaPortal Plugins" @@ -160,7 +159,7 @@ # INSTALLER INTERFACE #--------------------------------------------------------------------------- !insertmacro MUI_PAGE_WELCOME -!insertmacro MUI_PAGE_LICENSE "${svn_IRSS}\Documentation\LICENSE.GPL" +!insertmacro MUI_PAGE_LICENSE "..\IR Server Suite\Documentation\LICENSE.GPL" Page custom PageReinstallMode PageLeaveReinstallMode @@ -309,7 +308,7 @@ ; Create app data directories SetOutPath "$DIR_INSTALL" - File "${svn_IRSS}\Documentation\${PRODUCT_NAME}.chm" + File "..\IR Server Suite\Documentation\${PRODUCT_NAME}.chm" CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" @@ -323,7 +322,7 @@ CreateDirectory "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" SetOutPath "$APPDATA\${PRODUCT_NAME}\Set Top Boxes" SetOverwrite ifnewer - File /r /x .svn "${svn_IRSS}\Set Top Boxes\*.*" + File /r /x .svn "..\IR Server Suite\Set Top Boxes\*.*" SetOverwrite on @@ -350,57 +349,57 @@ ${LOG_TEXT} "INFO" "Installing Input Service..." SetOutPath "$DIR_INSTALL\Input Service" - File "${svn_IRSS}\Input Service\Input Service\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Input Service\Input Service\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing Input Service Configuration..." SetOutPath "$DIR_INSTALL\Input Service Configuration" - File "${svn_IRSS}\Input Service\Input Service Configuration\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Input Service\Input Service Configuration\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing IR Server..." SetOutPath "$DIR_INSTALL\Input Service" - File "${svn_IRSS}\Applications\IR Server\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\IR Server\bin\${Build_Type}\*.*" ${LOG_TEXT} "INFO" "Installing IR Server Plugins..." SetOutPath "$DIR_INSTALL\IR Server Plugins" - File "${svn_IRSS}\IR Server Plugins\Ads Tech PTV-335 Receiver\bin\${Build_Type}\Ads Tech PTV-335 Receiver.*" - File "${svn_IRSS}\IR Server Plugins\CoolCommand Receiver\bin\${Build_Type}\CoolCommand Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Custom HID Receiver\bin\${Build_Type}\Custom HID Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Direct Input Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.DirectInput.dll" - File "${svn_IRSS}\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.dll" - File "${svn_IRSS}\IR Server Plugins\FusionRemote Receiver\bin\${Build_Type}\FusionRemote Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Girder Plugin\bin\${Build_Type}\Girder Plugin.*" - File "${svn_IRSS}\IR Server Plugins\HCW Receiver\bin\${Build_Type}\HCW Receiver.*" - File "${svn_IRSS}\IR Server Plugins\IgorPlug Receiver\bin\${Build_Type}\IgorPlug Receiver.*" - ;File "${svn_IRSS}\IR Server Plugins\Imon Receiver\bin\${Build_Type}\Imon Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Imon USB Receivers\bin\${Build_Type}\Imon USB Receivers.*" - ;File "${svn_IRSS}\IR Server Plugins\IR501 Receiver\bin\${Build_Type}\IR501 Receiver.*" - File "${svn_IRSS}\IR Server Plugins\IR507 Receiver\bin\${Build_Type}\IR507 Receiver.*" - ;File "${svn_IRSS}\IR Server Plugins\Ira Transceiver\bin\${Build_Type}\Ira Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\IRMan Receiver\bin\${Build_Type}\IRMan Receiver.*" - File "${svn_IRSS}\IR Server Plugins\IRTrans Transceiver\bin\${Build_Type}\IRTrans Transceiver.*" - ;File "${svn_IRSS}\IR Server Plugins\Keyboard Input\bin\${Build_Type}\Keyboard Input.*" - File "${svn_IRSS}\IR Server Plugins\LiveDrive Receiver\bin\${Build_Type}\LiveDrive Receiver.*" - File "${svn_IRSS}\IR Server Plugins\MacMini Receiver\bin\${Build_Type}\MacMini Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Microsoft MCE Transceiver\bin\${Build_Type}\Microsoft MCE Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\Pinnacle Serial Receiver\bin\${Build_Type}\Pinnacle Serial Receiver.*" - ;File "${svn_IRSS}\IR Server Plugins\RC102 Receiver\bin\${Build_Type}\RC102 Receiver.*" - File "${svn_IRSS}\IR Server Plugins\RedEye Blaster\bin\${Build_Type}\RedEye Blaster.*" - File "${svn_IRSS}\IR Server Plugins\Serial IR Blaster\bin\${Build_Type}\Serial IR Blaster.*" - ;File "${svn_IRSS}\IR Server Plugins\Speech Receiver\bin\${Build_Type}\Speech Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\Technotrend Receiver.*" - File "${svn_IRSS}\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\ttBdaDrvApi_Dll.dll" - ;File "${svn_IRSS}\IR Server Plugins\Tira Transceiver\bin\${Build_Type}\Tira Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\USB-UIRT Transceiver\bin\${Build_Type}\USB-UIRT Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\Wii Remote Receiver\bin\${Build_Type}\Wii Remote Receiver.*" - File "${svn_IRSS}\IR Server Plugins\WiimoteLib\bin\${Build_Type}\WiimoteLib.*" - File "${svn_IRSS}\IR Server Plugins\Windows Message Receiver\bin\${Build_Type}\Windows Message Receiver.*" - File "${svn_IRSS}\IR Server Plugins\WinLirc Transceiver\bin\${Build_Type}\WinLirc Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\X10 Transceiver.*" - File "${svn_IRSS}\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\Interop.X10.dll" - File "${svn_IRSS}\IR Server Plugins\XBCDRC Receiver\bin\${Build_Type}\XBCDRC Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Ads Tech PTV-335 Receiver\bin\${Build_Type}\Ads Tech PTV-335 Receiver.*" + File "..\IR Server Suite\IR Server Plugins\CoolCommand Receiver\bin\${Build_Type}\CoolCommand Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Custom HID Receiver\bin\${Build_Type}\Custom HID Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Direct Input Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.DirectInput.dll" + File "..\IR Server Suite\IR Server Plugins\Direct Input Receiver\bin\${Build_Type}\Microsoft.DirectX.dll" + File "..\IR Server Suite\IR Server Plugins\FusionRemote Receiver\bin\${Build_Type}\FusionRemote Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Girder Plugin\bin\${Build_Type}\Girder Plugin.*" + File "..\IR Server Suite\IR Server Plugins\HCW Receiver\bin\${Build_Type}\HCW Receiver.*" + File "..\IR Server Suite\IR Server Plugins\IgorPlug Receiver\bin\${Build_Type}\IgorPlug Receiver.*" + ;File "..\IR Server Suite\IR Server Plugins\Imon Receiver\bin\${Build_Type}\Imon Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Imon USB Receivers\bin\${Build_Type}\Imon USB Receivers.*" + ;File "..\IR Server Suite\IR Server Plugins\IR501 Receiver\bin\${Build_Type}\IR501 Receiver.*" + File "..\IR Server Suite\IR Server Plugins\IR507 Receiver\bin\${Build_Type}\IR507 Receiver.*" + ;File "..\IR Server Suite\IR Server Plugins\Ira Transceiver\bin\${Build_Type}\Ira Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\IRMan Receiver\bin\${Build_Type}\IRMan Receiver.*" + File "..\IR Server Suite\IR Server Plugins\IRTrans Transceiver\bin\${Build_Type}\IRTrans Transceiver.*" + ;File "..\IR Server Suite\IR Server Plugins\Keyboard Input\bin\${Build_Type}\Keyboard Input.*" + File "..\IR Server Suite\IR Server Plugins\LiveDrive Receiver\bin\${Build_Type}\LiveDrive Receiver.*" + File "..\IR Server Suite\IR Server Plugins\MacMini Receiver\bin\${Build_Type}\MacMini Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Microsoft MCE Transceiver\bin\${Build_Type}\Microsoft MCE Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\Pinnacle Serial Receiver\bin\${Build_Type}\Pinnacle Serial Receiver.*" + ;File "..\IR Server Suite\IR Server Plugins\RC102 Receiver\bin\${Build_Type}\RC102 Receiver.*" + File "..\IR Server Suite\IR Server Plugins\RedEye Blaster\bin\${Build_Type}\RedEye Blaster.*" + File "..\IR Server Suite\IR Server Plugins\Serial IR Blaster\bin\${Build_Type}\Serial IR Blaster.*" + ;File "..\IR Server Suite\IR Server Plugins\Speech Receiver\bin\${Build_Type}\Speech Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\Technotrend Receiver.*" + File "..\IR Server Suite\IR Server Plugins\Technotrend Receiver\bin\${Build_Type}\ttBdaDrvApi_Dll.dll" + ;File "..\IR Server Suite\IR Server Plugins\Tira Transceiver\bin\${Build_Type}\Tira Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\USB-UIRT Transceiver\bin\${Build_Type}\USB-UIRT Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\Wii Remote Receiver\bin\${Build_Type}\Wii Remote Receiver.*" + File "..\IR Server Suite\IR Server Plugins\WiimoteLib\bin\${Build_Type}\WiimoteLib.*" + File "..\IR Server Suite\IR Server Plugins\Windows Message Receiver\bin\${Build_Type}\Windows Message Receiver.*" + File "..\IR Server Suite\IR Server Plugins\WinLirc Transceiver\bin\${Build_Type}\WinLirc Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\X10 Transceiver.*" + File "..\IR Server Suite\IR Server Plugins\X10 Transceiver\bin\${Build_Type}\Interop.X10.dll" + File "..\IR Server Suite\IR Server Plugins\XBCDRC Receiver\bin\${Build_Type}\XBCDRC Receiver.*" ; Create App Data Folder for IR Server configuration files CreateDirectory "$APPDATA\${PRODUCT_NAME}\Input Service" @@ -408,8 +407,8 @@ ; Copy Abstract Remote maps SetOutPath "$APPDATA\${PRODUCT_NAME}\Input Service\Abstract Remote Maps" SetOverwrite ifnewer - File /r /x .svn "${svn_IRSS}\Input Service\Input Service\Abstract Remote Maps\*.*" - File "${svn_IRSS}\Input Service\Input Service\RemoteTable.xsd" + File /r /x .svn "..\IR Server Suite\Input Service\Input Service\Abstract Remote Maps\*.*" + File "..\IR Server Suite\Input Service\Input Service\RemoteTable.xsd" SetOverwrite on ; Create start menu shortcut @@ -459,15 +458,15 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "..\MediaPortal Plugins\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "..\IR Server Suite\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "..\IR Server Suite\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" ; Write plugin dll SetOutPath "$MPdir.Plugins\Windows" - File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "..\MediaPortal Plugins\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "..\IR Server Suite\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "..\IR Server Suite\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" SectionEnd !macro Remove_${SectionMPCommon} ${LOG_TEXT} "INFO" "Removing common files for MediaPortal plugins..." @@ -490,17 +489,17 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\bin\${Build_Type}\MPControlPlugin.*" + File "..\MediaPortal Plugins\MediaPortal Plugins\MP Control Plugin\bin\${Build_Type}\MPControlPlugin.*" ; Write input mapping SetOutPath "$MPdir.CustomInputDefault" - File "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\InputMapping\MPControlPlugin.xml" + File "..\MediaPortal Plugins\MediaPortal Plugins\MP Control Plugin\InputMapping\MPControlPlugin.xml" ; Write app data CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Control Plugin" SetOverwrite ifnewer - File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Control Plugin\AppData\*.*" + File /r /x .svn "..\MediaPortal Plugins\MediaPortal Plugins\MP Control Plugin\AppData\*.*" SetOverwrite on ; Create Macro folder @@ -523,21 +522,21 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Windows" - File "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\bin\${Build_Type}\MPBlastZonePlugin.*" + File "..\MediaPortal Plugins\MediaPortal Plugins\MP Blast Zone Plugin\bin\${Build_Type}\MPBlastZonePlugin.*" ; Write app data CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" SetOutPath "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin" SetOverwrite off - File "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\AppData\Menu.xml" + File "..\MediaPortal Plugins\MediaPortal Plugins\MP Blast Zone Plugin\AppData\Menu.xml" SetOverwrite on ; Write skin files SetOutPath "$MPdir.Skin\Blue3" - File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "..\MediaPortal Plugins\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" SetOutPath "$MPdir.Skin\Blue3wide" - File /r /x .svn "${svn_MPplugins}\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" + File /r /x .svn "..\MediaPortal Plugins\MediaPortal Plugins\MP Blast Zone Plugin\Skin\*.*" ; Create Macro folder CreateDirectory "$APPDATA\${PRODUCT_NAME}\MP Blast Zone Plugin\Macro" @@ -556,7 +555,7 @@ ; Write plugin dll SetOutPath "$MPdir.Plugins\Process" - File "${svn_MPplugins}\MediaPortal Plugins\TV2 Blaster Plugin\bin\${Build_Type}\TV2BlasterPlugin.*" + File "..\MediaPortal Plugins\MediaPortal Plugins\TV2 Blaster Plugin\bin\${Build_Type}\TV2BlasterPlugin.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV2 Blaster Plugin" @@ -607,9 +606,9 @@ ; Write plugin dll SetOutPath "$DIR_TVSERVER\Plugins" - File "${svn_MPplugins}\Common\MPUtils\bin\${Build_Type}\MPUtils.*" - File "${svn_IRSS}\Common\IrssComms\bin\${Build_Type}\IrssComms.*" - File "${svn_IRSS}\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" + File "..\MediaPortal Plugins\Common\MPUtils\bin\${Build_Type}\MPUtils.*" + File "..\IR Server Suite\Common\IrssComms\bin\${Build_Type}\IrssComms.*" + File "..\IR Server Suite\Common\IrssUtils\bin\${Build_Type}\IrssUtils.*" SectionEnd !macro Remove_${SectionTV3Common} ${If} ${FileExists} "$DIR_TVSERVER\Plugins\MPUtils.*" @@ -634,7 +633,7 @@ ; Write plugin dll SetOutPath "$DIR_TVSERVER\Plugins" - File "${svn_MPplugins}\MediaPortal Plugins\TV3 Blaster Plugin\bin\${Build_Type}\TV3BlasterPlugin.*" + File "..\MediaPortal Plugins\TVServer plugins\TV3 Blaster Plugin\bin\${Build_Type}\TV3BlasterPlugin.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\TV3 Blaster Plugin" @@ -670,7 +669,7 @@ ; Installing Translator CreateDirectory "$DIR_INSTALL\Media Center Blaster" SetOutPath "$DIR_INSTALL\Media Center Blaster" - File "${svn_IRSS}\Applications\Media Center Blaster\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Media Center Blaster\bin\${Build_Type}\*.*" ; Create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Media Center Blaster" @@ -711,7 +710,7 @@ ; install files SetOutPath "$DIR_INSTALL\Abstractor" - File "${svn_IRSS}\Applications\Abstractor\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Abstractor\bin\${Build_Type}\*.*" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Abstractor.lnk" "$DIR_INSTALL\Abstractor\Abstractor.exe" "" "$DIR_INSTALL\Abstractor\Abstractor.exe" 0 @@ -736,7 +735,7 @@ ; install files SetOutPath "$DIR_INSTALL\Debug Client" - File "${svn_IRSS}\Applications\Debug Client\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Debug Client\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Debug Client" @@ -764,7 +763,7 @@ ; install files SetOutPath "$DIR_INSTALL\IR File Tool" - File "${svn_IRSS}\Applications\IR File Tool\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\IR File Tool\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\IR File Tool" @@ -792,7 +791,7 @@ ; install files SetOutPath "$DIR_INSTALL\Keyboard Input Relay" - File "${svn_IRSS}\Applications\Keyboard Input Relay\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Keyboard Input Relay\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Keyboard Input Relay" @@ -823,7 +822,7 @@ ; install files SetOutPath "$DIR_INSTALL\Translator" - File "${svn_IRSS}\Applications\Translator\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Translator\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Translator" @@ -832,7 +831,7 @@ ; Copy in default settings files SetOutPath "$APPDATA\${PRODUCT_NAME}\Translator\Default Settings" - File "${svn_IRSS}\Applications\Translator\Default Settings\*.xml" + File "..\IR Server Suite\Applications\Translator\Default Settings\*.xml" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Translator.lnk" "$DIR_INSTALL\Translator\Translator.exe" "" "$DIR_INSTALL\Translator\Translator.exe" 0 @@ -860,7 +859,7 @@ ; install files SetOutPath "$DIR_INSTALL\Tray Launcher" - File "${svn_IRSS}\Applications\Tray Launcher\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Tray Launcher\bin\${Build_Type}\*.*" ; create start menu shortcuts CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Tray Launcher.lnk" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" "" "$DIR_INSTALL\Tray Launcher\TrayLauncher.exe" 0 @@ -890,19 +889,19 @@ ; Installing Virtual Remote and Web Remote SetOutPath "$DIR_INSTALL\Virtual Remote" - File "${svn_IRSS}\Applications\Virtual Remote\bin\${Build_Type}\*.*" - File "${svn_IRSS}\Applications\Web Remote\bin\${Build_Type}\WebRemote.*" - File "${svn_IRSS}\Applications\Virtual Remote Skin Editor\bin\${Build_Type}\VirtualRemoteSkinEditor.*" + File "..\IR Server Suite\Applications\Virtual Remote\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Web Remote\bin\${Build_Type}\WebRemote.*" + File "..\IR Server Suite\Applications\Virtual Remote Skin Editor\bin\${Build_Type}\VirtualRemoteSkinEditor.*" ; Installing skins SetOutPath "$DIR_INSTALL\Virtual Remote\Skins" - File "${svn_IRSS}\Applications\Virtual Remote\Skins\*.*" + File "..\IR Server Suite\Applications\Virtual Remote\Skins\*.*" ; Installing Virtual Remote for Smart Devices SetOutPath "$DIR_INSTALL\Virtual Remote\Smart Devices" - File "${svn_IRSS}\Applications\Virtual Remote (PocketPC2003) Installer\${Build_Type}\*.cab" - File "${svn_IRSS}\Applications\Virtual Remote (Smartphone2003) Installer\${Build_Type}\*.cab" - File "${svn_IRSS}\Applications\Virtual Remote (WinCE5) Installer\${Build_Type}\*.cab" + File "..\IR Server Suite\Applications\Virtual Remote (PocketPC2003) Installer\${Build_Type}\*.cab" + File "..\IR Server Suite\Applications\Virtual Remote (Smartphone2003) Installer\${Build_Type}\*.cab" + File "..\IR Server Suite\Applications\Virtual Remote (WinCE5) Installer\${Build_Type}\*.cab" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Virtual Remote" @@ -941,8 +940,8 @@ ; install files SetOutPath "$DIR_INSTALL\IR Blast" - File "${svn_IRSS}\Applications\IR Blast (No Window)\bin\${Build_Type}\*.*" - File "${svn_IRSS}\Applications\IR Blast\bin\${Build_Type}\IRBlast.exe" + File "..\IR Server Suite\Applications\IR Blast (No Window)\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\IR Blast\bin\${Build_Type}\IRBlast.exe" ${MementoSectionEnd} !macro Remove_${SectionIRBlast} @@ -959,7 +958,7 @@ ; install files SetOutPath "$DIR_INSTALL\Dbox Tuner" - File "${svn_IRSS}\Applications\Dbox Tuner\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\Dbox Tuner\bin\${Build_Type}\*.*" ; create folders CreateDirectory "$APPDATA\${PRODUCT_NAME}\Dbox Tuner" @@ -979,7 +978,7 @@ ; install files SetOutPath "$DIR_INSTALL\HCW PVR Tuner" - File "${svn_IRSS}\Applications\HCW PVR Tuner\bin\${Build_Type}\*.*" + File "..\IR Server Suite\Applications\HCW PVR Tuner\bin\${Build_Type}\*.*" ${MementoSectionEnd} !macro Remove_${SectionHcwPvrTuner} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-16 02:49:33
|
Revision: 2926 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2926&view=rev Author: chef_koch Date: 2009-06-16 02:49:27 +0000 (Tue, 16 Jun 2009) Log Message: ----------- added copyright information using resharper to file headers Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/AppProfile.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandExecutionException.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandStructureException.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandHibernate.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandKeystrokes.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandLogOff.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPause.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPopup.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandReboot.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandRun.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandSendWOL.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandShutdown.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandStandBy.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Forms/EditKeystrokes.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Forms/EditPause.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Forms/EditPopup.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Forms/EditSendWOL.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Forms/PopupMessage.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Win32.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Client.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ClientManager.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/GenericPCQueue.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssMessage.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/MessageManagerCombo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Server.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/ScheduleEvent.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Scheduler.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Audio.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/CDRom.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Common.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Display.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Exceptions/CommandExecutionException.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Exceptions/CommandStructureException.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Exceptions/MacroStructureException.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/FocusForcer.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/BeepCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/BlastCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/CloseProgramCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/DisplayModeCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/DisplayPowerCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/EjectCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/ExternalProgram.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/HttpMessageCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/IfCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/KeysCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/LabelNameDialog.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/LearnIR.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/MessageCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/MouseCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/PauseTime.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/PopupMessage.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/SerialCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/ServerAddress.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/SetVariableCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/ShowPopupMessage.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/SmsKeyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/TcpMessageCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/VariablesFileDialog.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/VirtualKeyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/WindowCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Forms/WindowList.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IRServerInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssLog.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssMacro.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Network.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/SystemRegistry.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/VariableList.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Win32.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/XML.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLinkNative.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellShortcut.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommandReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputListener.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Config.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/IrRemoteWrapper.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IConfigure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IKeyboardReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/ILearnIR.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IMouseReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/ITransmitIR.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/PluginBase.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/RawInput.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/MceDetectionData.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/RemoteDetectionData.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/DeviceIoOverlapped.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Imon Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Configuration.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/RawInput.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/ReceiverWindow.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/SpeechReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Setup.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/DataTypes.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Events.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/HIDImports.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Wiimote.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Configure.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/CreateIRFile.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/SocketInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLircCommand.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLircServer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/InputService.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/InputServiceInstaller.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Program.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Advanced.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Config.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Exclusions.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Program.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/ExternalChannelConfig.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/GoToScreen.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPMessage.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandExit.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandGetFocus.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandGotoScreen.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandHibernate.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandPopup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandReboot.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendMessage.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandShutdown.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandStandBy.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Common.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditGotoScreen.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditPopup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendMessage.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Menu.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/MultiMapNameBox.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MappedEvent.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MappedKeyCode.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/StbSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/ExternalChannels.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/StbSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,26 @@ -using System; +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("LogTimeCodeExtractor")] -[assembly: AssemblyCopyright("Copyright © 2008")] +[assembly: AssemblyCopyright("Copyright \xA9 2008")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("and-81")] [assembly: AssemblyProduct("SageSetup")] -[assembly: AssemblyCopyright("Copyright © Aaron Dinnage, 2007")] +[assembly: AssemblyCopyright("Copyright \xA9 Aaron Dinnage, 2007")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/AppProfile.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/AppProfile.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/AppProfile.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Collections.Generic; using System.IO; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.ComponentModel; using System.Diagnostics; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -12,7 +12,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("and-81")] [assembly: AssemblyProduct("Virtual Remote Skin Editor")] -[assembly: AssemblyCopyright("Copyright © Aaron Dinnage 2007")] +[assembly: AssemblyCopyright("Copyright \xA9 Aaron Dinnage 2007")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Globalization; using System.IO; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandExecutionException.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandExecutionException.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandExecutionException.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Runtime.Serialization; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandStructureException.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandStructureException.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/CommandStructureException.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Runtime.Serialization; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,4 +1,26 @@ -using System; +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandHibernate.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandHibernate.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandHibernate.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System.Windows.Forms; namespace Commands.General Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandKeystrokes.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandKeystrokes.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandKeystrokes.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Windows.Forms; using IrssUtils; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandLogOff.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandLogOff.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandLogOff.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + namespace Commands.General { /// <summary> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPause.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPause.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPause.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System.Threading; using System.Windows.Forms; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPopup.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPopup.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandPopup.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System.Windows.Forms; namespace Commands.General Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandReboot.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandReboot.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandReboot.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + namespace Commands.General { /// <summary> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandRun.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandRun.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandRun.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Diagnostics; using System.Windows.Forms; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandSendWOL.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandSendWOL.cs 2009-06-16 02:00:24 UTC (rev 2925) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandSendWOL.cs 2009-06-16 02:49:27 UTC (rev 2926) @@ -1,3 +1,25 @@ +#region Copyright (C) 2005-2009 Team MediaPortal + +// Copyright (C) 2005-2009 Team MediaPortal +// http://www.team-mediaportal.com +// +// This Program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This Program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with GNU Make; see the file COPYING. If not, write to +// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +// http://www.gnu.org/copyleft/gpl.html + +#endregion + using System; using System.Globalization; using System.Net; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/CommandShutdown.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Gene... [truncated message content] |
From: <che...@us...> - 2009-06-16 19:48:07
|
Revision: 2928 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2928&view=rev Author: chef_koch Date: 2009-06-16 12:26:37 +0000 (Tue, 16 Jun 2009) Log Message: ----------- modified code style: constants are in UPPERCASE format now Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.4.5.resharper trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.4.5.resharper Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.4.5.resharper =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.4.5.resharper 2009-06-16 02:59:51 UTC (rev 2927) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.4.5.resharper 2009-06-16 12:26:37 UTC (rev 2928) @@ -23,7 +23,24 @@ </MODIFIERS_ORDER> </FormatSettings> <UsingsSettings /> - <Naming2 /> + <Naming2> + <ExceptionName IsNull="False"> + </ExceptionName> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="TypesAndNamespaces" /> + <PredefinedRule Inspect="True" Prefix="I" Suffix="" Style="AaBb" ElementKind="Interfaces" /> + <PredefinedRule Inspect="True" Prefix="T" Suffix="" Style="AaBb" ElementKind="TypeParameters" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="MethodPropertyEvent" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Locals" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="LocalConstants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Parameters" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PublicFields" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Constants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="StaticReadonly" /> + <PredefinedRule Inspect="True" Prefix="_" Suffix="" Style="aaBb" ElementKind="NotPublicStaticFields" /> + <PredefinedRule Inspect="True" Prefix="_" Suffix="" Style="aaBb" ElementKind="NotPublicInstanceFields" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="EnumMember" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Other" /> + </Naming2> </CSharp> <VB> <FormatSettings /> @@ -62,7 +79,7 @@ <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="MethodPropertyEvent" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="LocalConstants" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PublicFields" /> - <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Constants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AA_BB" ElementKind="Constants" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="StaticReadonly" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Other" /> </Naming2> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.4.5.resharper =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.4.5.resharper 2009-06-16 02:59:51 UTC (rev 2927) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.4.5.resharper 2009-06-16 12:26:37 UTC (rev 2928) @@ -23,7 +23,24 @@ </MODIFIERS_ORDER> </FormatSettings> <UsingsSettings /> - <Naming2 /> + <Naming2> + <ExceptionName IsNull="False"> + </ExceptionName> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="TypesAndNamespaces" /> + <PredefinedRule Inspect="True" Prefix="I" Suffix="" Style="AaBb" ElementKind="Interfaces" /> + <PredefinedRule Inspect="True" Prefix="T" Suffix="" Style="AaBb" ElementKind="TypeParameters" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="MethodPropertyEvent" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Locals" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="LocalConstants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Parameters" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PublicFields" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Constants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="StaticReadonly" /> + <PredefinedRule Inspect="True" Prefix="_" Suffix="" Style="aaBb" ElementKind="NotPublicStaticFields" /> + <PredefinedRule Inspect="True" Prefix="_" Suffix="" Style="aaBb" ElementKind="NotPublicInstanceFields" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="EnumMember" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Other" /> + </Naming2> </CSharp> <VB> <FormatSettings /> @@ -62,7 +79,7 @@ <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="MethodPropertyEvent" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="LocalConstants" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PublicFields" /> - <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Constants" /> + <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AA_BB" ElementKind="Constants" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="StaticReadonly" /> <PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Other" /> </Naming2> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-06-18 09:30:13
|
Revision: 2935 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2935&view=rev Author: chef_koch Date: 2009-06-18 09:29:34 +0000 (Thu, 18 Jun 2009) Log Message: ----------- fixed encoding of AssemblyInfo.cs Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Server/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("LogTimeCodeExtractor")] -[assembly: AssemblyCopyright("Copyright \xA9 2008")] +[assembly: AssemblyCopyright("Copyright � 2008")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("and-81")] [assembly: AssemblyProduct("SageSetup")] -[assembly: AssemblyCopyright("Copyright \xA9 Aaron Dinnage, 2007")] +[assembly: AssemblyCopyright("Copyright � Aaron Dinnage, 2007")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (PocketPC2003)/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (Smartphone2003)/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote (WinCE5)/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; @@ -12,7 +12,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("and-81")] [assembly: AssemblyProduct("Virtual Remote Skin Editor")] -[assembly: AssemblyCopyright("Copyright \xA9 Aaron Dinnage 2007")] +[assembly: AssemblyCopyright("Copyright � Aaron Dinnage 2007")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com @@ -33,7 +33,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("IrssScheduler")] -[assembly: AssemblyCopyright("Copyright \xA9 2008")] +[assembly: AssemblyCopyright("Copyright � 2008")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Permissions; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Permissions; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com @@ -32,7 +32,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Speech Receiver")] -[assembly: AssemblyCopyright("Copyright \xA9 2008")] +[assembly: AssemblyCopyright("Copyright � 2008")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Permissions; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com @@ -32,7 +32,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Brian Peek (www.brianpeek.com)")] [assembly: AssemblyProduct("WiimoteLib")] -[assembly: AssemblyCopyright("Copyright \xA9 2007 Brian Peek (www.brianpeek.com)")] +[assembly: AssemblyCopyright("Copyright � 2007 Brian Peek (www.brianpeek.com)")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Permissions; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -using System; +using System; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Permissions; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/IR Server Suite/Input Service/Input Service Configuration/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs 2009-06-18 07:15:40 UTC (rev 2934) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs 2009-06-18 09:29:34 UTC (rev 2935) @@ -1,4 +1,4 @@ -#region Copyright (C) 2005-2009 Team MediaPortal +#region Copyright (C) 2005-2009 Team MediaPortal // Copyright (C) 2005-2009 Team MediaPortal // http://www.team-mediaportal.com This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |