Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3acd7cd
From zero
DataNext27 Aug 4, 2026
166010a
New discovery method
DataNext27 Aug 7, 2026
f6a29a7
Add SonarClient (Replace SonarBridge) + new VolumeSettingsManager
DataNext27 Aug 7, 2026
d59aecb
Sample for testing (getting fixtures now)
DataNext27 Aug 7, 2026
d39174a
Add Mode support & Change http transport + tests
DataNext27 Aug 8, 2026
825e0a2
Fix mode interval detection
DataNext27 Aug 8, 2026
b3cd6c3
Add github Ci
DataNext27 Aug 8, 2026
1b9857a
Add Api Explorer Project to help discover routes
DataNext27 Aug 8, 2026
7e4d346
Add ChatMix support + tests
DataNext27 Aug 8, 2026
615863e
feat(events): add SonarEventListener with WebSocket stream and mode-a…
DataNext27 Aug 16, 2026
f5b80c3
Added redirections management
DataNext27 Aug 23, 2026
b0ff883
Add Config controls
DataNext27 Aug 25, 2026
08c6ff0
update Sample
DataNext27 Aug 25, 2026
5404bc0
Added Audio Device manager
DataNext27 Aug 25, 2026
47f2f41
Sonar Apps routing
DataNext27 Aug 25, 2026
dc4e6bc
some fixes
DataNext27 Aug 25, 2026
9ae5bba
setup net8 UT
DataNext27 Aug 27, 2026
3e9181f
fix ci
DataNext27 Aug 27, 2026
9866586
Clean Listener code
DataNext27 Aug 28, 2026
09af376
Some code cleaning
DataNext27 Aug 28, 2026
1b77709
Update Explorer to test API easily + add references files for the tests
DataNext27 Aug 28, 2026
17eec3c
Update Sample
DataNext27 Aug 28, 2026
74df129
Add some documentation for devs
DataNext27 Aug 28, 2026
ea1727e
Fix csref
DataNext27 Aug 28, 2026
3794fa9
README + Nuget packaging
DataNext27 Aug 28, 2026
cfe0269
Updated README
DataNext27 Aug 28, 2026
1f77862
Merge branch 'main' into dev
DataNext27 Aug 28, 2026
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
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [main, dev]
pull_request:

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
10.0.x

- name: Restore
run: dotnet restore

- name: Build
run: dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
Loading
Loading