2.3.0.0
This commit is contained in:
parent
bba05e7ba9
commit
7c5dd5f745
@ -227,6 +227,7 @@ Public Class ClassInit
|
||||
ElseIf oMode.StartsWith("NOMATCH_INFO") Then
|
||||
Try
|
||||
Dim oResult = oMode.Replace("NOMATCH_INFO=", "")
|
||||
Logger.Info($"NOMATCH_INFO: {oResult}")
|
||||
NOMATCH_INFO = CBool(oResult)
|
||||
Catch ex As Exception
|
||||
NOMATCH_INFO = False
|
||||
@ -234,11 +235,21 @@ Public Class ClassInit
|
||||
ElseIf oMode.StartsWith("HotkeySearchKey") Then
|
||||
Try
|
||||
Dim oResult = oMode.Replace("HotkeySearchKey=", "")
|
||||
Logger.Info($"HotkeySearchKey: {oResult}")
|
||||
HotkeySearchKey = oResult
|
||||
HotkeySearchKey_via_Server = True
|
||||
Catch ex As Exception
|
||||
HotkeySearchKey = "d"
|
||||
End Try
|
||||
ElseIf oMode.StartsWith("NotifyMode") Then
|
||||
Try
|
||||
Dim oResult = oMode.Replace("NotifyMode=", "")
|
||||
Logger.Info($"NotifyMode: {oResult}")
|
||||
NOTIFY_MODE = oResult
|
||||
|
||||
Catch ex As Exception
|
||||
|
||||
End Try
|
||||
Else
|
||||
Logger.Info($"Wrong oMode: {oMode}")
|
||||
End If
|
||||
|
||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.2.4.0")>
|
||||
<Assembly: AssemblyVersion("2.3.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
|
||||
@ -85,4 +85,5 @@ Module modCurrent
|
||||
Public WORKING_MODE As String = ""
|
||||
Public BASIC_CONF_VISIBLE As Boolean = True
|
||||
Public NOMATCH_INFO As Boolean = False
|
||||
Public NOTIFY_MODE As String = "NotifyIcon"
|
||||
End Module
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user