-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
132 additions
and
99 deletions.
There are no files selected for viewing
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
31 changes: 18 additions & 13 deletions
31
Analogy.LogViewer.GitHistory/IAnalogy/GitHistoryDataProviderFactory.cs
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
31 changes: 0 additions & 31 deletions
31
Analogy.LogViewer.GitHistory/IAnalogy/GitHistoryFactory.cs
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
Analogy.LogViewer.GitHistory/IAnalogy/GitHistoryPrimaryFactory.cs
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,24 @@ | ||
using Analogy.Interfaces; | ||
using Analogy.LogViewer.GitHistory.Properties; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Drawing; | ||
|
||
namespace Analogy.LogViewer.GitHistory.IAnalogy | ||
{ | ||
public class GitHistoryPrimaryFactory : Template.PrimaryFactory | ||
{ | ||
internal static Guid Id = new Guid("B842CC0F-AD83-48FB-8394-3189F9A75024"); | ||
public override Guid FactoryId { get; set; } = Id; | ||
public override string Title { get; set; } = "Git History"; | ||
public override Image? SmallImage { get; set; } = Resources.Git_icon_16x16; | ||
public override Image? LargeImage { get; set; } = Resources.Git_icon_32x32; | ||
public override IEnumerable<IAnalogyChangeLog> ChangeLog { get; set; } = new List<AnalogyChangeLog> | ||
{ | ||
new AnalogyChangeLog("Initial version",AnalogChangeLogType.None, "Lior Banai",new DateTime(2020, 04, 02)) | ||
}; | ||
public override IEnumerable<string> Contributors { get; set; } = new List<string> { "Lior Banai" }; | ||
public override string About { get; set; } = "Analogy Git History"; | ||
|
||
} | ||
} |
Oops, something went wrong.