Project cleanup
Rearranging sprites + removing redundant files
BIN
Launcher-UI/Assets/Sprites/account-logo.png
Normal file
After Width: | Height: | Size: 570 B |
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 892 B After Width: | Height: | Size: 892 B |
Before Width: | Height: | Size: 939 B After Width: | Height: | Size: 939 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 911 B After Width: | Height: | Size: 911 B |
@ -1,6 +0,0 @@
|
|||||||
namespace LauncherGUI.ViewModels;
|
|
||||||
|
|
||||||
public partial class SettingsWindowViewModel : ViewModelBase
|
|
||||||
{
|
|
||||||
// I save launcher data mostly in MainWindowViewModel.
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using Plombir;
|
|
||||||
using LauncherGUI.ViewModels;
|
|
||||||
|
|
||||||
namespace LauncherGUI.ViewModels;
|
|
||||||
|
|
||||||
public partial class VersionSelectorWindowViewModel : ViewModelBase
|
|
||||||
{
|
|
||||||
// I save launcher data mostly in MainWindowViewModel.
|
|
||||||
}
|
|
@ -9,7 +9,7 @@
|
|||||||
d:DesignHeight="200"
|
d:DesignHeight="200"
|
||||||
x:Class="LauncherGUI.Views.LoadingWindow"
|
x:Class="LauncherGUI.Views.LoadingWindow"
|
||||||
x:DataType="vm:LoadingWindowViewModel"
|
x:DataType="vm:LoadingWindowViewModel"
|
||||||
Icon="/Assets/icon.png"
|
Icon="/Assets/Sprites/icon.png"
|
||||||
Title="Loading"
|
Title="Loading"
|
||||||
RequestedThemeVariant="Dark"
|
RequestedThemeVariant="Dark"
|
||||||
Width="400"
|
Width="400"
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
<Window
|
<Window
|
||||||
xmlns="https://github.com/avaloniaui"
|
xmlns="https://github.com/avaloniaui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:vm="using:LauncherGUI.ViewModels"
|
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignWidth="500"
|
d:DesignWidth="500"
|
||||||
d:DesignHeight="400"
|
d:DesignHeight="400"
|
||||||
x:Class="LauncherGUI.Views.SettingsWindow"
|
x:Class="LauncherGUI.Views.SettingsWindow"
|
||||||
x:DataType="vm:SettingsWindowViewModel"
|
|
||||||
Icon="/Assets/icon.png"
|
Icon="/Assets/Sprites/icon.png"
|
||||||
Title="Launcher tweaks"
|
Title="Launcher tweaks"
|
||||||
RequestedThemeVariant="Dark"
|
RequestedThemeVariant="Dark"
|
||||||
Width="500"
|
Width="500"
|
||||||
@ -43,7 +43,7 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<StackPanel Grid.Row="2" Grid.Column="1">
|
<StackPanel Grid.Row="2" Grid.Column="1">
|
||||||
<Image Source="/Assets/toml-paper.png"
|
<Image Source="/Assets/Sprites/toml-paper.png"
|
||||||
Stretch="Uniform"/>
|
Stretch="Uniform"/>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
<Window xmlns="https://github.com/avaloniaui"
|
<Window xmlns="https://github.com/avaloniaui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:vm="using:LauncherGUI.ViewModels"
|
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="200"
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="200"
|
||||||
x:Class="LauncherGUI.Views.VersionSelectorWindow"
|
x:Class="LauncherGUI.Views.VersionSelectorWindow"
|
||||||
x:DataType="vm:VersionSelectorWindowViewModel"
|
|
||||||
Icon="/Assets/icon.png"
|
Icon="/Assets/Sprites/icon.png"
|
||||||
Title="Select version"
|
Title="Select version"
|
||||||
RequestedThemeVariant="Dark"
|
RequestedThemeVariant="Dark"
|
||||||
Width="600" Height="500"
|
Width="600" Height="500"
|
||||||
|