-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Team build support (#565) * Setup support for team builds Fix parser to load team builds Fix bug in attribute loading Adjust encoder to order and skip attributes for consistency * Small buildtemplate binding fixes Setup TeamBuildTemplateView * Setup button to create team build * Fix launch button (#566) Closes #563 * Team build improvements (#568) Closes #564 * Closes #562 (#569) Closes #561 * Increment version
- Loading branch information
1 parent
09fdbb6
commit f4bc58b
Showing
42 changed files
with
1,734 additions
and
269 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<UserControl x:Class="Daybreak.Controls.Glyphs.PersonGlyph" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:Daybreak.Controls.Glyphs" | ||
mc:Ignorable="d" | ||
x:Name="_this" | ||
d:DesignHeight="450" d:DesignWidth="800"> | ||
<Grid> | ||
<Viewbox> | ||
<Path Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Data="m12.5,11c3.03757,0 5.5,-2.46243 5.5,-5.5c0,-3.03757 -2.46243,-5.5 -5.5,-5.5c-3.03757,0 -5.5,2.46243 -5.5,5.5c0,3.03757 2.46243,5.5 5.5,5.5l0,0zm12.5,12l0,0l0,0l-25,0c0.74635,-6.19634 6.05817,-11 12.5,-11c6.44183,0 11.75365,4.80366 12.5,11l0,0z"/> | ||
</Viewbox> | ||
</Grid> | ||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Windows.Controls; | ||
|
||
namespace Daybreak.Controls.Glyphs; | ||
/// <summary> | ||
/// Interaction logic for PersonGlyph.xaml | ||
/// </summary> | ||
public partial class PersonGlyph : UserControl | ||
{ | ||
public PersonGlyph() | ||
{ | ||
this.InitializeComponent(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<UserControl x:Class="Daybreak.Controls.Glyphs.PlusGlyph" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:Daybreak.Controls.Glyphs" | ||
x:Name="_this" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800"> | ||
<Viewbox Stretch="Fill"> | ||
<Grid> | ||
<Path Data="m13,20a1,1 0 0 1 -1,-1l0,-12a1,1 0 0 1 2,0l0,12a1,1 0 0 1 -1,1z" | ||
Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}"></Path> | ||
<Path Data="m19,14l-12,0a1,1 0 0 1 0,-2l12,0a1,1 0 0 1 0,2z" | ||
Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}"></Path> | ||
</Grid> | ||
</Viewbox> | ||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Windows.Controls; | ||
|
||
namespace Daybreak.Controls.Glyphs; | ||
/// <summary> | ||
/// Interaction logic for PlusGlyph.xaml | ||
/// </summary> | ||
public partial class PlusGlyph : UserControl | ||
{ | ||
public PlusGlyph() | ||
{ | ||
this.InitializeComponent(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<UserControl x:Class="Daybreak.Controls.Glyphs.TeamGlyph" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:Daybreak.Controls.Glyphs" | ||
x:Name="_this" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800"> | ||
<Grid> | ||
<Viewbox> | ||
<Grid> | ||
<Ellipse Margin="97,25,0,0" | ||
Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
VerticalAlignment="Top" | ||
HorizontalAlignment="Left" | ||
Width="13" | ||
Height="13"/> | ||
<Ellipse Margin="20,25,0,0" | ||
VerticalAlignment="Top" | ||
HorizontalAlignment="Left" | ||
Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Width="13" | ||
Height="13"/> | ||
<Ellipse Margin="0,18,0,0" | ||
VerticalAlignment="Top" | ||
HorizontalAlignment="Center" | ||
Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Width="18" | ||
Height="18"/> | ||
<Path Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Data="m34.6,51.17l0,0q-0.43,0.61 -0.84,1.24l0,0a35.82,35.82 0 0 0 -5.76,19.53l72,0a35.82,35.82 0 0 0 -5.71,-19.44l0,0q-0.41,-0.63 -0.84,-1.24l0,0a36,36 0 0 0 -58.8,0l-0.05,-0.09z"/> | ||
<Path Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Data="m0,63.94l20.74,0a44,44 0 0 1 13.72,-24.58a26,26 0 0 0 -34.46,24.58z"/> | ||
<Path Fill="{Binding ElementName=_this, Path=Foreground, Mode=OneWay}" | ||
Data="m102,37.94a26,26 0 0 0 -8.46,1.42a44,44 0 0 1 13.72,24.58l20.74,0a26,26 0 0 0 -26,-26z"/> | ||
</Grid> | ||
</Viewbox> | ||
</Grid> | ||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Windows.Controls; | ||
|
||
namespace Daybreak.Controls.Glyphs; | ||
/// <summary> | ||
/// Interaction logic for TeamGlyph.xaml | ||
/// </summary> | ||
public partial class TeamGlyph : UserControl | ||
{ | ||
public TeamGlyph() | ||
{ | ||
this.InitializeComponent(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.