From e72f7999e3ae47b582a76c9b04e3f9b878c23813 Mon Sep 17 00:00:00 2001 From: Just2good Date: Tue, 16 Jul 2019 21:00:35 -0700 Subject: [PATCH] 1.9.7 --- App.xaml.cs | 4 ++-- MainWindow.xaml.cs | 2 +- README.md | 10 +++++++++- Utilities/Version.cs | 2 +- Version.cs | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/App.xaml.cs b/App.xaml.cs index e695d7b..e877cc3 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -11,14 +11,14 @@ public partial class App : Application { private void AutoUpdater(object sender, StartupEventArgs e) { - string currentVersion = Utilities.Version.version; + string currentVersion = Version.version; string version; using (WebClient client = new WebClient()) { try { - string htmlCode = client.DownloadString("https://raw.githubusercontent.com/Just2Good/TFT-Overlay/master/Utilities/Version.cs"); + string htmlCode = client.DownloadString("https://raw.githubusercontent.com/Just2Good/TFT-Overlay/master/Version.cs"); int versionFind = htmlCode.IndexOf("public static string version = "); version = htmlCode.Substring(versionFind + 32, 5); if (currentVersion != version && Settings.Default.AutoUpdate) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index ea9c7ff..e423407 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -62,7 +62,7 @@ private void MenuItem_Click(object sender, RoutedEventArgs e) private void MenuItem_Click_About(object sender, RoutedEventArgs e) { - MessageBox.Show("TFT Information Overlay V" + CurrentVersion + " by J2GKaze/Jinsoku#4019\n\nDM me on Discord if you have any questions\n\nLast Updated: July 10th, 2019 @ 7:45PM PST", "About"); + MessageBox.Show("TFT Information Overlay V" + CurrentVersion + " by J2GKaze/Jinsoku#4019\n\nDM me on Discord if you have any questions\n\nLast Updated: July 16th, 2019 @ 8:55PM PST", "About"); } private void MenuItem_Click_Credits(object sender, RoutedEventArgs e) diff --git a/README.md b/README.md index 62a80b3..70b1406 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ `7.7.2019 @ 9:20PM PST: Apologies for the slow updates, was pretty much vacation week. Should ramp up again soon.` `7.14.2019 @ 2:56PM PST: Trying to add/fix multiple things at once seems to be slowing things down a bit. Once I finish everything I'm working on, I'll most likely stick to working on something 1 at a time. Also for people working on Localization, there are more strings you can copy from ItemStrings.xaml. + +`7.16.2019 @ 8:55PM PST: Going to be slow for just a tiny bit longer, then I can spend hours coding again. Remember to DM me on discord or post an issue here with any feedback you may have. ## How to use: - [Download TFT Overlay](https://github.com/Just2good/TFT-Overlay/releases/) @@ -20,8 +22,14 @@ - [Click Here for instructions](https://github.com/Just2good/TFT-Overlay/blob/master/Localization.md) ## Version History +- **7.16.2019** + - [1.9.7](https://github.com/Just2good/TFT-Overlay/releases/tag/V1.9.7) + - Updated for 9.14 (ItemStrings and en-US only) + - Localization: SL added, PL was updated to include origins/classes + - Icon Opacity in context menu (Changes opacity of item builder only) + - **7.10.2019** - - [1.9.5](https://github.com/Just2good/TFT-Overlay/releases/tag/V1.9.1) + - [1.9.5](https://github.com/Just2good/TFT-Overlay/releases/tag/V1.9.5) - Added Item Builder by narcolic#6374 - Added de-DE - Moved Context Bar and Opacity Slider for Multi-Tab functionality diff --git a/Utilities/Version.cs b/Utilities/Version.cs index 2af7650..e5b8c06 100644 --- a/Utilities/Version.cs +++ b/Utilities/Version.cs @@ -2,6 +2,6 @@ { class Version { - public static string version = "1.9.5"; + public static string version = "1.9.7"; } } diff --git a/Version.cs b/Version.cs index 66aa20c..4299530 100644 --- a/Version.cs +++ b/Version.cs @@ -2,6 +2,6 @@ { class Version { - public static string version = "1.9.5"; + public static string version = "1.9.7"; } }