Update version numbers for new release

This commit is contained in:
DoogeJ
2018-10-22 17:17:02 +02:00
parent 064517894d
commit 3c51d48c4a
4 changed files with 8 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#define use_dotnetfx46 #define use_dotnetfx46
#define MyAppName "SmartHDD" #define MyAppName "SmartHDD"
#define MyAppVersion "1.0.0.1" #define MyAppVersion "1.1.0.0"
#define MyAppPublisher "DoogeJ" #define MyAppPublisher "DoogeJ"
#define MyAppURL "https://github.com/DoogeJ/SmartHDD" #define MyAppURL "https://github.com/DoogeJ/SmartHDD"
#define MyAppExeName "SmartHDD.exe" #define MyAppExeName "SmartHDD.exe"

View File

@@ -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). This section is focussed on development of SmartHDD, in case you want to build your own version(s).
## Environment ## 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. It will most likely build fine on different configurations, but might require some modifications.
## Updating the version number ## Updating the version number

View File

@@ -36,6 +36,9 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*** END ORIGINAL COPYRIGHT NOTICE *** *** END ORIGINAL COPYRIGHT NOTICE ***
Much thanks to:
- Chris Kaczor aka @ckaczor on GitHub
*/ */
namespace SmartHDD namespace SmartHDD
@@ -343,7 +346,7 @@ namespace SmartHDD
} }
WriteFullLine("┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐"); 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("└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘"); WriteFullLine("└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘");
Console.WriteLine(); Console.WriteLine();

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.1")] [assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.0.0.1")] [assembly: AssemblyFileVersion("1.1.0.0")]