Skip to content

Commit

Permalink
Apply several changes
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Mar 14, 2024
1 parent 4639d58 commit e4894bb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Monambike.Core/Data/Emails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public static class Emails
/// <summary>
/// The contact email for monambike domain.
/// </summary>
public static Email MonambikeContact => new("[email protected]");
public static Email Contact => new("[email protected]");
}
}
8 changes: 7 additions & 1 deletion src/Monambike.Core/Data/Links.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static class Links
/// <summary>
/// Represents a link for my YouTube live account.
/// </summary>
public static Link YouTubeMonambikeLive => new($"youtube.com/@{monambike}_lives");
public static Link YouTubeMonambikeLive => new($"youtube.com/@{monambike}_live");

/// <summary>
/// Represents a link for my Linkedin account.
Expand All @@ -84,5 +84,11 @@ public static class Links
/// Represents a link for my Patreon.
/// </summary>
public static Link Patreon => new($"patreon.com/{monambike}");


/// <summary>
/// Represents a link for my Facebook account.
/// </summary>
public static Link Facebook => new($"facebook.com/{monambike}");
}
}
5 changes: 4 additions & 1 deletion src/Monambike.Core/Models/Github.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ public static class Github
/// </summary>
private static ProductHeaderValue ProductHeaderValue => new("monambike-packages");

private static RepositoryRequest RepositoryRequest = new()
/// <summary>
/// Gets the repository request configuration for API requests.
/// </summary>
private static RepositoryRequest RepositoryRequest => new()
{
Visibility = RepositoryRequestVisibility.Public,
Affiliation = RepositoryAffiliation.Owner,
Expand Down
5 changes: 2 additions & 3 deletions src/Monambike.Core/Monambike.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Copyright>Copyright © 2024-2024</Copyright>
<PackageTags>monambike;github;certificate;social-media;links</PackageTags>
<AssemblyVersion>1.4.0.0</AssemblyVersion>
<PackageReleaseNotes>- Added GitHub repositories fetch support
- Changed Monambike to BasicInfo</PackageReleaseNotes>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<PackageReleaseNotes>- Fix minimal errors</PackageReleaseNotes>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Title>Monambike Packages</Title>
<Description>A personal package made for Monambike.
Expand Down

0 comments on commit e4894bb

Please sign in to comment.