-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
56 lines (38 loc) · 2.23 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
- - - - - - - - - - - - - - - - - - - -
LSender - https://github.com/3F/LSender
- - - - - - - - - - - - - - - - - - - -
[1.16] 2021.12.12
* FIXED: Fixed possible NullReferenceException when lambda, ~Anonymously Hosted DynamicMethods.
* NEW: Improved vector implementation which should be twice as fast as the original StackTrace instancing.
Note the following,
Actually it could be implemented even faster because only the vector matters in our case.
This however is not trivial task due to some CLR protections such as
ECall methods must be packaged into a system module when calling GetStackFramesInternal
which in turn requires StackFrameHelper instance.
That's why it's still wrapped inside StackFrameHelper class.
* CHANGED: Added LSR_FEATURE_S_VECTOR preprocessor directive to completely disable vectors
if it is not planned to use.
* CHANGED: New project structure for distribution using source code
which makes it easier to split the repeater within the domain.
For example,
```
<PropertyGroup>
<LSenderExtIncSrc>..\LSender\src\</LSenderExtIncSrc>
<DefineConstants>LSR_FEATURE_S_VECTOR;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<Import Project="$(LSenderExtIncSrc)src.targets" />
```
[1.15] 2019.10.21
* NEW: Tracking via vector field (Vinf) inside MsgArgs.
* NEW: +`bool MsgArgs.At(params string[] map)`: Are there any suitable directions in the vector.
* NEW: +`bool MsgArgs.At(string name)`: Is there a suitable assembly in the vector.
* CHANGED: `Message` sealed class has been renamed to `MsgArgs`.
[1.14] 2019.09.23
* First public release of the LSender project.
Ascetic aggregative repeater for loggers etc.
https://github.com/3F/LSender
Previous changes can be found in:
https://github.com/3F/vsSolutionBuildEvent
https://github.com/3F/MvsSln
https://github.com/3F/Conari
The number was based on latest changes for LSender part from vsSolutionBuildEvent project.