Skip to content

Commit

Permalink
Implementing IGitHubPlugin
Browse files Browse the repository at this point in the history
Adding TabIcons
  • Loading branch information
Jonas Rapp committed Nov 3, 2017
1 parent 86cc42b commit fa3b58f
Show file tree
Hide file tree
Showing 8 changed files with 548 additions and 518 deletions.
3 changes: 2 additions & 1 deletion XTB/Builder/ShuffleBuilder.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion XTB/Builder/ShuffleBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace Innofactor.Crm.Shuffle.Builder
{
public partial class ShuffleBuilder : PluginControlBase, IMessageBusHost
public partial class ShuffleBuilder : PluginControlBase, IMessageBusHost, IGitHubPlugin
{
internal Clipboard clipboard = new Clipboard();
private XmlDocument definitionDoc;
Expand All @@ -41,6 +41,10 @@ public CintDynEntityCollection Solutions
}
}

public string RepositoryName => "Innofactor.Crm.CI";

public string UserName => "Innofactor";

public ShuffleBuilder()
{
InitializeComponent();
Expand Down
951 changes: 479 additions & 472 deletions XTB/Builder/ShuffleBuilder.resx

Large diffs are not rendered by default.

Binary file added XTB/Images/ShuffleBuilderIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added XTB/Images/ShuffleRunnerIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions XTB/Runner/ShuffleRunner.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion XTB/Runner/ShuffleRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@

namespace Innofactor.Crm.Shuffle.Runner
{
public partial class ShuffleRunner : PluginControlBase, IMessageBusHost
public partial class ShuffleRunner : PluginControlBase, IMessageBusHost, IGitHubPlugin
{
private bool shuffeling = false;
private bool datafilerequired = true;

public string RepositoryName => "Innofactor.Crm.CI";

public string UserName => "Innofactor";

public ShuffleRunner()
{
InitializeComponent();
Expand Down
99 changes: 56 additions & 43 deletions XTB/Runner/ShuffleRunner.resx

Large diffs are not rendered by default.

0 comments on commit fa3b58f

Please sign in to comment.