├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── c_cpp_properties.json ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── LICENSES_COMPILED.md ├── MANDATORY_VERSION ├── README.md ├── backend ├── .clang-format ├── .clang-tidy ├── .vscode │ └── launch.json ├── AFV_LICENSE ├── CMakeLists.txt ├── Makefile ├── cmake_install.cmake ├── custom_build.mjs ├── extern │ ├── SWIFT_LICENSE │ └── utf8proc │ │ ├── .github │ │ └── workflows │ │ │ ├── ci-fuzz.yml │ │ │ ├── cmake.yml │ │ │ └── make.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ ├── LICENSE.md │ │ ├── MANIFEST │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bench │ │ ├── Makefile │ │ ├── bench.c │ │ ├── icu.c │ │ ├── unistring.c │ │ ├── util.c │ │ └── util.h │ │ ├── data │ │ ├── Makefile │ │ ├── charwidths.jl │ │ └── data_generator.rb │ │ ├── libutf8proc.pc.cmakein │ │ ├── libutf8proc.pc.in │ │ ├── lump.md │ │ ├── test │ │ ├── case.c │ │ ├── charwidth.c │ │ ├── custom.c │ │ ├── fuzz_main.c │ │ ├── fuzzer.c │ │ ├── graphemetest.c │ │ ├── iscase.c │ │ ├── iterate.c │ │ ├── misc.c │ │ ├── normtest.c │ │ ├── ossfuzz.sh │ │ ├── printproperty.c │ │ ├── tests.c │ │ ├── tests.h │ │ └── valid.c │ │ ├── utf8proc.c │ │ ├── utf8proc.h │ │ ├── utf8proc_data.c │ │ └── utils.cmake ├── include │ ├── Helpers.hpp │ ├── InputHandler.hpp │ ├── KeycodeLookup.h │ ├── LogFactory.h │ ├── RadioHelper.hpp │ ├── RadioSimulation.h │ ├── RemoteData.hpp │ ├── Shared.hpp │ ├── UIOHookWrapper.h │ ├── sdk.hpp │ ├── sdkWebsocketMessage.hpp │ └── win32_key_util.h ├── js │ └── bindings.js ├── package-lock.json ├── package.json ├── scripts │ ├── build-napi.js │ └── make.bat ├── src │ ├── InputHandler.cpp │ ├── RemoteData.cpp │ ├── Shared.cpp │ ├── UIOHookWrapper.cpp │ ├── main.cpp │ ├── sdk.cpp │ └── win32_key_util.cpp ├── types │ └── index.d.ts └── vcpkg.json ├── docs ├── app_screenshot_apr2024.png ├── app_screenshot_feb2025.png ├── app_screenshot_good_oct2024.png └── app_screenshot_nov2024.png ├── electron-builder-config.js ├── electron.vite.config.1737224634905.mjs ├── electron.vite.config.ts ├── eslint.config.mjs ├── fast-afv-update.sh ├── license_report_config.json ├── package.json ├── resources ├── AC_Bus_f32.wav ├── AppIcon │ ├── AppIcon-beta.zip │ ├── AppIcon.icns │ ├── AppIcon.png │ ├── AppIcon.tiff │ └── icon.png ├── Click_f32.wav ├── Crackle_f32.wav └── HF_WhiteNoise_f32.wav ├── scripts ├── AppImage │ └── TrackAudio.AppDir │ │ ├── AppRun-aarch64 │ │ ├── AppRun-x86_64 │ │ ├── trackaudio.desktop │ │ └── usr │ │ ├── .gitkeep │ │ ├── bin │ │ └── .gitkeep │ │ ├── lib │ │ └── .gitkeep │ │ └── share │ │ ├── .gitkeep │ │ ├── metainfo │ │ └── com.vatsim.trackaudio.appdata.xml │ │ ├── trackaudio.desktop │ │ └── trackaudio │ │ └── .gitkeep ├── compile_licenses.mjs └── entitlements.plist ├── src ├── main │ ├── config.ts │ ├── env.ts │ └── index.ts ├── preload │ ├── bindings.ts │ ├── index.d.ts │ └── index.ts ├── renderer │ ├── index.html │ └── src │ │ ├── app.tsx │ │ ├── assets │ │ ├── alert.mp3 │ │ ├── fonts │ │ │ ├── LICENCE.txt │ │ │ ├── UbuntuMono-B.ttf │ │ │ └── UbuntuMono-R.ttf │ │ └── md80_error.mp3 │ │ ├── components │ │ ├── MiniModeToggleButton.tsx │ │ ├── add-station-model │ │ │ └── station-modal.tsx │ │ ├── clock.tsx │ │ ├── connect-timer.tsx │ │ ├── delete-multiple-radios.tsx │ │ ├── error.tsx │ │ ├── focusBar.tsx │ │ ├── mini.tsx │ │ ├── navbar.tsx │ │ ├── radio │ │ │ ├── expanded-rx-info.tsx │ │ │ ├── hooks │ │ │ │ └── useVolumeManagement.tsx │ │ │ ├── main-radio-volume.tsx │ │ │ ├── radio-container.tsx │ │ │ ├── radio.tsx │ │ │ ├── rxinfo.tsx │ │ │ ├── top-bar-container.tsx │ │ │ └── unicom-guard.tsx │ │ ├── refresh-multiple-radios.tsx │ │ ├── settings-modal │ │ │ ├── audio-apis.tsx │ │ │ ├── audio-input.tsx │ │ │ ├── audio-outputs.tsx │ │ │ └── settings-modal.tsx │ │ ├── sidebar │ │ │ ├── add-frequency.tsx │ │ │ ├── add-station.tsx │ │ │ ├── lastReceivedCallsigns.tsx │ │ │ ├── radio-status.tsx │ │ │ └── sidebar.tsx │ │ ├── titlebar │ │ │ ├── TitleBar.scss │ │ │ ├── TitleBar.tsx │ │ │ ├── TitleBarElement.tsx │ │ │ ├── TitleBarSection.tsx │ │ │ ├── session-status │ │ │ │ ├── ConnectStatus.scss │ │ │ │ ├── ConnectionStatus.tsx │ │ │ │ └── SessionStatus.tsx │ │ │ └── useTitleBarUtils.ts │ │ └── updater │ │ │ ├── Updater.scss │ │ │ ├── Updater.tsx │ │ │ └── components │ │ │ ├── CheckingForUpdate.tsx │ │ │ ├── DownloadingUpdate.tsx │ │ │ ├── FinishedUpdate.tsx │ │ │ ├── Loader.scss │ │ │ ├── Loader.tsx │ │ │ └── UpdateError.tsx │ │ ├── helpers │ │ ├── CallsignHelper.ts │ │ ├── RadioHelper.ts │ │ └── useMiniModeManager.ts │ │ ├── index.scss │ │ ├── interfaces │ │ ├── IPCInterface.ts │ │ ├── Station.ts │ │ └── StationStateUpdate.ts │ │ ├── store │ │ ├── errorStore.ts │ │ ├── radioStore.ts │ │ ├── sessionStore.ts │ │ └── utilStore.ts │ │ └── style │ │ ├── GlobalRadio.scss │ │ ├── UnicomGuard.scss │ │ ├── app.scss │ │ ├── navbar.scss │ │ └── variables.scss └── shared │ ├── MainVolumeChange.ts │ ├── common.ts │ └── config.type.ts ├── tsconfig.json ├── tsconfig.node.json └── tsconfig.web.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | printWidth: 100 3 | trailingComma: none 4 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES_COMPILED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/LICENSES_COMPILED.md -------------------------------------------------------------------------------- /MANDATORY_VERSION: -------------------------------------------------------------------------------- 1 | 1.3.3 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/README.md -------------------------------------------------------------------------------- /backend/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/.clang-format -------------------------------------------------------------------------------- /backend/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/.clang-tidy -------------------------------------------------------------------------------- /backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/.vscode/launch.json -------------------------------------------------------------------------------- /backend/AFV_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/AFV_LICENSE -------------------------------------------------------------------------------- /backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/CMakeLists.txt -------------------------------------------------------------------------------- /backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/Makefile -------------------------------------------------------------------------------- /backend/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/cmake_install.cmake -------------------------------------------------------------------------------- /backend/custom_build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/custom_build.mjs -------------------------------------------------------------------------------- /backend/extern/SWIFT_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/SWIFT_LICENSE -------------------------------------------------------------------------------- /backend/extern/utf8proc/.github/workflows/ci-fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/.github/workflows/ci-fuzz.yml -------------------------------------------------------------------------------- /backend/extern/utf8proc/.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /backend/extern/utf8proc/.github/workflows/make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/.github/workflows/make.yml -------------------------------------------------------------------------------- /backend/extern/utf8proc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/.gitignore -------------------------------------------------------------------------------- /backend/extern/utf8proc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/CMakeLists.txt -------------------------------------------------------------------------------- /backend/extern/utf8proc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/Doxyfile -------------------------------------------------------------------------------- /backend/extern/utf8proc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/LICENSE.md -------------------------------------------------------------------------------- /backend/extern/utf8proc/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/MANIFEST -------------------------------------------------------------------------------- /backend/extern/utf8proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/Makefile -------------------------------------------------------------------------------- /backend/extern/utf8proc/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/NEWS.md -------------------------------------------------------------------------------- /backend/extern/utf8proc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/README.md -------------------------------------------------------------------------------- /backend/extern/utf8proc/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/appveyor.yml -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/Makefile -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/bench.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/icu.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/unistring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/unistring.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/util.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/bench/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/bench/util.h -------------------------------------------------------------------------------- /backend/extern/utf8proc/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/data/Makefile -------------------------------------------------------------------------------- /backend/extern/utf8proc/data/charwidths.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/data/charwidths.jl -------------------------------------------------------------------------------- /backend/extern/utf8proc/data/data_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/data/data_generator.rb -------------------------------------------------------------------------------- /backend/extern/utf8proc/libutf8proc.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/libutf8proc.pc.cmakein -------------------------------------------------------------------------------- /backend/extern/utf8proc/libutf8proc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/libutf8proc.pc.in -------------------------------------------------------------------------------- /backend/extern/utf8proc/lump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/lump.md -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/case.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/charwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/charwidth.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/custom.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/fuzz_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/fuzz_main.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/fuzzer.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/graphemetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/graphemetest.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/iscase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/iscase.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/iterate.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/misc.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/normtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/normtest.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/ossfuzz.sh -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/printproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/printproperty.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/tests.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/tests.h -------------------------------------------------------------------------------- /backend/extern/utf8proc/test/valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/test/valid.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/utf8proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/utf8proc.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/utf8proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/utf8proc.h -------------------------------------------------------------------------------- /backend/extern/utf8proc/utf8proc_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/utf8proc_data.c -------------------------------------------------------------------------------- /backend/extern/utf8proc/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/extern/utf8proc/utils.cmake -------------------------------------------------------------------------------- /backend/include/Helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/Helpers.hpp -------------------------------------------------------------------------------- /backend/include/InputHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/InputHandler.hpp -------------------------------------------------------------------------------- /backend/include/KeycodeLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/KeycodeLookup.h -------------------------------------------------------------------------------- /backend/include/LogFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/LogFactory.h -------------------------------------------------------------------------------- /backend/include/RadioHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/RadioHelper.hpp -------------------------------------------------------------------------------- /backend/include/RadioSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/RadioSimulation.h -------------------------------------------------------------------------------- /backend/include/RemoteData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/RemoteData.hpp -------------------------------------------------------------------------------- /backend/include/Shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/Shared.hpp -------------------------------------------------------------------------------- /backend/include/UIOHookWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/UIOHookWrapper.h -------------------------------------------------------------------------------- /backend/include/sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/sdk.hpp -------------------------------------------------------------------------------- /backend/include/sdkWebsocketMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/sdkWebsocketMessage.hpp -------------------------------------------------------------------------------- /backend/include/win32_key_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/include/win32_key_util.h -------------------------------------------------------------------------------- /backend/js/bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/js/bindings.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/scripts/build-napi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/scripts/build-napi.js -------------------------------------------------------------------------------- /backend/scripts/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/scripts/make.bat -------------------------------------------------------------------------------- /backend/src/InputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/InputHandler.cpp -------------------------------------------------------------------------------- /backend/src/RemoteData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/RemoteData.cpp -------------------------------------------------------------------------------- /backend/src/Shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/Shared.cpp -------------------------------------------------------------------------------- /backend/src/UIOHookWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/UIOHookWrapper.cpp -------------------------------------------------------------------------------- /backend/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/main.cpp -------------------------------------------------------------------------------- /backend/src/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/sdk.cpp -------------------------------------------------------------------------------- /backend/src/win32_key_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/src/win32_key_util.cpp -------------------------------------------------------------------------------- /backend/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/types/index.d.ts -------------------------------------------------------------------------------- /backend/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/backend/vcpkg.json -------------------------------------------------------------------------------- /docs/app_screenshot_apr2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/docs/app_screenshot_apr2024.png -------------------------------------------------------------------------------- /docs/app_screenshot_feb2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/docs/app_screenshot_feb2025.png -------------------------------------------------------------------------------- /docs/app_screenshot_good_oct2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/docs/app_screenshot_good_oct2024.png -------------------------------------------------------------------------------- /docs/app_screenshot_nov2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/docs/app_screenshot_nov2024.png -------------------------------------------------------------------------------- /electron-builder-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/electron-builder-config.js -------------------------------------------------------------------------------- /electron.vite.config.1737224634905.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/electron.vite.config.1737224634905.mjs -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /fast-afv-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/fast-afv-update.sh -------------------------------------------------------------------------------- /license_report_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/license_report_config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/package.json -------------------------------------------------------------------------------- /resources/AC_Bus_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AC_Bus_f32.wav -------------------------------------------------------------------------------- /resources/AppIcon/AppIcon-beta.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AppIcon/AppIcon-beta.zip -------------------------------------------------------------------------------- /resources/AppIcon/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AppIcon/AppIcon.icns -------------------------------------------------------------------------------- /resources/AppIcon/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AppIcon/AppIcon.png -------------------------------------------------------------------------------- /resources/AppIcon/AppIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AppIcon/AppIcon.tiff -------------------------------------------------------------------------------- /resources/AppIcon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/AppIcon/icon.png -------------------------------------------------------------------------------- /resources/Click_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/Click_f32.wav -------------------------------------------------------------------------------- /resources/Crackle_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/Crackle_f32.wav -------------------------------------------------------------------------------- /resources/HF_WhiteNoise_f32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/resources/HF_WhiteNoise_f32.wav -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/AppRun-aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/AppImage/TrackAudio.AppDir/AppRun-aarch64 -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/AppRun-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/AppImage/TrackAudio.AppDir/AppRun-x86_64 -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/trackaudio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/AppImage/TrackAudio.AppDir/trackaudio.desktop -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/share/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/share/metainfo/com.vatsim.trackaudio.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/AppImage/TrackAudio.AppDir/usr/share/metainfo/com.vatsim.trackaudio.appdata.xml -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/share/trackaudio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/AppImage/TrackAudio.AppDir/usr/share/trackaudio.desktop -------------------------------------------------------------------------------- /scripts/AppImage/TrackAudio.AppDir/usr/share/trackaudio/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/compile_licenses.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/compile_licenses.mjs -------------------------------------------------------------------------------- /scripts/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/scripts/entitlements.plist -------------------------------------------------------------------------------- /src/main/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/main/config.ts -------------------------------------------------------------------------------- /src/main/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/main/env.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/preload/bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/preload/bindings.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/app.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/assets/alert.mp3 -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/assets/fonts/LICENCE.txt -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/assets/fonts/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/assets/fonts/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/md80_error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/assets/md80_error.mp3 -------------------------------------------------------------------------------- /src/renderer/src/components/MiniModeToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/MiniModeToggleButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/add-station-model/station-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/add-station-model/station-modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/clock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/clock.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/connect-timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/connect-timer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/delete-multiple-radios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/delete-multiple-radios.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/error.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/focusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/focusBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/mini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/mini.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/expanded-rx-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/expanded-rx-info.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/hooks/useVolumeManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/hooks/useVolumeManagement.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/main-radio-volume.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/main-radio-volume.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/radio-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/radio-container.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/radio.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/rxinfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/rxinfo.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/top-bar-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/top-bar-container.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/radio/unicom-guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/radio/unicom-guard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/refresh-multiple-radios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/refresh-multiple-radios.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/settings-modal/audio-apis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/settings-modal/audio-apis.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/settings-modal/audio-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/settings-modal/audio-input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/settings-modal/audio-outputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/settings-modal/audio-outputs.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/settings-modal/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/settings-modal/settings-modal.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/add-frequency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/sidebar/add-frequency.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/add-station.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/sidebar/add-station.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/lastReceivedCallsigns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/sidebar/lastReceivedCallsigns.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/radio-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/sidebar/radio-status.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/TitleBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/TitleBar.scss -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/TitleBar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/TitleBarElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/TitleBarElement.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/TitleBarSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/TitleBarSection.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/session-status/ConnectStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/session-status/ConnectStatus.scss -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/session-status/ConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/session-status/ConnectionStatus.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/session-status/SessionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/session-status/SessionStatus.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/titlebar/useTitleBarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/titlebar/useTitleBarUtils.ts -------------------------------------------------------------------------------- /src/renderer/src/components/updater/Updater.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/Updater.scss -------------------------------------------------------------------------------- /src/renderer/src/components/updater/Updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/Updater.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/CheckingForUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/CheckingForUpdate.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/DownloadingUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/DownloadingUpdate.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/FinishedUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/FinishedUpdate.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/Loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/Loader.scss -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/Loader.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/updater/components/UpdateError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/components/updater/components/UpdateError.tsx -------------------------------------------------------------------------------- /src/renderer/src/helpers/CallsignHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/helpers/CallsignHelper.ts -------------------------------------------------------------------------------- /src/renderer/src/helpers/RadioHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/helpers/RadioHelper.ts -------------------------------------------------------------------------------- /src/renderer/src/helpers/useMiniModeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/helpers/useMiniModeManager.ts -------------------------------------------------------------------------------- /src/renderer/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/index.scss -------------------------------------------------------------------------------- /src/renderer/src/interfaces/IPCInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/interfaces/IPCInterface.ts -------------------------------------------------------------------------------- /src/renderer/src/interfaces/Station.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/interfaces/Station.ts -------------------------------------------------------------------------------- /src/renderer/src/interfaces/StationStateUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/interfaces/StationStateUpdate.ts -------------------------------------------------------------------------------- /src/renderer/src/store/errorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/store/errorStore.ts -------------------------------------------------------------------------------- /src/renderer/src/store/radioStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/store/radioStore.ts -------------------------------------------------------------------------------- /src/renderer/src/store/sessionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/store/sessionStore.ts -------------------------------------------------------------------------------- /src/renderer/src/store/utilStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/store/utilStore.ts -------------------------------------------------------------------------------- /src/renderer/src/style/GlobalRadio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/style/GlobalRadio.scss -------------------------------------------------------------------------------- /src/renderer/src/style/UnicomGuard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/style/UnicomGuard.scss -------------------------------------------------------------------------------- /src/renderer/src/style/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/style/app.scss -------------------------------------------------------------------------------- /src/renderer/src/style/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/style/navbar.scss -------------------------------------------------------------------------------- /src/renderer/src/style/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/renderer/src/style/variables.scss -------------------------------------------------------------------------------- /src/shared/MainVolumeChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/shared/MainVolumeChange.ts -------------------------------------------------------------------------------- /src/shared/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/shared/common.ts -------------------------------------------------------------------------------- /src/shared/config.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/src/shared/config.type.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierr3/TrackAudio/HEAD/tsconfig.web.json --------------------------------------------------------------------------------