Skip to content

Commit

Permalink
Updated version number from 1.0.0.0 to 1.0.1.0
Browse files Browse the repository at this point in the history
Fixes include:
Issue #1
Bugfix: stopPing() never gets called because MessageBox.Show is blocking (modal)
Bugfix: Show multiple alerts after stopPing() is called, because outstanding pings are still handled
Bugfix: cricicalErrorShown was not reset on a new ping after a crash
Textual changes: Version number was stored in more places than expected (README.md)
  • Loading branch information
DoogeJ committed Nov 18, 2016
1 parent 1c5875a commit acd309e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Installer/setup.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define use_dotnetfx46

#define MyAppName "NetPing"
#define MyAppVersion "1.0.0.0"
#define MyAppVersion "1.0.1.0"
#define MyAppPublisher "DoogeJ"
#define MyAppURL "https://github.com/DoogeJ/NetPing"
#define MyAppExeName "NetPing.exe"
Expand Down
2 changes: 1 addition & 1 deletion NetPing/NetPing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<MapFileExtensions>true</MapFileExtensions>
<PublisherName>NoxiousPluK</PublisherName>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<ApplicationVersion>1.0.1.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
4 changes: 2 additions & 2 deletions NetPing/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: NeutralResourcesLanguage("en")]

0 comments on commit acd309e

Please sign in to comment.