Skip to content

Commit

Permalink
2022.9.8.1
Browse files Browse the repository at this point in the history
Fixed unexpected memory leak when using the 'Feed' form
  • Loading branch information
AAndyProgram committed Sep 8, 2022
1 parent 02e8a15 commit 86771ee
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 30 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2022.9.8.1

*2022-09-08*

- Fixed
- Unexpected memory leak when using the 'Feed' form

# 2022.9.8.0

*2022-09-08*
Expand Down
40 changes: 19 additions & 21 deletions SCrawler/Download/FeedMedia.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions SCrawler/Download/FeedMedia.resx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,4 @@
AAAL
</value>
</data>
<metadata name="TT_MAIN.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>157, 17</value>
</metadata>
</root>
5 changes: 1 addition & 4 deletions SCrawler/Download/FeedMedia.vb
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Namespace DownloadObjects
End If

LBL_INFO.Text = info
TT_MAIN.SetToolTip(LBL_INFO, Information)
'TT_MAIN.SetToolTip(LBL_INFO, Information)
s = New Size(Width, h + TP_MAIN.RowStyles(0).Height + PaddingE.GetOf({TP_MAIN}).Vertical(2))
Size = s
MinimumSize = s
Expand All @@ -158,9 +158,6 @@ Namespace DownloadObjects
Private Sub FeedImage_Disposed(sender As Object, e As EventArgs) Handles Me.Disposed
If Not MyImage Is Nothing Then MyImage.Dispose()
If Not MyPicture Is Nothing Then MyPicture.Dispose()
GC.SuppressFinalize(Me)
GC.Collect()
GC.WaitForFullGCComplete()
End Sub
#End Region
#Region "LBL"
Expand Down
4 changes: 2 additions & 2 deletions SCrawler/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("2022.9.8.0")>
<Assembly: AssemblyFileVersion("2022.9.8.0")>
<Assembly: AssemblyVersion("2022.9.8.1")>
<Assembly: AssemblyFileVersion("2022.9.8.1")>
<Assembly: NeutralResourcesLanguage("en")>

0 comments on commit 86771ee

Please sign in to comment.