Skip to content

Commit

Permalink
Public release. regXwild 1.2
Browse files Browse the repository at this point in the history
* NEW: MultiByte support.
       Now you can use modules with MultiByte characters.

       For C++ projects it will be automatically selected
       according to the actual project configuration.

       For .NET, you need to override related `CharacterSet` property.

* NEW: .NET Core based projects support through Conari and related:
       Including .NET Standard targeting;

       Just install our modern NuGet packages;
       https://www.nuget.org/packages/regXwild

* CHANGED: Modules with MultiByte characters for .NET projects by default.
           You can replace this by the changing $(CharacterSet) msbuild property:
           ```
           <CharacterSet>Unicode</CharacterSet>
           ```

* CHANGED: Added the following tools to packages for related build processes.

           * tools\gnt.bat - https://github.com/3F/GetNuTool
           * tools\hMSBuild.bat - https://github.com/3F/hMSBuild

* CHANGED: `algo` and `snet` testers can be found inside packages
            for each $(Platform)-$(CharacterSet)

* CHANGED: Conari will no longer be distributed together with regXwild.
           https://github.com/3F/Conari

           Please consider to use it separately. Conari nuget packages:
           https://www.nuget.org/packages/Conari/

           (recommended due to caching of 0x29 opcodes and other related optimization)

* NOTE: Offcial releases can be also found through GitHub Releases:
        https://github.com/3F/regXwild/releases
  • Loading branch information
3F committed Feb 10, 2020
1 parent c7d4e81 commit 089ec48
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
48 changes: 45 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,49 @@
- - - - -
regXwild
_ _ _ _ _
- - - - - - - - - - - - - - - - - - - - -
regXwild - https://github.com/3F/regXwild
- - - - - - - - - - - - - - - - - - - - -

[v1.2] 2020.02.10

* NEW: MultiByte support.
Now you can use modules with MultiByte characters.

For C++ projects it will be automatically selected
according to the actual project configuration.

For .NET, you need to override related `CharacterSet` property.

* NEW: .NET Core based projects support through Conari and related:
Including .NET Standard targeting;

Just install our modern NuGet packages;
https://www.nuget.org/packages/regXwild

* CHANGED: Modules with MultiByte characters for .NET projects by default.
You can replace this by the changing $(CharacterSet) msbuild property:
```
<CharacterSet>Unicode</CharacterSet>
```

* CHANGED: Added the following tools to packages for related build processes.

* tools\gnt.bat - https://github.com/3F/GetNuTool
* tools\hMSBuild.bat - https://github.com/3F/hMSBuild

* CHANGED: `algo` and `snet` testers can be found inside packages
for each $(Platform)-$(CharacterSet)

* CHANGED: Conari will no longer be distributed together with regXwild.
https://github.com/3F/Conari

Please consider to use it separately. Conari nuget packages:
https://www.nuget.org/packages/Conari/

(recommended due to caching of 0x29 opcodes and other related optimization)

* NOTE: Offcial releases can be also found through GitHub Releases:
https://github.com/3F/regXwild/releases


[v1.1]

CHANGED: Updated API:
Expand Down
4 changes: 2 additions & 2 deletions regXwild.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>regXwild</id>
<version>1.1.0</version>
<version>1.2.0</version>
<title>[ regXwild ] Fast advanced wildcards</title>
<authors>github.com/3F/regXwild</authors>
<license type="file">LICENSE</license>
Expand Down Expand Up @@ -103,7 +103,7 @@
~~~~~~~~
Get it via GetNuTool:
===================================
gnt /p:ngpackages="regXwild/1.1.0"
gnt /p:ngpackages="regXwild/1.2.0"
===================================
* https://github.com/3F/GetNuTool

Expand Down
2 changes: 1 addition & 1 deletion regXwild/regXwildAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace net { namespace r_eg { namespace regXwild
REGXWILD_API const TCHAR* versionString()
{
// Please use '.version' file. It will be automatically updated by vssbe script.
return /*vsSBE*/_T("1.1.0"); //TODO: additional structure etc. of version data.
return /*vsSBE*/_T("1.2.0"); //TODO: additional structure etc. of version data.
}

}}}

0 comments on commit 089ec48

Please sign in to comment.