diff --git a/.gitignore b/.gitignore index 0e223e7..0f34f01 100644 --- a/.gitignore +++ b/.gitignore @@ -553,6 +553,5 @@ MigrationBackup/ # End of https://www.toptal.com/developers/gitignore/api/visualstudio,jetbrains,windows,visualstudiocode,rider,dotnetcore -**/Secrets.cs -/MainWindow.xaml.BACKUP -/MainWindow.xaml.cs.BACKUP +ConsoleApp1/ +/Utils/Secrets.cs diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index bd149f0..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "SteamStorefrontAPI"] - path = SteamStorefrontAPI - url = https://git.jeddunk.xyz/jeddunk/SteamStorefrontAPI.git diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..cf27f85 --- /dev/null +++ b/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..0c71a85 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,9 @@ +namespace auto_creamapi +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App + { + } +} diff --git a/DownloadWindow.xaml b/DownloadWindow.xaml new file mode 100644 index 0000000..aff7206 --- /dev/null +++ b/DownloadWindow.xaml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/DownloadWindow.xaml.cs b/DownloadWindow.xaml.cs new file mode 100644 index 0000000..4e90436 --- /dev/null +++ b/DownloadWindow.xaml.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Shapes; +using auto_creamapi.Utils; + +namespace auto_creamapi +{ + /// + /// Interaction logic for DownloadWindow.xaml + /// + public partial class DownloadWindow + { + public DownloadWindow() + { + WindowStartupLocation = WindowStartupLocation.CenterScreen; + InitializeComponent(); + } + + private void ProgressBar_OnValueChanged(object sender, RoutedPropertyChangedEventArgs e) + { + MyLogger.Log.Information(ProgressBar.Value.ToString("N")); + } + } +} diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..3ca06e5 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,54 @@ + + + + + + + + + + + + +