Skip to content

Commit

Permalink
Merge pull request #7 from RyadaProductions/master
Browse files Browse the repository at this point in the history
Improve folder selection UX, and remove migration backup
  • Loading branch information
RyadaProductions committed Jul 3, 2020
2 parents 2c29dea + 4d6e676 commit c5b3619
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 314 deletions.
4 changes: 4 additions & 0 deletions LeagueLocaleLauncher/LeagueLocaleLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ public LeagueLocaleLauncher()

if (!File.Exists(Config.Loaded.LeagueClientPath))
{
MessageBox.Show("Could not determine where League of Legends is installed. Please select the League of Legends folder.");

// League registry location is still invalid, manually setting path
using (var folderBrowserDialog = new FolderBrowserDialog())
{
folderBrowserDialog.Description = "Select the League of Legends folder";
folderBrowserDialog.ShowNewFolderButton = false;
var result = folderBrowserDialog.ShowDialog();

if (result == DialogResult.OK && !string.IsNullOrWhiteSpace(folderBrowserDialog.SelectedPath))
Expand Down

This file was deleted.

162 changes: 0 additions & 162 deletions MigrationBackup/ed7507c2/LeagueLocaleLauncher/NuGetUpgradeLog.html

This file was deleted.

4 changes: 0 additions & 4 deletions MigrationBackup/ed7507c2/LeagueLocaleLauncher/packages.config

This file was deleted.

0 comments on commit c5b3619

Please sign in to comment.