-
Notifications
You must be signed in to change notification settings - Fork 0
Development
github-actions[bot] edited this page Jul 5, 2026
·
3 revisions
This page is for people who want to build or modify NoraBar.
NoraBar.slnx
NoraBar/
App.xaml
MainWindow.xaml
Models/
Services/
ViewModels/
Views/
docs/wiki/
.github/workflows/wiki-sync.yml
The main application code lives under NoraBar/. Wiki source files live under docs/wiki/.
dotnet restore NoraBar\NoraBar.csproj
dotnet build NoraBar\NoraBar.csprojUse this command to run the app:
dotnet run --project NoraBar\NoraBar.csprojTo build a portable version:
dotnet publish NoraBar/NoraBar.csproj -c Release -r win-x64 --self-contained false -o out/portable- WPF
- Windows Forms
NotifyIcon - Windows Media Control API
- CSCore
1.2.1.2
Music information comes from Windows media sessions. The waveform captures system audio through WASAPI loopback and visualizes it after FFT processing.
- HUD display state is managed by
IslandState. - HUD appearance is switched by
DesignVariant. - Settings are read and written through
SettingsService. - Display language strings are managed by dictionaries in
LocalizationService. - Music controls are handled by
MediaControlService, and waveform display is handled byAudioVisualizerService.
Markdown files under docs/wiki/ are synced to the GitHub Wiki when changes are pushed to the main branch. The sync workflow is defined in .github/workflows/wiki-sync.yml.
Use GitHub Wiki page links between Wiki pages:
[[Guide-Getting-Started]]- Document only implemented features.
- Match screen labels and setting names to the app UI.
- Keep procedures short and explain only the places that may cause confusion.
- When documenting old names or compatibility paths, also explain why they exist.