Skip to content

Commit

Permalink
1.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Just2good committed Jul 17, 2019
1 parent 1c46e4b commit e72f799
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Utilities/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
class Version
{
public static string version = "1.9.5";
public static string version = "1.9.7";
}
}
2 changes: 1 addition & 1 deletion Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
class Version
{
public static string version = "1.9.5";
public static string version = "1.9.7";
}
}

0 comments on commit e72f799

Please sign in to comment.