mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Readme - Expanded build instructions to include Artemis.Plugins
Debugger - XAML cleanup
This commit is contained in:
parent
41b8038b74
commit
5b00c8f524
@ -21,16 +21,20 @@ Artemis 1 is no longer supported and Artemis 2 is in active development. This en
|
|||||||
1. Create a central folder like ```C:\Repos```
|
1. Create a central folder like ```C:\Repos```
|
||||||
2. Clone RGB.NET's [development branch](https://github.com/DarthAffe/RGB.NET/tree/Development) into ```<central folder>\RGB.NET```
|
2. Clone RGB.NET's [development branch](https://github.com/DarthAffe/RGB.NET/tree/Development) into ```<central folder>\RGB.NET```
|
||||||
3. Clone Artemis into ```<central folder>\Artemis```
|
3. Clone Artemis into ```<central folder>\Artemis```
|
||||||
|
4. Clone Artemis.Plugins [master branch](https://github.com/Artemis-RGB/Artemis.Plugins/tree/master) into ```<central folder>\Artemis.Plugins```
|
||||||
5. Open ```<central folder>\RGB.NET\RGB.NET.sln``` and build with the default config
|
5. Open ```<central folder>\RGB.NET\RGB.NET.sln``` and build with the default config
|
||||||
4. Open ```<central folder>\Artemis\src\Artemis.sln```
|
6. Open ```<central folder>\Artemis\src\Artemis.sln``` and build as Debug
|
||||||
5. Restore Nuget packages
|
7. Open ```<central folder>\Artemis.Plugins\src\Artemis.Plugins.sln``` and build as Debug
|
||||||
|
8. Restore Nuget packages
|
||||||
|
|
||||||
##### Alternatively in PowerShell
|
##### Alternatively in PowerShell
|
||||||
```powershell
|
```powershell
|
||||||
git clone https://github.com/DarthAffe/RGB.NET -b Development RGB.NET
|
git clone https://github.com/DarthAffe/RGB.NET -b Development RGB.NET
|
||||||
git clone https://github.com/Artemis-RGB/Artemis Artemis
|
git clone https://github.com/Artemis-RGB/Artemis Artemis
|
||||||
|
git clone https://github.com/Artemis-RGB/Artemis.Plugins Artemis.Plugins
|
||||||
dotnet build .\RGB.NET\RGB.NET.sln
|
dotnet build .\RGB.NET\RGB.NET.sln
|
||||||
dotnet build .\Artemis\src\Artemis.sln
|
dotnet build .\Artemis\src\Artemis.sln
|
||||||
|
dotnet build .\Artemis.Plugins\src\Artemis.Plugins.sln
|
||||||
```
|
```
|
||||||
|
|
||||||
For an up-to-date overview of what's currently being worked on, see the [Projects](https://github.com/SpoinkyNL/Artemis/projects) page
|
For an up-to-date overview of what's currently being worked on, see the [Projects](https://github.com/SpoinkyNL/Artemis/projects) page
|
||||||
|
|||||||
@ -6,10 +6,10 @@
|
|||||||
xmlns:local="clr-namespace:Artemis.UI.Screens.Settings.Debug.Tabs"
|
xmlns:local="clr-namespace:Artemis.UI.Screens.Settings.Debug.Tabs"
|
||||||
xmlns:s="https://github.com/canton7/Stylet"
|
xmlns:s="https://github.com/canton7/Stylet"
|
||||||
xmlns:wpf="http://materialdesigninxaml.net/winfx/xaml/themes"
|
xmlns:wpf="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
xmlns:modules="clr-namespace:Artemis.Core.Modules;assembly=Artemis.Core"
|
|
||||||
xmlns:dataModel="clr-namespace:Artemis.UI.Shared;assembly=Artemis.UI.Shared"
|
xmlns:dataModel="clr-namespace:Artemis.UI.Shared;assembly=Artemis.UI.Shared"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
d:DesignHeight="450" d:DesignWidth="800" d:DataContext="{d:DesignInstance local:DataModelDebugViewModel}">
|
d:DesignHeight="450" d:DesignWidth="800"
|
||||||
|
d:DataContext="{d:DesignInstance local:DataModelDebugViewModel}">
|
||||||
<UserControl.Resources>
|
<UserControl.Resources>
|
||||||
<dataModel:TypeToStringConverter x:Key="TypeToStringConverter" />
|
<dataModel:TypeToStringConverter x:Key="TypeToStringConverter" />
|
||||||
</UserControl.Resources>
|
</UserControl.Resources>
|
||||||
@ -33,16 +33,18 @@
|
|||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<!-- Property searching (nyi) -->
|
<!-- Property searching (nyi) -->
|
||||||
<wpf:PackIcon Grid.Column="0" Kind="Search" VerticalAlignment="Center" />
|
<wpf:PackIcon Grid.Column="0" Kind="Search" VerticalAlignment="Center" />
|
||||||
<TextBox Grid.Column="1" wpf:HintAssist.Hint="Search property" VerticalAlignment="Center" Margin="5 0" IsEnabled="False" />
|
<TextBox Grid.Row="0" Grid.Column="1" wpf:HintAssist.Hint="Search property" VerticalAlignment="Center" Margin="5 0" IsEnabled="False" />
|
||||||
|
|
||||||
<!-- Module filtering -->
|
<!-- Module filtering -->
|
||||||
<TextBlock Grid.Column="3" VerticalAlignment="Center">Filter module</TextBlock>
|
<TextBlock Grid.Row="0" Grid.Column="3" VerticalAlignment="Center">Filter module</TextBlock>
|
||||||
<ToggleButton Grid.Column="4"
|
<ToggleButton Grid.Row="0"
|
||||||
|
Grid.Column="4"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Margin="5 0"
|
Margin="5 0"
|
||||||
Style="{StaticResource MaterialDesignSwitchToggleButton}"
|
Style="{StaticResource MaterialDesignSwitchToggleButton}"
|
||||||
IsChecked="{Binding IsModuleFilterEnabled}" />
|
IsChecked="{Binding IsModuleFilterEnabled}" />
|
||||||
<ComboBox Grid.Column="5"
|
<ComboBox Grid.Row="0"
|
||||||
|
Grid.Column="5"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
wpf:HintAssist.Hint="Select a module"
|
wpf:HintAssist.Hint="Select a module"
|
||||||
IsEditable="True"
|
IsEditable="True"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user