From 895b8ab6261a0d049e29d0b5d01ef539cb443681 Mon Sep 17 00:00:00 2001 From: Hendrik Polczynski Date: Fri, 29 Nov 2013 20:33:09 +0100 Subject: [PATCH] add camera plugin to installer --- tools/Plugin_SDK_PluginDescription.nsh | 2 ++ tools/Plugin_SDK_PluginList.nsh | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/tools/Plugin_SDK_PluginDescription.nsh b/tools/Plugin_SDK_PluginDescription.nsh index 06dcb6e..72e600a 100644 --- a/tools/Plugin_SDK_PluginDescription.nsh +++ b/tools/Plugin_SDK_PluginDescription.nsh @@ -14,3 +14,5 @@ !insertmacro MUI_DESCRIPTION_TEXT ${SEC_PLUGIN_JOYSTICK} "Adds Joystick / Controllers as Flownode Input node" !insertmacro MUI_DESCRIPTION_TEXT ${SEC_PLUGIN_CRASH} "Crashes the process and serves as sample plugin" !insertmacro MUI_DESCRIPTION_TEXT ${SEC_PLUGIN_VARIOUS} "Various stuff from tutorials" +!insertmacro MUI_DESCRIPTION_TEXT ${SEC_PLUGIN_CAMERA} "Basic player camera plugin" + diff --git a/tools/Plugin_SDK_PluginList.nsh b/tools/Plugin_SDK_PluginList.nsh index fdc82a1..2d11760 100644 --- a/tools/Plugin_SDK_PluginList.nsh +++ b/tools/Plugin_SDK_PluginList.nsh @@ -52,6 +52,11 @@ Section /o "VariousStuff" SEC_PLUGIN_VARIOUS !insertmacro DownloadAndExecuteLatestPluginInstaller "https://raw.github.com/hendrikp/Plugin_VariousStuff/master/latestredist.info" ExecWait "/S /D=" SectionEnd +Section /o "Camera" SEC_PLUGIN_CAMERA + AddSize 500 + !insertmacro DownloadAndExecuteLatestPluginInstaller "https://raw.github.com/hendrikp/Plugin_Camera/master/latestredist.info" ExecWait "/S /D=" +SectionEnd + Section /o "Crash" SEC_PLUGIN_CRASH AddSize 200 !insertmacro DownloadAndExecuteLatestPluginInstaller "https://raw.github.com/hendrikp/Plugin_Crash/master/latestredist.info" ExecWait "/S /D="