File tree Expand file tree Collapse file tree 3 files changed +34
-8
lines changed
GitLab.VisualStudio.Shared/Models
GitLab.VisualStudio.UI/ViewModels Expand file tree Collapse file tree 3 files changed +34
-8
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,29 @@ download in the
1212These are the changes to each version that has been released
1313on the official Visual Studio extension gallery.
1414
15- ##V1.0.160
16- - Automatically detects the API version of Gitlab
15+ ## V1.0.183
1716
18- ## V1.0.154
19- - Visual Studio 2019 support
17+ - Fix for " cannot connect to custom gitlab server with different port #50 "
18+
19+
20+ ## V1.0.182
21+
22+ - Fix Login issue within new visual studio project #43
23+ - Fixed some bugs
24+
25+ ## V1.0.168
26+ - Fix URL generation for master branch -- by FurkanKambay
27+ - Fix Translation was wrong - by chrgraefe
28+
29+ ## V1.0.167
30+ -Fix #40 Publish option available while tracking remote repository.
31+
32+ ## V1.0.165
33+
34+ Automatically detects the API version of Gitlab
35+
36+ ## V1.0.156
37+ Visual Studio 2019 support
2038
2139## V1.0.150
2240- [x] AddOpen URL from clipboard
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ public static implicit operator Project(NGitLab.Models.Project p)
2424 WikiEnabled = p . WikiEnabled ,
2525 Id = p . Id ,
2626 WebUrl = p . WebUrl ,
27- Description = p . Description
28-
27+ Description = p . Description ,
28+ Namespace = p . Namespace . FullPath
2929 } ;
3030 }
3131 else
@@ -74,6 +74,7 @@ public Octicon Icon
7474 }
7575 }
7676
77- public string Description { get ; set ; }
78- }
77+ public string Description { get ; set ; }
78+ public string Namespace { get ; set ; }
79+ }
7980}
Original file line number Diff line number Diff line change @@ -64,6 +64,13 @@ public ProjectViewModel(Project repository)
6464 Name = repository . Owner . Name ,
6565 AvatarUrl = repository . Owner . AvatarUrl
6666 } ;
67+ } else
68+ {
69+ Owner = new Owner
70+ {
71+ Name = repository . Namespace ,
72+ AvatarUrl = ""
73+ } ;
6774 }
6875
6976 Icon = repository . Icon ;
You can’t perform that action at this time.
0 commit comments