Skip to content

Commit

Permalink
2.10.0.28
Browse files Browse the repository at this point in the history
 - Fixed progress bar bug (thanks to @Yashil06 for report). (#208)
  • Loading branch information
dragokas committed Mar 2, 2023
1 parent c24f2d3 commit 7560e67
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 8 deletions.
Binary file modified binary/HiJackThis.exe
Binary file not shown.
Binary file modified binary/HiJackThis_dbg.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/HiJackThis-update-test.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.0.26
2.10.0.28
2 changes: 1 addition & 1 deletion src/HiJackThis-update.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.0.26
2.10.0.28
Binary file modified src/HiJackThis.pdb
Binary file not shown.
Binary file modified src/RESOURCE.res
Binary file not shown.
5 changes: 4 additions & 1 deletion src/_ChangeLog_en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Version history:
|||||||| 1. HiJackThis: changelog |||||||||||
===========================================================

[2.10.0.28] - Mar 02, 2023
- Fixed progress bar bug (thanks to @Yashil06 for report).

[2.10.0.26] - Feb 13, 2023
- Fixed system reboot on Windows 11.

Expand Down Expand Up @@ -1663,4 +1666,4 @@ saved and edited in Wordpad.

[v1.00]
* Original release, later added copy to clipboard button

5 changes: 4 additions & 1 deletion src/_ChangeLog_ru.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
|||||||| 1. HiJackThis: список изменений |||||||||||
==================================================================

[2.10.0.28] - 02.03.2023
- Исправлен баг с прогресс-баром (спасибо @Yashil06 за извещение).

[2.10.0.26] - 13.02.2023
- Исправлена перезагрузка системы на Windows 11.

Expand Down Expand Up @@ -1663,4 +1666,4 @@ ProcMan - добавлено сохранение списка модулей,

[v1.00]
* Первый релиз, позднее добавлена кнопка копирования в буфер обмена

2 changes: 1 addition & 1 deletion src/_HijackThis.vbp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Description="Creates a report of non-standard parameters of registry and file sy
CompatibleMode="0"
MajorVer=2
MinorVer=10
RevisionVer=26
RevisionVer=28
AutoIncrementVer=0
ServerSupportFiles=0
VersionCompanyName="Stanislav Polshyn & Trend Micro Inc."
Expand Down
4 changes: 2 additions & 2 deletions src/modMain.bas
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ End Sub
Public Sub SetHashProgressBar(lPercent As Long, Optional sText As String)
On Error GoTo ErrorHandler:

frmMain.shpMD5Progress.Width = (frmMain.ScaleWidth - 500) * (lPercent / 100)
frmMain.shpMD5Progress.Width = frmMain.ScaleWidth * (lPercent / 100)
frmMain.shpMD5Progress.Tag = lPercent

If Len(sText) <> 0 Then
Expand All @@ -2013,7 +2013,7 @@ Public Sub SetHashProgressBar(lPercent As Long, Optional sText As String)

Exit Sub
ErrorHandler:
ErrorMsg Err, "SetHashProgressBar", lPercent
ErrorMsg Err, "SetHashProgressBar", "Percent: " & lPercent, "Form ScaleWidth: " & frmMain.ScaleWidth
If inIDE Then Stop: Resume Next
End Sub

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>2.10.0.26</version>
<version>2.10.0.28</version>
<id>hijackthis</id>
<title>HiJackThis Fork</title>
<authors>Stanislav Polshyn &amp; Trend Micro</authors>
Expand Down

0 comments on commit 7560e67

Please sign in to comment.