From: <che...@us...> - 2008-05-23 07:53:07
|
Revision: 1804 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1804&view=rev Author: chef_koch Date: 2008-05-23 00:53:02 -0700 (Fri, 23 May 2008) Log Message: ----------- fixed parsing the dateTime, see http://forum.team-mediaportal.com/plugins-47/fritz-box-callmonitor-v0-2e-2007-02-06-a-5165/index6.html#post264627 and following for further infos Modified Paths: -------------- trunk/plugins/FritzBox/FritzBox/FritzBox.cs trunk/plugins/FritzBox/FritzBox.xmp Modified: trunk/plugins/FritzBox/FritzBox/FritzBox.cs =================================================================== --- trunk/plugins/FritzBox/FritzBox/FritzBox.cs 2008-05-22 17:09:10 UTC (rev 1803) +++ trunk/plugins/FritzBox/FritzBox/FritzBox.cs 2008-05-23 07:53:02 UTC (rev 1804) @@ -366,7 +366,7 @@ CallAction callAction = new CallAction(); // time when action happens - callAction.time = DateTime.Parse(strList[0]); + callAction.time = DateTime.Parse(strList[0], new System.Globalization.CultureInfo("de-DE", false)); // set the type of the callAction switch (strList[1]) Modified: trunk/plugins/FritzBox/FritzBox.xmp =================================================================== --- trunk/plugins/FritzBox/FritzBox.xmp 2008-05-22 17:09:10 UTC (rev 1803) +++ trunk/plugins/FritzBox/FritzBox.xmp 2008-05-23 07:53:02 UTC (rev 1804) @@ -8,7 +8,7 @@ <Source>FritzBox\gfx\Thumbs\YAC\_noImage.png</Source> <Id>04010</Id> <Option>OutputFileName=|DefaultFile=False|</Option> - <Guid>8e6b98ca-9280-4453-850e-2352bde99717</Guid> + <Guid>580ec1c2-280e-4687-8717-f0539dd6aade</Guid> </File> <File> <FileName>_unknown.png</FileName> @@ -17,7 +17,7 @@ <Source>FritzBox\gfx\Thumbs\YAC\_unknown.png</Source> <Id>04010</Id> <Option /> - <Guid>3fc4269c-bd6d-4315-8c64-f8e8e55ee622</Guid> + <Guid>a54daff6-0969-4190-b5b7-6476b68d1d10</Guid> </File> <File> <FileName>FritzBox.dll</FileName> @@ -26,7 +26,7 @@ <Source>FritzBox\bin\Release\FritzBox.dll</Source> <Id>01020</Id> <Option /> - <Guid>188bfd8b-7a6c-40e5-8719-8962af8c841a</Guid> + <Guid>9c4a9bbd-f5b4-43a5-a625-6426e9581989</Guid> </File> </FileList> <StringList /> @@ -36,12 +36,12 @@ <SetupGroups /> <SetupGroupMappings /> <Option> - <BuildFileName>E:\mediaportal\mediaportal_plugins\FritzBox\FritzBox_v0.3.0.mpi</BuildFileName> - <ProiectFileName>E:\mediaportal\mediaportal_plugins\FritzBox\FritzBox.xmp</ProiectFileName> + <BuildFileName>D:\mediaportal\mediaportal_plugins\FritzBox\FritzBox_v0.3.0.1.mpi</BuildFileName> + <ProiectFileName>D:\mediaportal\mediaportal_plugins\FritzBox\FritzBox.xmp</ProiectFileName> <ProiectName>FritzBox CallMonitor</ProiectName> <Author>chefkoch @ Team MediaPortal</Author> <UpdateURL>http://mpi.team-mediaportal.com/downloads</UpdateURL> - <Version>0.3.0.0</Version> + <Version>0.3.0.1</Version> <Description>The FRITZ!Box plugin is a process plugin, which is able to notify you within MediaPortal on an incomming call on your FRITZ!Box. All strings are multi language. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |