Skip to content

Commit

Permalink
switched repository management to an online portal for inproved security
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewinator56 committed Jul 20, 2021
1 parent 07dccb0 commit 42d2fa2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion StormLoader/StormLoader/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public partial class MainWindow : Window
public XmlDocument currentProfile = new XmlDocument();
public string gameLocation = "";
public List<ModListItem> modListItems = new List<ModListItem>();
public string version = "v1.0.6";
public string version = "v1.0.7";
public bool x64 { get; set; }
public bool notx64 { get { return !x64; } set { x64=!value; } }
public MainWindow()
Expand Down
2 changes: 1 addition & 1 deletion StormLoader/StormLoader/repository/RepoBrowserRoot.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</materialDesign:PackIcon.LayoutTransform>
</materialDesign:PackIcon>
<Label Name ="titleText" Content="Repository Browser" FontSize="24" VerticalAlignment="Center" DockPanel.Dock="left"/>
<Button Name="UploadMod" Style="{DynamicResource MaterialDesignFlatButton}" Content="Upload" DockPanel.Dock="Right" HorizontalAlignment="right" Click="UploadMod_Click"/>
<Button Name="UploadMod" Style="{DynamicResource MaterialDesignFlatButton}" Content="Manage your content" DockPanel.Dock="Right" HorizontalAlignment="right" Click="UploadMod_Click"/>
</DockPanel>

</materialDesign:Card>
Expand Down
6 changes: 4 additions & 2 deletions StormLoader/StormLoader/repository/RepoBrowserRoot.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ void addModListItem(int mod_id)

private void UploadMod_Click(object sender, RoutedEventArgs e)
{
RepoLoginPanel rplp = new RepoLoginPanel();
RepoDialog.ShowDialog(rplp);
System.Diagnostics.Process.Start("https://portal.stormloader.uk");

//RepoLoginPanel rplp = new RepoLoginPanel();
//RepoDialog.ShowDialog(rplp);
}

private void refreshListing_Click(object sender, RoutedEventArgs e)
Expand Down

0 comments on commit 42d2fa2

Please sign in to comment.