diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f55594c..28df23a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,11 +14,11 @@ jobs: # Checkout the code - uses: actions/checkout@v2 - # Install .NET 8.0 SDK - - name: Setup .NET 8 preview + # Install .NET 9.0 SDK + - name: Setup .NET 9 preview uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' include-prerelease: true # Added Ahead-Of-Time workload diff --git a/samples/KristofferStrube.Blazor.WebAudio.WasmExample/KristofferStrube.Blazor.WebAudio.WasmExample.csproj b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/KristofferStrube.Blazor.WebAudio.WasmExample.csproj index 78be7a9..5a19890 100644 --- a/samples/KristofferStrube.Blazor.WebAudio.WasmExample/KristofferStrube.Blazor.WebAudio.WasmExample.csproj +++ b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/KristofferStrube.Blazor.WebAudio.WasmExample.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 true enable enable @@ -14,8 +14,8 @@ - - + + diff --git a/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor index d3dbb28..0f79733 100644 --- a/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor +++ b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor @@ -104,9 +104,11 @@ else while (true) { await leftAnalyzerNode.GetByteTimeDomainDataAsync(leftTimeDomainDataArray); + await Task.Delay(10); leftTimeDomainMeasurements = await leftTimeDomainDataArray.GetAsArrayAsync(); await rightAnalyzerNode.GetByteTimeDomainDataAsync(rightTimeDomainDataArray); + await Task.Delay(10); rightTimeDomainMeasurements = await rightTimeDomainDataArray.GetAsArrayAsync(); await Task.Delay(10); diff --git a/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor.css b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor.css new file mode 100644 index 0000000..d80a99d --- /dev/null +++ b/samples/KristofferStrube.Blazor.WebAudio.WasmExample/Pages/Panning.razor.css @@ -0,0 +1,19 @@ +::deep .anchor-inner-thin { + stroke-width: 2; + r: 10 +} + +::deep .anchor-inner-thick { + stroke-width: 4; + r: 10 +} + +::deep .anchor-outer-thin { + stroke-width: 2; + r: 12 +} + +::deep .anchor-outer-thick { + stroke-width: 4; + r: 14 +}