Skip to content

Commit

Permalink
public release v1.4
Browse files Browse the repository at this point in the history
    * FIXED: Fixed bug - `An item with the same key has already been added`. Issue #10
    * FIXED: Bug with Meta library: Incorrect default values. Issue #16
             please note, the __cdecl is the default calling convention for our library
             as and for C and C++ programs.

    * FIXED?: Probably fixed bug - `Script errors on package install` Issue #6
    * FIXED?: Probably fixed bug - `non-English system language - syntax error` Issue #7
    * NEW: GUI Configurator with updated ddNS features.
    * NEW: Implemented feature 'Export for platform': [ x86 / x64 / x86 + x64 ] Issue #9
    * NEW: Implemented feature 'Base for ordinals'. Issue #11
           There is also alternative to configure this number - MSBuild property: DllExportOrdinalsBase

    * NEW: The one (1) now is used by default as Base for all ordinals.
           `Mimic ordinal counter (start from 1 instead of 0)` Issue #8

    * CHANGED: The ddNS features now as binary cmdlet `NSBin`. Use `nsbin.bat` if needed.
    * CHANGED: `Set "Inherited = false" in AttributeUsage for DllExportAttribute`. Issue #15
    * OTHER: other possible changes and fixes.
  • Loading branch information
3F committed Oct 5, 2016
1 parent a0aabf7 commit c637152
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.4.0
2 changes: 1 addition & 1 deletion Metadata/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
[assembly: Guid("E0E525D9-49F8-4641-910F-E9D01821AB15")]

//[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.3.0.*")]
[assembly: AssemblyVersion("1.4.0.*")]
2 changes: 1 addition & 1 deletion RGiesecke.DllExport.MSBuild/DllExportVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ namespace RGiesecke.DllExport
// but currently I don't want to change this, because it will be automatically changed if plugin exists (use .version)
internal struct DllExportVersion
{
internal const string Version = "1.3.0";
internal const string Version = "1.4.0";
}
}
2 changes: 1 addition & 1 deletion RGiesecke.DllExport/DllExportVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ namespace RGiesecke.DllExport
// but currently I don't want to change this, because it will be automatically changed if plugin exists (use .version)
internal struct DllExportVersion
{
internal const string Version = "1.3.0";
internal const string Version = "1.4.0";
}
}
25 changes: 23 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
DllExport
____________________
DllExport - github.com/3F/DllExport
- - - - - - - - - - - - - - - - - -

[v1.4]

* FIXED: Fixed bug - `An item with the same key has already been added`. Issue #10
* FIXED: Bug with Meta library: Incorrect default values. Issue #16
please note, the __cdecl is the default calling convention for our library
as and for C and C++ programs.

* FIXED?: Probably fixed bug - `Script errors on package install` Issue #6
* FIXED?: Probably fixed bug - `non-English system language - syntax error` Issue #7
* NEW: GUI Configurator with updated ddNS features.
* NEW: Implemented feature 'Export for platform': [ x86 / x64 / x86 + x64 ] Issue #9
* NEW: Implemented feature 'Base for ordinals'. Issue #11
There is also alternative to configure this number - MSBuild property: DllExportOrdinalsBase

* NEW: The one (1) now is used by default as Base for all ordinals.
`Mimic ordinal counter (start from 1 instead of 0)` Issue #8

* CHANGED: The ddNS features now as binary cmdlet `NSBin`. Use `nsbin.bat` if needed.
* CHANGED: `Set "Inherited = false" in AttributeUsage for DllExportAttribute`. Issue #15
* OTHER: other possible changes and fixes.

[v1.3]

Expand Down
6 changes: 3 additions & 3 deletions tools/DllExport.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>DllExport</id>
<version>1.3.0</version>
<version>1.4.0</version>
<title>.NET DllExport</title>
<authors>github.com/3F/DllExport</authors>
<owners>reg</owners>
Expand All @@ -17,7 +17,7 @@
~~~~~~~~
Alternative to get it:
==========================================
msbuild gnt.core /p:ngpackages="DllExport/1.3.0"
msbuild gnt.core /p:ngpackages="DllExport/1.4.0"
==========================================
* https://github.com/3F/GetNuTool

Expand All @@ -27,6 +27,6 @@
<copyright>Copyright (c) 2009 Robert Giesecke / Copyright (c) 2016 Denis Kuzmin [entry.reg@gmail.com] </copyright>
<references>
<reference file="DllExport.dll" />
</references>
</references>
</metadata>
</package>

0 comments on commit c637152

Please sign in to comment.