Compare commits

...

1 Commits

Author SHA1 Message Date
Andy
7a33c02497 2023.12.15.0
Fix 'GetCurrentMaxVer' bug
2023-12-14 23:51:35 +03:00
4 changed files with 8 additions and 7 deletions

View File

@@ -1,9 +1,10 @@
# 2023.12.14.1
# 2023.12.15.0
*2023-12-14*
*2023-12-15*
- Fixed
- Twitter: some twitter profiles don't download completely
- Minor bugs
# 2023.12.14.0

View File

@@ -23,7 +23,7 @@ Namespace [Shared]
Next
End If
End With
If versions.Count > 0 Then Return versions.LastOrDefault
If versions.Count > 0 Then Return versions.Max
End If
Catch
End Try

View File

@@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2023.12.7.0")>
<Assembly: AssemblyFileVersion("2023.12.7.0")>
<Assembly: AssemblyVersion("2023.12.15.0")>
<Assembly: AssemblyFileVersion("2023.12.15.0")>
<Assembly: NeutralResourcesLanguage("en")>

View File

@@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2023.12.14.1")>
<Assembly: AssemblyFileVersion("2023.12.14.1")>
<Assembly: AssemblyVersion("2023.12.15.0")>
<Assembly: AssemblyFileVersion("2023.12.15.0")>
<Assembly: NeutralResourcesLanguage("en")>