Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KilLo445 committed Oct 15, 2022
1 parent 7643517 commit d01b566
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion extract-xiso-gui/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
ContentRendered="Window_ContentRendered"
ResizeMode="CanResize"
ResizeMode="CanMinimize"
Background="White"
AllowsTransparency="False"
Title="extract-xiso-gui" Height="450" Width="800">
Expand Down
10 changes: 3 additions & 7 deletions extract-xiso-gui/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace extract_xiso_gui
{
public partial class MainWindow : Window
{
string guiVersion = "1.0.1";
string guiVersion = "1.0.2";
string onlineVerLink = "https://pastebin.com/raw/nbvmxK7D";
string updateDL = "https://github.com/KilLo445/extract-xiso-gui/releases/latest";

Expand Down Expand Up @@ -190,12 +190,6 @@ private void GoBTN_Click(object sender, RoutedEventArgs e)
}
}

if (comboBoxSelection == null)
{
MessageBox.Show("Please select the mode you would like to run.", "", MessageBoxButton.OK, MessageBoxImage.Exclamation);
return;
}

if (comboBoxSelection != null)
{
if (comboBoxSelection == "List")
Expand Down Expand Up @@ -233,6 +227,7 @@ private void GoBTN_Click(object sender, RoutedEventArgs e)
return;
}
}

if (comboBoxSelection == "Extract")
{
xisoMode = "x";
Expand Down Expand Up @@ -332,6 +327,7 @@ private void DownloadXISOComplete(object sender, AsyncCompletedEventArgs e)
return;
}
}

struct Version
{
internal static Version zero = new Version(0, 0, 0);
Expand Down

0 comments on commit d01b566

Please sign in to comment.