Skip to content

Commit

Permalink
LSender 1.16. Public release
Browse files Browse the repository at this point in the history
* 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" />
        ```
  • Loading branch information
3F committed Dec 12, 2021
1 parent ab6f13a commit f4ad519
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.0
1.16.0
35 changes: 34 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,44 @@
- - - - - - - - - - - - - - - - - - - -
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
Expand Down
2 changes: 1 addition & 1 deletion src/LSender.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\common.props" />

<PropertyGroup>
<Version>1.15.0</Version>
<Version>1.16.0</Version>
<BuildInfoVSSBE></BuildInfoVSSBE>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/LSenderVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public struct LSenderVersion
{
public static readonly Version number = new Version(S_NUM_REV);

public const string S_NUM = "1.15.0";
public const string S_NUM = "1.16.0";
public const string S_REV = "0";

public const string S_NUM_REV = S_NUM + "." + S_REV;
Expand Down

0 comments on commit f4ad519

Please sign in to comment.