diff --git a/.gitignore b/.gitignore index a345939c..b181a8b7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,13 @@ Common/config/local.json license.lic App_Data/ */node_modules -FileConverter/Bin/*.dll -FileConverter/Bin/*.exe -FileConverter/Bin/HtmlFileInternal +FileConverter/bin/*.dll +FileConverter/bin/*.dylib +FileConverter/bin/*.exe +FileConverter/bin/x2t +FileConverter/bin/*.S +FileConverter/bin/font_selection.bin +FileConverter/bin/HtmlFileInternal DocService/npm-debug.log build node_modules \ No newline at end of file diff --git a/run-mac.command b/run-mac.command index 09a5c885..e9b352be 100755 --- a/run-mac.command +++ b/run-mac.command @@ -25,10 +25,10 @@ RunCommand() { } CreateDir "$BASEDIR/App_Data" -CreateDir "$BASEDIR/FileConverter/Bin" -CreateDir "$BASEDIR/FileConverter/Bin/HtmlFileInternal" +CreateDir "$BASEDIR/FileConverter/bin" +CreateDir "$BASEDIR/FileConverter/bin/HtmlFileInternal" -cd "$BASEDIR/FileConverter/Bin" +cd "$BASEDIR/FileConverter/bin" cp -v "../../../core/build/bin/mac/icudtl_dat.S" "." cp -v "../../../core/build/bin/mac/x2t" "." @@ -54,7 +54,7 @@ sed "s/$SEARCH/$REPLACE/g" "../../../core/build/lib/DoctRenderer.config" > "Doct echo $BASEDIR chmod -v +x $BASEDIR/../core/build/bin/AllFontsGen/mac_64 -bash -cv "$BASEDIR/../core/build/bin/AllFontsGen/mac_64 '' '$BASEDIR/../sdkjs/Common/AllFonts.js' '$BASEDIR/../sdkjs/Common/Images' '$BASEDIR/FileConverter/Bin/font_selection.bin'" +bash -cv "$BASEDIR/../core/build/bin/AllFontsGen/mac_64 '' '$BASEDIR/../sdkjs/Common/AllFonts.js' '$BASEDIR/../sdkjs/Common/Images' '$BASEDIR/FileConverter/bin/font_selection.bin'" echo "----------------------------------------" @@ -78,6 +78,6 @@ RunCommand "redis-server /usr/local/etc/redis.conf" RunCommand "export NODE_CONFIG_DIR=$BASEDIR/Common/config && export NODE_ENV=development-mac && cd $BASEDIR/DocService/sources && node server.js" RunCommand "export NODE_CONFIG_DIR=$BASEDIR/Common/config && export NODE_ENV=development-mac && cd $BASEDIR/DocService/sources && node gc.js" -RunCommand "export NODE_CONFIG_DIR=$BASEDIR/Common/config && export NODE_ENV=development-mac && export DYLD_LIBRARY_PATH=../../FileConverter/Bin/ && cd $BASEDIR/FileConverter/sources && node convertermaster.js" +RunCommand "export NODE_CONFIG_DIR=$BASEDIR/Common/config && export NODE_ENV=development-mac && export DYLD_LIBRARY_PATH=../../FileConverter/bin/ && cd $BASEDIR/FileConverter/sources && node convertermaster.js" diff --git a/run.bat b/run.bat index 12f26681..e489657d 100644 --- a/run.bat +++ b/run.bat @@ -25,7 +25,7 @@ copy "..\..\..\core\build\lib\win_32\HtmlFileInternal.exe" ".\HtmlFileInternal" xcopy /s/h/e/k/c/y/q "..\..\..\core\build\cef\win_32" ".\HtmlFileInternal" copy "..\..\..\core\build\bin\windows\x2t32.exe" "." -"..\..\..\core\build\bin\AllFontsGen\windows_32.exe" "%windir%\Fonts" "%~dp0\..\sdkjs\common\AllFonts.js" "%~dp0\..\sdkjs\common\Images" "%~dp0\FileConverter\Bin\font_selection.bin" +"..\..\..\core\build\bin\AllFontsGen\windows_32.exe" "%windir%\Fonts" "%~dp0\..\sdkjs\common\AllFonts.js" "%~dp0\..\sdkjs\common\Images" "%~dp0\FileConverter\bin\font_selection.bin" ECHO. ECHO ----------------------------------------