diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2021-01-13 13:56:55 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2021-01-13 13:56:55 +0200 |
| commit | 50b75a1987ee59028df6f4e3d032e330ded59296 (patch) | |
| tree | 7bf878bd724707258108e037a8eace0e0b207e72 | |
| parent | 420c6c0d0aa4f524ba6df87fc057d834b9a9019e (diff) | |
| download | Tango-50b75a1987ee59028df6f4e3d032e330ded59296.tar.gz Tango-50b75a1987ee59028df6f4e3d032e330ded59296.zip | |
PPC_v1.3.5
3 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Advanced Installer Projects/PPC Installer-cache/cacheIndex.txt b/Software/Visual_Studio/Advanced Installer Projects/PPC Installer-cache/cacheIndex.txt Binary files differindex 9453b5c13..abc8a3503 100644 --- a/Software/Visual_Studio/Advanced Installer Projects/PPC Installer-cache/cacheIndex.txt +++ b/Software/Visual_Studio/Advanced Installer Projects/PPC Installer-cache/cacheIndex.txt diff --git a/Software/Visual_Studio/Advanced Installer Projects/PPC Installer.aip b/Software/Visual_Studio/Advanced Installer Projects/PPC Installer.aip index 7feba98b0..29ca542d2 100644 --- a/Software/Visual_Studio/Advanced Installer Projects/PPC Installer.aip +++ b/Software/Visual_Studio/Advanced Installer Projects/PPC Installer.aip @@ -18,10 +18,10 @@ <ROW Property="ARPNOREPAIR" Value="1" MultiBuildValue="DefaultBuild:1"/> <ROW Property="ARPSYSTEMCOMPONENT" Value="1"/> <ROW Property="Manufacturer" Value="Twine"/> - <ROW Property="ProductCode" Value="1033:{8E367CCC-C34C-4347-BD43-06C0AA8B8923} " Type="16"/> + <ROW Property="ProductCode" Value="1033:{81B78BE5-97AE-4DB8-BE7D-5A30C3309CBF} " Type="16"/> <ROW Property="ProductLanguage" Value="1033"/> <ROW Property="ProductName" Value="Tango"/> - <ROW Property="ProductVersion" Value="1.3.3.0" Type="32"/> + <ROW Property="ProductVersion" Value="1.3.5.0" Type="32"/> <ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/> <ROW Property="UpgradeCode" Value="{F8EAB8B4-FD57-45B7-8307-D52DF760273D}"/> <ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/> @@ -505,7 +505,7 @@ <ROW Action="AI_DetectSoftware" Sequence="101"/> </COMPONENT> <COMPONENT cid="caphyon.advinst.msicomp.BuildComponent"> - <ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" PackageFolder="..\Build\Installers\PPC" PackageFileName="PPC Installer_v1.3.3" Languages="en" InstallationType="4" CabsLocation="1" PackageType="1" FilesInsideExe="true" ExtractionFolder="[AppDataFolder][|Manufacturer]\[|ProductName] [|ProductVersion]\install" ExtUI="true" UseLargeSchema="true" ExeName="PPC Installer_v1.3.3"/> + <ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" PackageFolder="..\Build\Installers\PPC" PackageFileName="PPC Installer_v1.3.5" Languages="en" InstallationType="4" CabsLocation="1" PackageType="1" FilesInsideExe="true" ExtractionFolder="[AppDataFolder][|Manufacturer]\[|ProductName] [|ProductVersion]\install" ExtUI="true" UseLargeSchema="true" ExeName="PPC Installer_v1.3.5"/> </COMPONENT> <COMPONENT cid="caphyon.advinst.msicomp.DictionaryComponent"> <ROW Path="<AI_DICTS>ui.ail"/> diff --git a/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs b/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs index 665c87080..e8f5df3b1 100644 --- a/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs +++ b/Software/Visual_Studio/Tango.Git/GitRepositoryManager.cs @@ -66,11 +66,11 @@ namespace Tango.Git return true; } - public List<GitCommit> GetOutgoingCommits(String branchName = "master") + public List<GitCommit> GetOutgoingCommits() { List<GitCommit> commits = new List<GitCommit>(); - var branch = _repo.Branches.FirstOrDefault(x => x.FriendlyName == branchName); + var branch = _repo.Head.TrackedBranch; if (branch.TrackingDetails.AheadBy != null) { |
