-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2024-01-15 EoD * 2024-01-21 BoD * 2024-01-21 EoD * 2023-01-24 Compute SHA512 in WiP * Add quotes around filename for certutil * Remove redundant redirection in filename * Added SHA hash computation to Release * Compute SHA hash * 2024-01-24 EoD * 2024-01-26 EoD * Prior to attempting revert of bad commit on main * 2024-01-30 EoD - Menu 90% * 2024-01-31 Menu completed; Prior to website conversion to MW3 menu * 2024-02-01 MoD; Menu complete, MD2 menu, topappbar, and listitems removed * Commit JS deletion in M.B.MD3 * 2024-02-01 EoD * 2024-02-10 EoD * 2024-02-10 Markdown styling * 5.0.3
- Loading branch information
Showing
81 changed files
with
1,728 additions
and
1,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
param( | ||
[Parameter(Mandatory=$True, | ||
ValueFromPipeline=$True)] | ||
$filePath | ||
) | ||
|
||
$hasher = [System.Security.Cryptography.SHA256]::Create() | ||
$content = Get-Content -Path $filePath -AsByteStream -Raw | ||
$hash = [System.Convert]::ToBase64String($hasher.ComputeHash($content)) | ||
Write-Output ($filePath.ToString() + ": " + $hash) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
93 changes: 0 additions & 93 deletions
93
Material.Blazor.MD3/Components.MD2/Drawer/MBDrawer.razor.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
Material.Blazor.MD3/Components.MD2/ListDivider/MBListDivider.razor
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
Material.Blazor.MD3/Components.MD2/ListDivider/MBListDivider.razor.cs
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
Material.Blazor.MD3/Components.MD2/ListItem/MBListItem.razor
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
Material.Blazor.MD3/Components.MD2/ListItem/MBListItem.razor.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.