From: <che...@us...> - 2009-12-11 15:35:53
|
Revision: 3228 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3228&view=rev Author: chef_koch Date: 2009-12-11 15:35:00 +0000 (Fri, 11 Dec 2009) Log Message: ----------- moved skin and doc files added build script to easily creating a package for release, only copying files for now to new new dir, creating a mediaportal extension package will be added later added DeployVersionSVN.exe to svn to set the svn revision to the assemblyinfo.cs Modified Paths: -------------- trunk/plugins/FritzBox/FritzBox/FritzBox.csproj Added Paths: ----------- trunk/plugins/FritzBox/Build/BUILD_NEW_FritzBoxManager.bat trunk/plugins/FritzBox/Build/DeployVersionSVN.exe trunk/plugins/FritzBox/FritzBox/Skin/ trunk/plugins/FritzBox/FritzBox/Skin/Blue3/Media/FritzBox.CallMonitor.Missing.png trunk/plugins/FritzBox/FritzBox/Skin/Blue3/Media/FritzBox.CallMonitor.Unknown.png trunk/plugins/FritzBox/FritzBox/Skin/GenericSkin/Media/FritzBox.CallMonitor.Missing.png trunk/plugins/FritzBox/FritzBox/Skin/GenericSkin/Media/FritzBox.CallMonitor.Unknown.png trunk/plugins/FritzBox/FritzBox/docs/ trunk/plugins/FritzBox/FritzBox/docs/Changes.txt trunk/plugins/FritzBox/FritzBox/docs/Install.txt trunk/plugins/FritzBox/FritzBox/docs/todo.txt Removed Paths: ------------- trunk/plugins/FritzBox/FritzBox/FritzManager/Changes.txt trunk/plugins/FritzBox/FritzBox/FritzManager/Install.txt trunk/plugins/FritzBox/FritzBox/FritzManager/Skin/ trunk/plugins/FritzBox/FritzBox/FritzManager/todo.txt trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Missing.png trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Unknown.png Added: trunk/plugins/FritzBox/Build/BUILD_NEW_FritzBoxManager.bat =================================================================== --- trunk/plugins/FritzBox/Build/BUILD_NEW_FritzBoxManager.bat (rev 0) +++ trunk/plugins/FritzBox/Build/BUILD_NEW_FritzBoxManager.bat 2009-12-11 15:35:00 UTC (rev 3228) @@ -0,0 +1,60 @@ +@ECHO OFF + + +REM Select program path based on current machine environment +set ProgramDir=%ProgramFiles% +if not "%ProgramFiles(x86)%".=="". set ProgramDir=%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 -= FRITZ!Box Manager =- +echo -=====================- +echo. + + +echo. +echo Writing SVN revision assemblies... +DeployVersionSVN.exe /svn=".." >> %LOG% + + +echo. +echo Building FRITZ!Box Manager... +"%WINDIR%\Microsoft.NET\Framework\v3.5\MSBUILD.exe" /target:Rebuild /property:Configuration=Release;AllowUnsafeBlocks=true "..\FritzBox.sln" >> %LOG% + + +echo. +echo Reverting assemblies... +DeployVersionSVN.exe /svn=".." /revert >> %LOG% + + + +rmdir /S /Q ..\_release +xcopy ..\FritzBox\bin\Release\FritzBox.dll ..\_release\plugins\windows\ >> %LOG% +xcopy ..\FritzBox\Resources\speexdec.exe ..\_release\WinDir\ >> %LOG% +xcopy ..\FritzBox\docs\* ..\_release\* >> %LOG% +xcopy ..\FritzBox\Skin ..\_release\skin /S /I >> %LOG% + + +exit +rem das erstellen eine MPI paketes kommt erst sp\xE4ter + +echo. +echo Reading the version number... +set plugindll=..\FritzBox\bin\Release\FritzBox.dll +if not exist "%plugindll%" goto version_error +for /f "Tokens=5" %%a in ('filever "%plugindll%"') do set version=%%a +goto :version_done +:version_error +echo "fritzbox.dll not found. version could not be read" >> %LOG% +goto :EOF +:version_done + + +echo Building MpeExtension package... +"%ProgramDir%\Team MediaPortal\MediaPortal\MpeMaker.exe" "..\FritzBox\MpeRelease\FritzBox.xmp2" /V=%version% /B >> %LOG% + Added: trunk/plugins/FritzBox/Build/DeployVersionSVN.exe =================================================================== (Binary files differ) Property changes on: trunk/plugins/FritzBox/Build/DeployVersionSVN.exe ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/FritzBox/FritzBox/FritzBox.csproj =================================================================== --- trunk/plugins/FritzBox/FritzBox/FritzBox.csproj 2009-12-11 14:47:06 UTC (rev 3227) +++ trunk/plugins/FritzBox/FritzBox/FritzBox.csproj 2009-12-11 15:35:00 UTC (rev 3228) @@ -97,26 +97,48 @@ <EmbeddedResource Include="FritzBoxDisabled.png" /> </ItemGroup> <ItemGroup> - <None Include="FritzManager\Changes.txt" /> - <None Include="FritzManager\todo.txt" /> - <Content Include="FritzManager\Install.txt" /> - <Content Include="FritzManager\Skin\Black & White\FritzManager.xml" /> - <Content Include="FritzManager\Skin\Black & White\Media\callin.png" /> - <Content Include="FritzManager\Skin\Black & White\Media\callout.png" /> - <Content Include="FritzManager\Skin\Black & White\Media\rejected.png" /> - <Content Include="FritzManager\Skin\Blue3\FritzManager.xml" /> - <Content Include="FritzManager\Skin\Blue3\Media\callin.png" /> - <Content Include="FritzManager\Skin\Blue3\Media\callout.png" /> - <Content Include="FritzManager\Skin\Blue3\Media\rejected.png" /> - <Content Include="FritzManager\Skin\GenericSkin\FritzManager.xml" /> - <Content Include="FritzManager\Skin\GenericSkin\Media\callin.png" /> - <Content Include="FritzManager\Skin\GenericSkin\Media\callout.png" /> - <Content Include="FritzManager\Skin\GenericSkin\Media\rejected.png" /> + <None Include="docs\Changes.txt"> + </None> + <None Include="docs\todo.txt"> + </None> + <Content Include="docs\Install.txt"> + </Content> + <Content Include="Skin\Black & White\FritzManager.xml"> + </Content> + <Content Include="Skin\Black & White\Media\callin.png"> + </Content> + <Content Include="Skin\Black & White\Media\callout.png"> + </Content> + <Content Include="Skin\Black & White\Media\rejected.png"> + </Content> + <Content Include="Skin\Blue3\FritzManager.xml"> + </Content> + <Content Include="Skin\Blue3\Media\callin.png"> + </Content> + <Content Include="Skin\Blue3\Media\callout.png"> + </Content> + <Content Include="Skin\Blue3\Media\FritzBox.CallMonitor.Missing.png"> + </Content> + <Content Include="Skin\Blue3\Media\FritzBox.CallMonitor.Unknown.png"> + </Content> + <Content Include="Skin\Blue3\Media\rejected.png"> + </Content> + <Content Include="Skin\GenericSkin\FritzManager.xml"> + </Content> + <Content Include="Skin\GenericSkin\Media\callin.png"> + </Content> + <Content Include="Skin\GenericSkin\Media\callout.png"> + </Content> + <Content Include="Skin\GenericSkin\Media\rejected.png"> + </Content> <Content Include="Resources\gfx\FritzBox.ico" /> <Content Include="Resources\gfx\FritzBoxIconMadeByHarley.png" /> - <Content Include="Resources\ContactImages\FritzBox.CallMonitor.Missing.png" /> - <Content Include="Resources\ContactImages\FritzBox.CallMonitor.Unknown.png" /> - <Content Include="Resources\speexdec.exe" /> + <Content Include="Skin\GenericSkin\Media\FritzBox.CallMonitor.Missing.png"> + </Content> + <Content Include="Skin\GenericSkin\Media\FritzBox.CallMonitor.Unknown.png"> + </Content> + <Content Include="Resources\speexdec.exe"> + </Content> </ItemGroup> <ItemGroup> <None Include="Resources\fritzdial.sh" /> Deleted: trunk/plugins/FritzBox/FritzBox/FritzManager/Changes.txt =================================================================== (Binary files differ) Deleted: trunk/plugins/FritzBox/FritzBox/FritzManager/Install.txt =================================================================== --- trunk/plugins/FritzBox/FritzBox/FritzManager/Install.txt 2009-12-11 14:47:06 UTC (rev 3227) +++ trunk/plugins/FritzBox/FritzBox/FritzManager/Install.txt 2009-12-11 15:35:00 UTC (rev 3228) @@ -1,10 +0,0 @@ -- copy speexdec to c:\windows -- copy fritzmanager.dll to MPBASEPATH\plugins\Windows -- copy skin folder into your favorite skin - -- run setup to configure your fritz box passwd (and optionally voicebox base path) - -- configure fritz box to use usb storage for voicebox -- allows NAS access to usb store (ftp is not supported) - - \ No newline at end of file Deleted: trunk/plugins/FritzBox/FritzBox/FritzManager/todo.txt =================================================================== (Binary files differ) Deleted: trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Missing.png =================================================================== (Binary files differ) Deleted: trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Unknown.png =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/Skin/Blue3/Media/FritzBox.CallMonitor.Missing.png (from rev 3226, trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Missing.png) =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/Skin/Blue3/Media/FritzBox.CallMonitor.Unknown.png (from rev 3226, trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Unknown.png) =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/Skin/GenericSkin/Media/FritzBox.CallMonitor.Missing.png (from rev 3226, trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Missing.png) =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/Skin/GenericSkin/Media/FritzBox.CallMonitor.Unknown.png (from rev 3226, trunk/plugins/FritzBox/FritzBox/Resources/ContactImages/FritzBox.CallMonitor.Unknown.png) =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/docs/Changes.txt (from rev 3226, trunk/plugins/FritzBox/FritzBox/FritzManager/Changes.txt) =================================================================== (Binary files differ) Copied: trunk/plugins/FritzBox/FritzBox/docs/Install.txt (from rev 3226, trunk/plugins/FritzBox/FritzBox/FritzManager/Install.txt) =================================================================== --- trunk/plugins/FritzBox/FritzBox/docs/Install.txt (rev 0) +++ trunk/plugins/FritzBox/FritzBox/docs/Install.txt 2009-12-11 15:35:00 UTC (rev 3228) @@ -0,0 +1,10 @@ +- copy speexdec to c:\windows +- copy fritzmanager.dll to MPBASEPATH\plugins\Windows +- copy skin folder into your favorite skin + +- run setup to configure your fritz box passwd (and optionally voicebox base path) + +- configure fritz box to use usb storage for voicebox +- allows NAS access to usb store (ftp is not supported) + + \ No newline at end of file Copied: trunk/plugins/FritzBox/FritzBox/docs/todo.txt (from rev 3226, trunk/plugins/FritzBox/FritzBox/FritzManager/todo.txt) =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |