Skip to content

Commit 63ba0d7

Browse files
committed
*fix bug in MakeBin.cmd script; fix small bug in Options Window.
1 parent db7b69a commit 63ba0d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cmd/MakeBin.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ rmdir %TMP_DIR% /q /s
3737
if not exist %TMP_DIR% mkdir %TMP_DIR%
3838

3939
xcopy %RELEASE_DIR%\data\* %TMP_DIR%\data\* /y /i /s
40-
xcopy %RELEASE_DIR%\AntiDupl.NET.exe %TMP_DIR%\* /y /i /s
41-
xcopy %RELEASE_DIR%\AntiDupl32.dll %TMP_DIR%\* /y /i /s
42-
xcopy %RELEASE_DIR%\AntiDupl64.dll %TMP_DIR%\* /y /i /s
40+
xcopy %RELEASE_DIR%\*.exe %TMP_DIR%\* /y /i
41+
xcopy %RELEASE_DIR%\*.dll %TMP_DIR%\* /y /i
42+
xcopy %RELEASE_DIR%\AntiDupl.NET.runtimeconfig.json %TMP_DIR%\* /y /i
4343

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

src/AntiDupl/AntiDupl.NET/Form/CoreOptionsForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ private void InitilizeSearchTabPage()
292292
m_searchTabPage.Controls.Add(searchTableLayoutPanel);
293293

294294
m_searchFileTypeGroupBox = new GroupBox();
295-
m_searchFileTypeGroupBox.Size = new System.Drawing.Size(200, 140);
295+
m_searchFileTypeGroupBox.Size = new System.Drawing.Size(200, 160);
296296
searchTableLayoutPanel.Controls.Add(m_searchFileTypeGroupBox, 0, 0);
297297

298298
TableLayoutPanel searchFileTypeTableLayoutPanel = InitFactory.Layout.Create(3, 5, 5);

0 commit comments

Comments
 (0)