Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GlitchedPolygons committed Dec 16, 2023
1 parent 317de5e commit c0acef1
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="8.0.0" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" />
<PackageReference Include="GlitchedPolygons.ExtensionMethods" Version="1.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all"/>
<PackageReference Include="System.IO.Hashing" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<div class="top-row ps-3 navbar navbar-dark">
@using System.Reflection
<div class="top-row ps-3 navbar navbar-dark">

<div class="container-fluid">

<a class="navbar-brand"
href="">
GlitchEd25519
GlitchEd25519 &nbsp; @(versionNumber is null ? string.Empty : $" v{versionNumber.Major}.{versionNumber.Minor}")
</a>

<button title="Navigation menu"
Expand Down Expand Up @@ -55,6 +56,8 @@
@code {
private bool collapseNavMenu = true;

private readonly Version? versionNumber = Assembly.GetExecutingAssembly()?.GetName()?.Version;

private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;

private void ToggleNavMenu()
Expand Down
4 changes: 3 additions & 1 deletion GlitchedPolygons.GlitchEd25519.BlazorWebApp/Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
aria-selected="false"
href="#encrypt"
role="tab"
id="encrypt-tab"
tabindex="-1">
Encrypt
</a>
Expand All @@ -186,7 +187,8 @@
data-bs-toggle="tab"
aria-selected="true"
href="#decrypt"
role="tab">
role="tab"
id="decrypt-tab">
Decrypt
</a>
</li>
Expand Down

This file was deleted.

24 changes: 24 additions & 0 deletions GlitchedPolygons.GlitchEd25519.BlazorWebApp/wwwroot/css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,27 @@ code {
background-color: #1d1d1d;
border: 1px #4e4e4e solid !important;
}

#encrypt-tab, #decrypt-tab {
background-color: #1d1d1d;
border: 1px #f0f8ff38 solid;
}

.nav-tabs {
border-bottom: 1px solid #dee2e638;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
color: #fcf7f7;
border-left: 1px #f0f8ff96 solid !important;
border-top: 1px #f0f8ff96 solid !important;
border-right: 1px #f0f8ff96 solid !important;
}

.nav-link {
color: #939393cf;
}

.nav-link:hover {
color: #3190c3;
}

0 comments on commit c0acef1

Please sign in to comment.