diff --git a/Installer/setup.iss b/Installer/setup.iss index cb1128e..5153456 100644 --- a/Installer/setup.iss +++ b/Installer/setup.iss @@ -1,7 +1,7 @@ #define use_dotnetfx46 #define MyAppName "SmartHDD" -#define MyAppVersion "1.0.0.1" +#define MyAppVersion "1.1.0.0" #define MyAppPublisher "DoogeJ" #define MyAppURL "https://github.com/DoogeJ/SmartHDD" #define MyAppExeName "SmartHDD.exe" diff --git a/README.md b/README.md index e3f8225..674149a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Please use the GitHub issue-system for bugs or feature requests: [https://github This section is focussed on development of SmartHDD, in case you want to build your own version(s). ## Environment -This application was written using Visual Studio 2015 and .NET Framework 4.5.2 on Windows 10 1511. +This application was written using Visual Studio 2017 and .NET Framework 4.5.2 on Windows 10 1803. It will most likely build fine on different configurations, but might require some modifications. ## Updating the version number diff --git a/SmartHDD/Program.cs b/SmartHDD/Program.cs index 530cb9d..9c624ce 100644 --- a/SmartHDD/Program.cs +++ b/SmartHDD/Program.cs @@ -36,6 +36,9 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *** END ORIGINAL COPYRIGHT NOTICE *** +Much thanks to: +- Chris Kaczor aka @ckaczor on GitHub + */ namespace SmartHDD @@ -343,7 +346,7 @@ public static void Main() } WriteFullLine("┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐"); - WriteFullLine("│ SmartHDD by DoogeJ - https://github.com/DoogeJ/SmartHDD - (c) 2016 Jaap-Willem Dooge, 2013 Llewellyn Kruger version 1.0.0.1 │"); + WriteFullLine("│ SmartHDD by DoogeJ - https://github.com/DoogeJ/SmartHDD - (c) 2016 Jaap-Willem Dooge, 2013 Llewellyn Kruger version 1.1.0.0 │"); WriteFullLine("└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘"); Console.WriteLine(); diff --git a/SmartHDD/Properties/AssemblyInfo.cs b/SmartHDD/Properties/AssemblyInfo.cs index a8300c4..c7a36ba 100644 --- a/SmartHDD/Properties/AssemblyInfo.cs +++ b/SmartHDD/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // 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.1")] -[assembly: AssemblyFileVersion("1.0.0.1")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")]