File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,7 @@ after_build:
4545 - if "%configuration%"=="Release" cd "%APPVEYOR_BUILD_FOLDER%"\docs
4646 - if "%configuration%"=="Release" python -m pip install --upgrade pip
4747 - if "%configuration%"=="Release" pip install -U sphinx
48- - if "%configuration%"=="Release" make.bat htmlhelp
49- # hhc fails with exit code 1 also chm file is created and ok, unclear why, so workaround with forcing exit 0
50- - if "%configuration%"=="Release" hhc.exe build\htmlhelp\PythonScript.hhp & exit 0
48+ - if "%configuration%"=="Release" make.bat singlehtml
5149
5250 - cd "%APPVEYOR_BUILD_FOLDER%"\installer
5351 - set WIX_PATH="C:\Program Files (x86)\WiX Toolset v3.11\bin"
Original file line number Diff line number Diff line change 4343 <Directory Id =" D_DocPythonScript" Name =" PythonScript" >
4444 <Component Id =" C_PythonScript.chm" Guid =" *" >
4545 <RemoveFile Id =" Remove_F_PythonScript.chm" Name =" PythonScript.chm" On =" install" />
46- <File Id =" F_PythonScript.chm" KeyPath =" yes" Name =" PythonScript.chm" Source =" $(var.baseDir)\docs\build\htmlhelp\PythonScript.chm " />
46+ <File Id =" F_PythonScript.chm" KeyPath =" yes" Name =" PythonScript.chm" Source =" $(var.baseDir)\docs\build\singlehtml\index.html " />
4747 </Component >
4848 </Directory >
4949 </Directory >
6868 <ComponentRef Id =" C_python27.dll" />
6969 <ComponentGroupRef Id =" CG_PythonLib" />
7070 </Feature >
71- <Feature Id =" FT_Help" Title =" Help" AllowAdvertise =" no" Description =" CHM file with documentation for all the classes, methods and enums in PythonScript" >
71+ <Feature Id =" FT_Help" Title =" Help" AllowAdvertise =" no" Description =" HTML files with documentation for all the classes, methods and enums in PythonScript" >
7272 <ComponentRef Id =" C_PythonScript.chm" />
7373 </Feature >
7474 <Feature Id =" FT_SampleScripts" Title =" Sample Scripts" AllowAdvertise =" no" Description =" Sample scripts to show basic usage" >
Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ copy ..\%PYTHONSCRIPTDLLDIR%\release\PythonScript.dll %INST_TEMP_DIR%\release\Fu
8383copy ..\%PYTHONSCRIPTDLLDIR% \release\PythonScript.dll %INST_TEMP_DIR% \release\min\plugins
8484
8585echo Copying Help
86- copy ..\docs\build\htmlhelp\PythonScript.chm %INST_TEMP_DIR% \release\full\plugins\doc\PythonScript
87- copy ..\docs\build\htmlhelp\PythonScript.chm %INST_TEMP_DIR% \release\min\plugins\doc\PythonScript
86+ xcopy /s /q ..\docs\build\singlehtml\*.* %INST_TEMP_DIR% \release\full\plugins\doc\PythonScript
87+ xcopy /s /q ..\docs\build\singlehtml\*.* %INST_TEMP_DIR% \release\min\plugins\doc\PythonScript
8888
8989echo Copying Scripts
9090xcopy /s /q ..\scripts\*.* %INST_TEMP_DIR% \release\full\plugins\PythonScript\scripts
You can’t perform that action at this time.
0 commit comments