Skip to content

Commit 63f0c10

Browse files
authored
version 2.1.61 (#126)
* fixes version number in console (did still show 2.1.5 instead of 2.1.6) * error messages include stacktrace now * release * signed
1 parent 0ce1050 commit 63f0c10

8 files changed

Lines changed: 15 additions & 7 deletions

File tree

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## NEWS
22

3+
### 2024-05-05 release of v.2.1.61 was completed
4+
- adds better support for location errors (stacktrace)
5+
- displays version number correctly
6+
37
### 2024-01-20 release of v.2.1.6 was completed
48
- adds support for some more protocols (MariaDB, SQLServer, SMB Server, .)
59
- you can now copy IPs into the clipboard by pressing Ctrl+C

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It's basically a fail2ban for windows. Its goals are also mainly what we love ab
55
- *no-initial-fucking-around-with-scripts-or-config-files*
66
- *install-and-forget*
77

8-
You can download it [here](https://github.com/devnulli/EvlWatcher/raw/master/Versions/v2/EvlWatcher-v2.1.6-setup.exe) ( v2.1.6 - January 2024 ) .
8+
You can download it [here](https://github.com/devnulli/EvlWatcher/raw/master/Versions/v2/EvlWatcher-v2.1.61-setup.exe) ( v2.1.61 - February 2024 ) .
99

1010
## Also, we love issues!
1111

Source/EvlWatcher/EvlWatcher/Logging/DefaultLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void Dump(string message, SeverityLevel severity)
5151

5252
public void Dump(Exception e, SeverityLevel level = SeverityLevel.Error)
5353
{
54-
Dump(e.Message, level);
54+
Dump(level == SeverityLevel.Error ? $"{e.Message} {e.StackTrace}" : e.Message, level);
5555
}
5656
/// <summary>
5757
/// Returns Console History, max count is defined in ConsoleHistoryMaxCount

Source/EvlWatcher/EvlWatcher/NSIS/make.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Name "EvlWatcher"
22

33
; The file to write
44
Icon EvlWatcher.ico
5-
OutFile "EvlWatcher-v2.1.6-setup.exe"
5+
OutFile "EvlWatcher-v2.1.61-setup.exe"
66

77
; The default installation directory
88
InstallDir $PROGRAMFILES\EvlWatcher

Source/EvlWatcher/EvlWatcher/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// Build Number
2929
// Revision
3030
//
31-
[assembly: AssemblyVersion("2.1.6.0")]
32-
[assembly: AssemblyFileVersion("2.1.6.0")]
31+
[assembly: AssemblyVersion("2.1.6.1")]
32+
[assembly: AssemblyFileVersion("2.1.6.1")]

Source/EvlWatcherConsole/EvlWatcherConsole/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
5050
// übernehmen, indem Sie "*" eingeben:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("2.1.6.0")]
53-
[assembly: AssemblyFileVersion("2.1.6.0")]
52+
[assembly: AssemblyVersion("2.1.6.1")]
53+
[assembly: AssemblyFileVersion("2.1.6.1")]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
### 2024-05-05 release of v.2.1.61 was completed
3+
- adds better support for location errors (stacktrace)
4+
- displays version number correctly
296 KB
Binary file not shown.

0 commit comments

Comments
 (0)