Skip to content

Commit

Permalink
Bump version + updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
lordmulder committed Aug 16, 2015
1 parent cfb1b6a commit b54d2ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Contrib/StdUtils/src/Resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// VERSION
#define DLL_VERSION_MAJ_LO 1
#define DLL_VERSION_MIN_HI 0
#define DLL_VERSION_MIN_LO 6
#define DLL_VERSION_PATCHL 9
#define DLL_VERSION_MIN_LO 7
#define DLL_VERSION_PATCHL 0

// VERSION STRING
#define DLL_VERSION_STR_F1(X) #X
Expand Down
8 changes: 6 additions & 2 deletions Docs/StdUtils/StdUtils.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ <h1><u>StdUtils - Swiss Army Knife for NSIS</u></h1>
!define StdUtils.VerifyOSBuildNo #Compare *real* operating system to an expected build number
!define StdUtils.HashText #Compute hash from text string (CRC32, MD5, SHA1/2/3, BLAKE2)
!define StdUtils.HashFile #Compute hash from file (CRC32, MD5, SHA1/2/3, BLAKE2)
!define StdUtils.TimerCreate #Create a new event-timer that will be triggered periodically
!define StdUtils.TimerDestroy #Destroy a running timer created with TimerCreate()
!define StdUtils.GetLibVersion #Get the current StdUtils library version (for debugging)
!define StdUtils.SetVerbose #Enable or disable "verbose" mode (for debugging)</pre>

Expand Down Expand Up @@ -783,7 +785,7 @@ <h1><u>StdUtils - Swiss Army Knife for NSIS</u></h1>
<tr><td>Windows 7</td><td>Windows Server 2008 R2</td><td><tt>6.1</tt></td><td><tt>7600</tt> - <tt>7601</tt></td></tr>
<tr><td>Windows 8</td><td>Windows Server 2012</td><td><tt>6.2</tt></td><td><tt>9200</tt></td></tr>
<tr><td>Windows 8.1</td><td>Windows Server 2012 R2</td><td><tt>6.3</tt></td><td><tt>9600</tt></td></tr>
<tr><td>Windows 10</td><td>?</td><td><tt>10.0</tt></td><td><tt>10130(?)</tt></td></tr>
<tr><td>Windows 10</td><td>Windows Server 2016</td><td><tt>10.0</tt></td><td><tt>10240</tt></td></tr>
</table>

<br><br>
Expand Down Expand Up @@ -1019,14 +1021,16 @@ <h1><u>StdUtils - Swiss Army Knife for NSIS</u></h1>
<a name="53c38996"></a><h1>Version History</h1>

<ul>
<li><b>Version 1.07, not yet released</b>
<li><b>Version 1.07, released 2015-08-16</b>
<ul>
<li>Added new functions <tt>HashText</tt> and <tt>HashFile</tt>, which can be used to compute the cryptographic hash of the given file or string
<li>Added new functions <tt>ValidFileName</tt> and <tt>ValidPathSpec</tt>, which can be used to test if a string is a valid file name or a valid full path
<li>Added new function <tt>AppendToFile</tt>, which can be used to <i>append</i> the contents of one file to another (existing) file
<li>Added new function <tt>TestParameter</tt>, which can be used to test whether a specific parameter is present on the command-line
<li>Added new functions <tt>ParameterCnt</tt> and <tt>ParameterStr</tt>, which can be used to access the "raw" command-line tokens (like <tt>argv[i]</tt>)
<li>Added new functions <tt>TimerCreate</tt> and <tt>TimerDestroy</tt>, which can be used to create a new window timer or stop an existing one.
</ul>
<br>
<li><b>Version 1.06, released 2015-06-14</b>
<ul>
<li>Added new workaround to make the <tt>GetRealOSVersion</tt>, <tt>GetRealOSName</tt> and <tt>VerifyOSVersion</tt> functions work correctly on Windows 10<br>
Expand Down
Binary file modified Plugins/Release_ANSI/StdUtils.dll
Binary file not shown.
Binary file modified Plugins/Release_Tiny/StdUtils.dll
Binary file not shown.
Binary file modified Plugins/Release_Unicode/StdUtils.dll
Binary file not shown.

0 comments on commit b54d2ad

Please sign in to comment.