Skip to content

Commit

Permalink
Bugfix for #13
Browse files Browse the repository at this point in the history
  • Loading branch information
daredloco committed Aug 19, 2021
1 parent 0b85e7d commit bfb33c9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
16 changes: 12 additions & 4 deletions GitInstaller/GitInstaller/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,22 @@ async void GetVersions()
}


foreach(string ignoredtags in Settings.Ignored_Tags)
if(Settings.Ignored_Tags.Length > 0)
{
if(!Utils.HasWildcard(robj.Tag,ignoredtags))
foreach (string ignoredtags in Settings.Ignored_Tags)
{
idcount++;
Releases.Add(robj);
if (!Utils.HasWildcard(robj.Tag, ignoredtags))
{
idcount++;
Releases.Add(robj);
}
}
}
else
{
idcount++;
Releases.Add(robj);
}
}

_window.cb_versions.SelectedIndex = 0;
Expand Down
4 changes: 2 additions & 2 deletions GitInstaller/GitInstaller/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.9.2.0")]
[assembly: AssemblyFileVersion("1.9.2.0")]
[assembly: AssemblyVersion("1.9.3.0")]
[assembly: AssemblyFileVersion("1.9.3.0")]

0 comments on commit bfb33c9

Please sign in to comment.