Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
08ba3aa
Combine projects into single solution, remove bin, obj, files from so…
May 12, 2025
45da449
Begin moving of functions from command line program to separate class…
May 12, 2025
31234a1
Add PatternAt function into UART static class and refactor using LINQ…
May 12, 2025
52d2bfc
Move error code database into own class, add unit tests for database
May 12, 2025
3353821
Update gitignore, remove commited binary files and vs generated files
May 12, 2025
0347577
Complete rewrite of UART-CL application with logging, DI, services, s…
May 14, 2025
6cfeffd
Clean up logging in BiosService
May 15, 2025
470c5a7
Added log parsing directly from dumps
May 16, 2025
3b0c3a8
Added comments and summaries to the BiosError class
May 16, 2025
6363701
Implemented dump file header checksum validation to ensure the select…
May 16, 2025
c9cd319
Added custom exceptions for reading/writing dump files
May 19, 2025
2248b96
Move non-CLI specific code into separate library
May 20, 2025
44150db
Move non-CLI code into separate library
May 20, 2025
d1d2d0c
Create web app using webasm, rename all instances of BIOS to NOR
May 20, 2025
65f664b
Create web app using webasm, rename all instances of BIOS to NOR
May 20, 2025
cc2ebc1
Merge pull request #1 from xxbiohazrdxx/web
May 20, 2025
ffb4823
Update base href for GitHub page
May 20, 2025
9344d3f
Remove additional references to BIOS in favor of NOR
May 20, 2025
242bc50
Add deploy.yml for building GitHub page
May 20, 2025
02d98a8
Merge pull request #2 from xxbiohazrdxx/web
May 20, 2025
bd7bd9d
Update deploy with proper branch name, clean up gitignore
May 20, 2025
f885ee5
Pull
May 20, 2025
7f59bcd
Clean up gitignore, fix deploy to use proper branch name
May 20, 2025
9d12e98
Add UART web interface using Web Serial API. Unify UART/NOR error types
May 22, 2025
5234bf0
Fix navlink href to be relative
May 22, 2025
34c18a9
Fix exception when serial port selection fails
May 23, 2025
8099fe1
Change error log table to always show raw byte value of errors
May 23, 2025
235e683
Added comments and summaries for various classes and methods
May 25, 2025
dd7ce27
Add additional comments and summaries
May 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Deploy Blazor App to GitHub Pages

on:
push:
branches:
- 'main'
workflow_dispatch:

permissions:
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'

- name: Publish Blazor WebAssembly
run: dotnet publish NorModifierWeb/NorModifierWeb.csproj -c Release -o publish

- name: Copy index.html to 404.html (for SPA routing)
run: cp publish/wwwroot/index.html publish/wwwroot/404.html

- name: Upload artifact for GitHub Pages
uses: actions/upload-pages-artifact@v3
with:
path: publish/wwwroot

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
################################################################################

/.vs
/PS5 NOR Modifier/bin/
/PS5 NOR Modifier/obj/
bin
obj
Loading