Skip to content

Commit

Permalink
*RELEASE 2.3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
ermig1979 committed Mar 3, 2020
1 parent e27f258 commit 286bf84
Show file tree
Hide file tree
Showing 11 changed files with 1,025 additions and 986 deletions.
96 changes: 48 additions & 48 deletions cmd/MakeBin.cmd
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
@echo off

set RAR_EXE="C:\Program Files\WinRAR\WinRar.exe"
if not exist %RAR_EXE% (
echo Execution file "%RAR_EXE%" is to exists!
exit 1
)

set ROOT_DIR=..
set RELEASE_DIR=%ROOT_DIR%\bin\Release
set VERSION_FILE=%ROOT_DIR%\src\AntiDupl\version.txt

if not exist %RELEASE_DIR% (
echo Can't find "%RELEASE_DIR%" directory!
exit 0
)

if not exist %VERSION_FILE% (
echo Can't find "%VERSION_FILE%" file!
exit 0
)

set VERSION=
for /f "delims=" %%i in ('type %VERSION_FILE%') do set VERSION=%%i

set OUT_DIR=%ROOT_DIR%\out\bin
set TMP_DIR=%ROOT_DIR%\out\bin\AntiDupl.NET-%VERSION%

if not exist %OUT_DIR% mkdir %OUT_DIR%

if exist %TMP_DIR% (
echo Delete old files:
erase %TMP_DIR%\* /q /s /f
rmdir %TMP_DIR% /q /s
)

if not exist %TMP_DIR% mkdir %TMP_DIR%

xcopy %RELEASE_DIR%\data\* %TMP_DIR%\data\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl.NET.exe %TMP_DIR%\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl32.dll %TMP_DIR%\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl64.dll %TMP_DIR%\* /y /i /s

erase %TMP_DIR%\data\resources\strings\English.xml /q /s /f
erase %TMP_DIR%\data\resources\strings\Russian.xml /q /s /f

::%RAR_EXE% a -ep1 -s -m5 -r -sfx %OUT_DIR%\AntiDupl.NET-%VERSION%.exe %TMP_DIR%
%RAR_EXE% a -afzip -ep1 -r %OUT_DIR%\AntiDupl.NET-%VERSION%-alpha-v4.zip %TMP_DIR%
@echo off

set RAR_EXE="C:\Program Files\WinRAR\WinRar.exe"
if not exist %RAR_EXE% (
echo Execution file "%RAR_EXE%" is to exists!
exit 1
)

set ROOT_DIR=..
set RELEASE_DIR=%ROOT_DIR%\bin\Release
set VERSION_FILE=%ROOT_DIR%\src\AntiDupl\version.txt

if not exist %RELEASE_DIR% (
echo Can't find "%RELEASE_DIR%" directory!
exit 0
)

if not exist %VERSION_FILE% (
echo Can't find "%VERSION_FILE%" file!
exit 0
)

set VERSION=
for /f "delims=" %%i in ('type %VERSION_FILE%') do set VERSION=%%i

set OUT_DIR=%ROOT_DIR%\out\bin
set TMP_DIR=%ROOT_DIR%\out\bin\AntiDupl.NET-%VERSION%

if not exist %OUT_DIR% mkdir %OUT_DIR%

if exist %TMP_DIR% (
echo Delete old files:
erase %TMP_DIR%\* /q /s /f
rmdir %TMP_DIR% /q /s
)

if not exist %TMP_DIR% mkdir %TMP_DIR%

xcopy %RELEASE_DIR%\data\* %TMP_DIR%\data\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl.NET.exe %TMP_DIR%\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl32.dll %TMP_DIR%\* /y /i /s
xcopy %RELEASE_DIR%\AntiDupl64.dll %TMP_DIR%\* /y /i /s

erase %TMP_DIR%\data\resources\strings\English.xml /q /s /f
erase %TMP_DIR%\data\resources\strings\Russian.xml /q /s /f

%RAR_EXE% a -ep1 -s -m5 -r -sfx %OUT_DIR%\AntiDupl.NET-%VERSION%.exe %TMP_DIR%
::%RAR_EXE% a -afzip -ep1 -r %OUT_DIR%\AntiDupl.NET-%VERSION%.zip %TMP_DIR%
2 changes: 1 addition & 1 deletion docs/data/help/english/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ <h4>Advanced options</h4>
</p></li>
<li><p align="justify">
<b>Maximal count of results</b> - this parameter controls the maximum number of results that a program can be found in one search.
For example, if during the search program will be achieved this the number of results, the search will be automatically terminated.
For example, if during the search program will be achieved this number of results, the search will be automatically terminated.
This restriction is useful to save program resources allocated to the graphical representation of the results list.
By default, this value is 100000.
</p></li>
Expand Down
352 changes: 178 additions & 174 deletions docs/english/download.html

Large diffs are not rendered by default.

Loading

0 comments on commit 286bf84

Please sign in to comment.