diff options
author | emkael <emkael@tlen.pl> | 2017-07-30 03:51:50 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-07-30 13:47:48 +0200 |
commit | 99fc1b1d2668b84b6dd675d856b24f7bbb86ec7b (patch) | |
tree | 10c2ea74732b5c1bc947c5dcab9d924c73bc5544 | |
parent | 31d54d28ef5f19e114427e477097416ef2b8aefe (diff) |
Version information and changelog bumped (including assembly info)
-rw-r--r-- | Aktywator.txt | 5 | ||||
-rw-r--r-- | Aktywator/MainForm.cs | 4 | ||||
-rw-r--r-- | Aktywator/Properties/AssemblyInfo.cs | 6 |
3 files changed, 10 insertions, 5 deletions
diff --git a/Aktywator.txt b/Aktywator.txt index b88ba1a..123fee7 100644 --- a/Aktywator.txt +++ b/Aktywator.txt @@ -2,6 +2,11 @@ - nie działa oddzielne maksowanie każdego sektora --------------------- +Aktywator 1.1.0 (beta) +30.07.2017 [mkl] + * wczytywanie nazwisk z plików RRBridge + +--------------------- Aktywator 1.0.7 13.03.2017 [mkl] * identyfikacja pliku PBN (po nazwie Event oraz pikach pierwszej ręki) przy wczytywaniu rozkładów do BWSa diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs index c3119d8..a6b1bcd 100644 --- a/Aktywator/MainForm.cs +++ b/Aktywator/MainForm.cs @@ -11,8 +11,8 @@ namespace Aktywator { public partial class MainForm : Form { - public string version = "1.0.7"; - public string date = "28.06.2017"; + public string version = "1.1.0-beta"; + public string date = "30.07.2017"; private Bws bws; private Tournament tournament; diff --git a/Aktywator/Properties/AssemblyInfo.cs b/Aktywator/Properties/AssemblyInfo.cs index df9c1fc..b3ba87f 100644 --- a/Aktywator/Properties/AssemblyInfo.cs +++ b/Aktywator/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Michał Zimniewicz")] [assembly: AssemblyProduct("Aktywator")] -[assembly: AssemblyCopyright("Copyright © 2011-2016 Michał Zimniewicz")] +[assembly: AssemblyCopyright("Copyright © 2011-2017 Michał Zimniewicz")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 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.6.0")] -[assembly: AssemblyFileVersion("1.0.6.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] |