├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── crash-report.md │ └── feature_request.md └── workflows │ ├── compile-linux.yml │ ├── compile-macos.yml │ ├── compile-windows.yml │ ├── sentry.yml │ └── translation-validate.yml ├── .gitignore ├── FUNDING.yml ├── Galaxy Buds Plus RFComm Protocol Notes.md ├── GalaxyBudsClient.Android ├── GalaxyBudsClient.Android.csproj ├── Icons │ ├── demo │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ └── full │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_monochrome.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_monochrome.png ├── Impl │ ├── AndroidPlatformImplCreator.cs │ ├── BluetoothService.cs │ ├── DesktopServices.cs │ └── OfficialAppDetector.cs ├── LogcatSink.cs ├── MainActivity.cs ├── Properties │ └── AndroidManifest.xml ├── Resources │ ├── AboutResources.txt │ ├── drawable │ │ └── splash_screen.xml │ ├── values-night │ │ └── colors.xml │ ├── values-v31 │ │ └── styles.xml │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── Utils │ └── Extensions.cs └── build.sh ├── GalaxyBudsClient.Generators ├── Enums │ ├── AttributeExtensions.cs │ ├── CompiledEnumGenerator.cs │ ├── EnumToGenerate.cs │ ├── EnumValueOption.cs │ ├── RootSourceGenerationHelper.cs │ └── SourceGenerationHelper.cs ├── GalaxyBudsClient.Generators.csproj ├── Localization │ └── LocalizationKeySourceGenerator.cs ├── Messages │ ├── HandlerToGenerate.cs │ └── MessageHandlerFactoryGenerator.cs ├── Properties │ └── launchSettings.json └── Utils │ └── CodeGenerator.cs ├── GalaxyBudsClient.Platform.Linux ├── BluetoothService.cs ├── BluetoothSocket.cs ├── DesktopServices.cs ├── GalaxyBudsClient.Platform.Linux.csproj ├── HotkeyBroadcast.cs ├── HotkeyReceiver.cs ├── KeyMapping.cs ├── LinuxPlatformImplCreator.cs └── MediaKeyRemote.cs ├── GalaxyBudsClient.Platform.OSX ├── BluetoothService.cs ├── DesktopServices.cs ├── GalaxyBudsClient.Platform.OSX.csproj ├── HotkeyBroadcast.cs ├── HotkeyReceiver.cs ├── MediaKeyRemote.cs ├── Native │ ├── NativeInterop.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NativeInterop.xcscheme │ ├── include │ │ └── Native.h │ └── src │ │ ├── Bluetooth.h │ │ ├── Bluetooth.mm │ │ ├── BluetoothDeviceWatcher.h │ │ ├── BluetoothDeviceWatcher.mm │ │ ├── HotkeyManager.swift │ │ ├── LaunchAtLoginController.h │ │ ├── LaunchAtLoginController.m │ │ ├── NIBridge.h │ │ ├── NIBridge.mm │ │ ├── NativeInterop-Bridging-Header.h │ │ └── bridge │ │ ├── Native.AppUtils.mm │ │ ├── Native.Bluetooth.mm │ │ └── Native.Memory.mm ├── OsxPlatformImplCreator.cs ├── Unmanaged.cs └── Utils.cs ├── GalaxyBudsClient.Platform.Windows ├── AudioPlaybackDetection.cs ├── Bluetooth │ └── BluetoothService.cs ├── Devices │ ├── RegisterDeviceNotificationSafeHandle.cs │ ├── UnmanagedDevice.cs │ └── Win32DeviceChangeListener.cs ├── GalaxyBudsClient.Platform.Windows.csproj ├── Impl │ ├── DesktopServices.cs │ ├── HotkeyBroadcast.cs │ ├── HotkeyReceiver.cs │ ├── MediaKeyRemote.cs │ └── OfficialAppDetector.cs ├── Unmanaged.cs ├── Utils │ ├── MacUtils.cs │ └── PointerUtils.cs ├── WindowMessage.cs ├── WindowsPlatformImplCreator.cs ├── WindowsUtils.cs └── WndProcClient.cs ├── GalaxyBudsClient.Platform.WindowsRT ├── BluetoothDeviceRT.cs ├── BluetoothService.cs ├── GalaxyBudsClient.Platform.WindowsRT.csproj ├── Utils.cs └── WindowsRtPlatformImplCreator.cs ├── GalaxyBudsClient.Platform ├── BaseDesktopServices.cs ├── BluetoothException.cs ├── GalaxyBudsClient.Platform.csproj ├── Interfaces │ ├── IBluetoothService.cs │ ├── IDesktopServices.cs │ ├── IHotkey.cs │ ├── IHotkeyBroadcast.cs │ ├── IHotkeyReceiver.cs │ ├── IMediaKeyRemote.cs │ ├── INotificationListener.cs │ ├── IOfficialAppDetector.cs │ └── IPlatformImplCreator.cs ├── Model │ ├── BluetoothCoD.cs │ ├── BluetoothDevice.cs │ └── KeyDefinitions.cs ├── PlatformUtils.cs └── Stubs │ ├── DummyBluetoothService.cs │ ├── DummyDesktopServices.cs │ ├── DummyHotkeyBroadcast.cs │ ├── DummyHotkeyReceiver.cs │ ├── DummyMediaKeyRemote.cs │ ├── DummyNotificationListener.cs │ ├── DummyOfficialAppDetector.cs │ ├── DummyPlatformImplCreator.cs │ └── MsgIds.cs ├── GalaxyBudsClient.Tests ├── Buds │ └── ExtendedStatusUpdateTests.cs ├── Buds2 │ └── ExtendedStatusUpdateTests.cs ├── Buds2Pro │ └── ExtendedStatusUpdateTests.cs ├── BudsFe │ └── ExtendedStatusUpdateTests.cs ├── BudsLive │ └── ExtendedStatusUpdateTests.cs ├── BudsPlus │ └── ExtendedStatusUpdateTests.cs ├── BudsPro │ └── ExtendedStatusUpdateTests.cs ├── GalaxyBudsClient.Tests.csproj ├── GlobalUsings.cs ├── Info.plist ├── MessageTests.cs └── TestData │ └── ExtendedStatusUpdate │ ├── Buds2Pro_rev13.bin │ ├── Buds2_rev10.bin │ ├── BudsFe_rev2.bin │ ├── BudsLive_rev9.bin │ ├── BudsPlus_rev13.bin │ ├── BudsPro_rev10.bin │ └── Buds_rev3.bin ├── GalaxyBudsClient.sln ├── GalaxyBudsClient.sln.DotSettings ├── GalaxyBudsClient ├── App.axaml ├── App.axaml.cs ├── Application.props ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appstore1024.png │ │ ├── ipad152.png │ │ ├── ipad76.png │ │ ├── ipadNotification20.png │ │ ├── ipadNotification40.png │ │ ├── ipadPro167.png │ │ ├── ipadSettings29.png │ │ ├── ipadSettings58.png │ │ ├── ipadSpotlight40.png │ │ ├── ipadSpotlight80.png │ │ ├── iphone120.png │ │ ├── iphone180.png │ │ ├── mac1024.png │ │ ├── mac128.png │ │ ├── mac16.png │ │ ├── mac256.png │ │ ├── mac32.png │ │ ├── mac512.png │ │ ├── mac64.png │ │ ├── notification40.png │ │ ├── notification60.png │ │ ├── settings58.png │ │ ├── settings87.png │ │ ├── spotlight120.png │ │ └── spotlight80.png │ └── Contents.json ├── Cli │ ├── CliHandler.cs │ └── Ipc │ │ ├── IpcService.cs │ │ └── Objects │ │ ├── ApplicationObject.cs │ │ ├── BaseObjectWithProperties.cs │ │ ├── BaseProperties.cs │ │ └── DeviceObject.cs ├── FodyWeavers.xml ├── GalaxyBudsClient.csproj ├── Info.plist ├── Interface │ ├── Controls │ │ ├── CustomInfoBar.cs │ │ ├── EarbudCompactStatusUnit.axaml │ │ ├── EarbudCompactStatusUnit.axaml.cs │ │ ├── EarbudControlUnit.axaml │ │ ├── EarbudControlUnit.axaml.cs │ │ ├── EarbudIcon.cs │ │ ├── EarbudIconUnit.axaml │ │ ├── EarbudIconUnit.axaml.cs │ │ ├── EarbudStatusUnit.axaml │ │ ├── EarbudStatusUnit.axaml.cs │ │ ├── EmptyView.axaml │ │ ├── EmptyView.axaml.cs │ │ ├── GlowingToggleButton.axaml │ │ ├── GlowingToggleButton.axaml.cs │ │ ├── MuteToggleButton.axaml │ │ ├── MuteToggleButton.axaml.cs │ │ ├── SettingsColorItem.cs │ │ ├── SettingsComboBoxItem.cs │ │ ├── SettingsDescriptionItem.cs │ │ ├── SettingsGroup.cs │ │ ├── SettingsSliderItem.cs │ │ ├── SettingsSwitchItem.cs │ │ └── SettingsSymbolItem.cs │ ├── Converters │ │ ├── AmbientCustomStrengthConverter.cs │ │ ├── AmbientStrengthConverter.cs │ │ ├── AmbientToneConverter.cs │ │ ├── BatterySymbolConverter.cs │ │ ├── ColorUintConverter.cs │ │ ├── DeviceSelectStateConverter.cs │ │ ├── EnumToDescriptionConverter.cs │ │ ├── EqPresetConverter.cs │ │ ├── FuncConverters.cs │ │ ├── IntToStringConverter.cs │ │ ├── ModelNameConverter.cs │ │ ├── MonthValueConverter.cs │ │ └── StereoBalanceConverter.cs │ ├── Developer │ │ ├── DevTools.axaml │ │ ├── DevTools.axaml.cs │ │ ├── DevToolsView.axaml │ │ ├── DevToolsView.axaml.cs │ │ ├── TranslatorTools.axaml │ │ ├── TranslatorTools.axaml.cs │ │ ├── TranslatorToolsView.axaml │ │ └── TranslatorToolsView.axaml.cs │ ├── Dialogs │ │ ├── BudsPopup.axaml │ │ ├── BudsPopup.axaml.cs │ │ ├── DeveloperOptionsDialog.cs │ │ ├── DeviceSelectionDialog.axaml │ │ ├── DeviceSelectionDialog.axaml.cs │ │ ├── DumpImportDialog.cs │ │ ├── FirmwareUpdateDialog.cs │ │ ├── HiddenModeTerminalDialog.axaml │ │ ├── HiddenModeTerminalDialog.axaml.cs │ │ ├── HotkeyEditorDialog.axaml │ │ ├── HotkeyEditorDialog.axaml.cs │ │ ├── HotkeyRecorderDialog.axaml │ │ ├── HotkeyRecorderDialog.axaml.cs │ │ ├── InputDialog.cs │ │ ├── ManualPairDialog.axaml │ │ ├── ManualPairDialog.axaml.cs │ │ ├── MessageBox.cs │ │ ├── QuestionBox.cs │ │ ├── SelfTestDialog.cs │ │ ├── TouchActionEditorDialog.axaml │ │ ├── TouchActionEditorDialog.axaml.cs │ │ └── TraceDownloaderDialog.cs │ ├── MainView.axaml │ ├── MainView.axaml.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── MarkupExtensions │ │ ├── DeviceColorBindingSource.cs │ │ ├── DeviceIdHexBindingSource.cs │ │ ├── DeviceStateBindingExtension.cs │ │ ├── EventDispatcherAction.cs │ │ ├── HiddenCmdBindingSource.cs │ │ ├── LocalizationAwareComboBoxBehavior.cs │ │ ├── LocalizationAwareSliderBehavior.cs │ │ ├── NavigateToPageAction.cs │ │ ├── OpenLinkAction.cs │ │ ├── RequiresAnyFeatureBehavior.cs │ │ ├── RequiresConnectedDeviceBehavior.cs │ │ ├── RequiresDesktopBehavior.cs │ │ ├── RequiresFeatureAndDesktopBehavior.cs │ │ ├── RequiresFeatureBehavior.cs │ │ └── TranslateExtension.cs │ ├── Pages │ │ ├── AdvancedPage.axaml │ │ ├── AdvancedPage.axaml.cs │ │ ├── AmbientCustomizePage.axaml │ │ ├── AmbientCustomizePage.axaml.cs │ │ ├── BasePage.cs │ │ ├── BatteryHistoryPage.axaml │ │ ├── BatteryHistoryPage.axaml.cs │ │ ├── BixbyRemapPage.axaml │ │ ├── BixbyRemapPage.axaml.cs │ │ ├── DevicesPage.axaml │ │ ├── DevicesPage.axaml.cs │ │ ├── EqualizerPage.axaml │ │ ├── EqualizerPage.axaml.cs │ │ ├── FindMyBudsPage.axaml │ │ ├── FindMyBudsPage.axaml.cs │ │ ├── FirmwarePage.axaml │ │ ├── FirmwarePage.axaml.cs │ │ ├── FitTestPage.axaml │ │ ├── FitTestPage.axaml.cs │ │ ├── FmmConfigPage.axaml │ │ ├── FmmConfigPage.axaml.cs │ │ ├── HiddenModePage.axaml │ │ ├── HiddenModePage.axaml.cs │ │ ├── HomePage.axaml │ │ ├── HomePage.axaml.cs │ │ ├── HotkeyPage.axaml │ │ ├── HotkeyPage.axaml.cs │ │ ├── NoiseControlPage.axaml │ │ ├── NoiseControlPage.axaml.cs │ │ ├── RenamePage.axaml │ │ ├── RenamePage.axaml.cs │ │ ├── SettingsPage.axaml │ │ ├── SettingsPage.axaml.cs │ │ ├── SystemInfoPage.axaml │ │ ├── SystemInfoPage.axaml.cs │ │ ├── SystemPage.axaml │ │ ├── SystemPage.axaml.cs │ │ ├── TouchpadPage.axaml │ │ ├── TouchpadPage.axaml.cs │ │ ├── UsageReportPage.axaml │ │ ├── UsageReportPage.axaml.cs │ │ ├── WelcomePage.axaml │ │ └── WelcomePage.axaml.cs │ ├── Services │ │ └── NavigationService.cs │ ├── StyledWindow │ │ ├── IStyledWindow.cs │ │ ├── StyledAppWindow.cs │ │ └── StyledWindow.cs │ ├── Styling │ │ ├── AppStyles.axaml │ │ ├── NavigationViewStyles.axaml │ │ ├── Overrides │ │ │ ├── DefaultOverrides.axaml │ │ │ └── OsxOverrides.axaml │ │ ├── Resources.axaml │ │ └── SettingsGroupStyles.axaml │ └── ViewModels │ │ ├── BreadcrumbViewModel.cs │ │ ├── Controls │ │ ├── EarbudCompactStatusUnitViewModel.cs │ │ └── EarbudStatusUnitViewModel.cs │ │ ├── Developer │ │ ├── DevToolsViewModel.cs │ │ ├── MessageViewModel.cs │ │ └── PropertyViewModel.cs │ │ ├── Dialogs │ │ ├── DeviceSelectionDialogViewModel.cs │ │ ├── HiddenModeTerminalDialogViewModel.cs │ │ ├── HotkeyEditorDialogViewModel.cs │ │ ├── HotkeyRecorderDialogViewModel.cs │ │ ├── ManualPairDialogViewModel.cs │ │ └── TouchActionEditorDialogViewModel.cs │ │ ├── ItemViewHolder.cs │ │ ├── MainViewViewModel.cs │ │ ├── Pages │ │ ├── AdvancedPageViewModel.cs │ │ ├── AmbientCustomizePageViewModel.cs │ │ ├── BatteryHistoryPageViewModel.cs │ │ ├── BixbyRemapPageViewModel.cs │ │ ├── DevicesPageViewModel.cs │ │ ├── EqualizerPageViewModel.cs │ │ ├── FindMyBudsPageViewModel.cs │ │ ├── FirmwarePageViewModel.cs │ │ ├── FitTestPageViewModel.cs │ │ ├── FmmConfigPageViewModel.cs │ │ ├── HiddenModePageViewModel.cs │ │ ├── HomePageViewModel.cs │ │ ├── HotkeyPageViewModel.cs │ │ ├── NoiseControlPageViewModel.cs │ │ ├── RenamePageViewModel.cs │ │ ├── SettingsPageViewModel.cs │ │ ├── SystemInfoPageViewModel.cs │ │ ├── SystemPageViewModel.cs │ │ ├── TouchpadPageViewModel.cs │ │ ├── UsageReportPageViewModel.cs │ │ └── WelcomePageViewModel.cs │ │ ├── TouchActionViewModel.cs │ │ └── ViewModelBase.cs ├── Message │ ├── BaseMessageHandler.cs │ ├── Decoder │ │ ├── AcknowledgementDecoder.cs │ │ ├── AmbientModeUpdateDecoder.cs │ │ ├── AmbientVoiceFocusDecoder.cs │ │ ├── AmbientVolumeDecoder.cs │ │ ├── AmbientWearingUpdateDecoder.cs │ │ ├── BaseMessageDecoder.cs │ │ ├── BatteryTypeDecoder.cs │ │ ├── BondedDevicesDecoder.cs │ │ ├── CouplingHelperReadDecoder.cs │ │ ├── CradleSerialNumberDecoder.cs │ │ ├── DebugBuildInfoDecoder.cs │ │ ├── DebugGetAllDataDecoder.cs │ │ ├── DebugModeVersionDecoder.cs │ │ ├── DebugSerialNumberDecoder.cs │ │ ├── DebugSkuDecoder.cs │ │ ├── ExtendedStatusUpdateDecoder.cs │ │ ├── FitTestDecoder.cs │ │ ├── FotaControlDecoder.cs │ │ ├── FotaDownloadDataDecoder.cs │ │ ├── FotaResultDecoder.cs │ │ ├── FotaSessionDecoder.cs │ │ ├── FotaUpdateDecoder.cs │ │ ├── GenericEventDecoder.cs │ │ ├── GenericResponseDecoder.cs │ │ ├── GetFmmConfigDecoder.cs │ │ ├── HiddenCmdDataDecoder.cs │ │ ├── IBasicStatusUpdate.cs │ │ ├── LogCoredumpDataDecoder.cs │ │ ├── LogCoredumpDataSizeDecoder.cs │ │ ├── LogTraceDataDecoder.cs │ │ ├── LogTraceStartDecoder.cs │ │ ├── MeteringReportDecoder.cs │ │ ├── MultipointInfoDecoder.cs │ │ ├── MuteUpdateDecoder.cs │ │ ├── NoiseControlUpdateDecoder.cs │ │ ├── NoiseReductionModeUpdateDecoder.cs │ │ ├── OverheatDecoder.cs │ │ ├── ResetResponseDecoder.cs │ │ ├── SelfTestDecoder.cs │ │ ├── SetFmmConfigDecoder.cs │ │ ├── SetInBandRingtoneDecoder.cs │ │ ├── SetOtherOptionDecoder.cs │ │ ├── SocBatteryCycleDecoder.cs │ │ ├── SoftwareVersionOtaDecoder.cs │ │ ├── SpatialAudioContolParser.cs │ │ ├── SpatialAudioDataDecoder.cs │ │ ├── SppAlternativeMessageDecoder.cs │ │ ├── SppRoleStateDecoder.cs │ │ ├── StatusUpdateDecoder.cs │ │ ├── TapTestModeEventDecoder.cs │ │ ├── TouchUpdateDecoder.cs │ │ ├── Usage2ReportDecoder.cs │ │ ├── UsageReportDecoder.cs │ │ ├── VoiceWakeupEventDecoder.cs │ │ └── WaterDetectHistoryDecoder.cs │ ├── DeviceLogManager.cs │ ├── DeviceMessageCache.cs │ ├── Encoder │ │ ├── BaseMessageEncoder.cs │ │ ├── CustomizeAmbientEncoder.cs │ │ ├── FmgMuteEarbudEncoder.cs │ │ ├── FotaControlEncoder.cs │ │ ├── FotaDownloadDataEncoder.cs │ │ ├── HiddenCmdDataEncoder.cs │ │ ├── LockTouchpadEncoder.cs │ │ ├── LogCoredumpDataEncoder.cs │ │ ├── LogTraceDataEncoder.cs │ │ ├── ManagerInfoEncoder.cs │ │ ├── SetEqualizerEncoder.cs │ │ ├── SetFmmConfigEncoder.cs │ │ ├── SetTouchOptionsEncoder.cs │ │ ├── TouchAndHoldNoiseControlsEncoder.cs │ │ └── UpdateTimeEncoder.cs │ ├── FirmwareTransferManager.cs │ ├── HiddenCmds.cs │ ├── MessageAsDictionary.cs │ ├── Parameter │ │ ├── CustomizeSoundAckParameter.cs │ │ ├── IAckParameter.cs │ │ ├── LockTouchpadAckParameter.cs │ │ ├── MuteEarbudAckParameter.cs │ │ ├── SetTouchpadOptionAckParameter.cs │ │ ├── SimpleAckParameter.cs │ │ └── TouchAndHoldNoiseControlsAckParameter.cs │ ├── SpatialSensorManager.cs │ ├── SppAlternativeMessage.cs │ ├── SppMessage.cs │ ├── SppMessageEnums.cs │ └── SppMessageReceiver.cs ├── Migrations │ ├── 20240503133123_InitialBatteryStatsDb.Designer.cs │ ├── 20240503133123_InitialBatteryStatsDb.cs │ └── HistoryDbContextModelSnapshot.cs ├── Model │ ├── Attributes │ │ ├── AssociatedModelAttribute.cs │ │ ├── DeviceAttribute.cs │ │ ├── LocalizableDescriptionAttribute.cs │ │ ├── ModelMetadataAttribute.cs │ │ ├── PostfixAttribute.cs │ │ └── RequiresPlatformAttribute.cs │ ├── Config │ │ ├── Legacy │ │ │ ├── ConfigArrayParser.cs │ │ │ ├── HotkeyArrayParser.cs │ │ │ ├── ILegacySettings.cs │ │ │ └── LegacySettings.cs │ │ ├── Settings.cs │ │ ├── SettingsData.cs │ │ └── SettingsSerializerContext.cs │ ├── Constants.cs │ ├── CustomAction.cs │ ├── Database │ │ ├── HistoryDbContext.cs │ │ └── HistoryRecord.cs │ ├── EventDispatcher.cs │ ├── Events.cs │ ├── Firmware │ │ ├── FirmwareBinary.cs │ │ ├── FirmwareBlockChangedEventArgs.cs │ │ ├── FirmwareConstants.cs │ │ ├── FirmwareParseException.cs │ │ ├── FirmwareProgressEventArgs.cs │ │ ├── FirmwareRemoteBinary.cs │ │ ├── FirmwareRemoteClient.cs │ │ ├── FirmwareSegment.cs │ │ └── FirmwareTransferException.cs │ ├── Hotkey.cs │ ├── InMemoryBinaryDocument.cs │ ├── InvalidPacketException.cs │ ├── MiniCommand.cs │ └── Specifications │ │ ├── Buds2DeviceSpec.cs │ │ ├── Buds2ProDeviceSpec.cs │ │ ├── Buds3DeviceSpec.cs │ │ ├── Buds3ProDeviceSpec.cs │ │ ├── BudsDeviceSpec.cs │ │ ├── BudsFeDeviceSpec.cs │ │ ├── BudsLiveDeviceSpec.cs │ │ ├── BudsPlusDeviceSpec.cs │ │ ├── BudsProDeviceSpec.cs │ │ ├── DeviceSpecHelper.cs │ │ ├── Features.cs │ │ ├── IDeviceSpec.cs │ │ ├── StubDeviceSpec.cs │ │ ├── Touch │ │ ├── BudsLiveTouchMap.cs │ │ ├── BudsPlusTouchMap.cs │ │ ├── BudsTouchMap.cs │ │ ├── ITouchMap.cs │ │ ├── StandardTouchMap.cs │ │ └── StubTouchMap.cs │ │ └── TrayItemTypes.cs ├── Platform.props ├── Platform │ ├── BluetoothImpl.cs │ ├── DeviceManager.cs │ ├── HotkeyReceiverManager.cs │ └── PlatformImpl.cs ├── Program.cs ├── Resources │ ├── Android │ │ ├── Orange │ │ │ ├── android │ │ │ │ ├── play_store_512.png │ │ │ │ └── res │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── androidtv │ │ │ │ └── res │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ └── tv_banner.png │ │ │ ├── ios │ │ │ │ ├── AppIcon-20@2x.png │ │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ │ ├── AppIcon-20@3x.png │ │ │ │ ├── AppIcon-20~ipad.png │ │ │ │ ├── AppIcon-29.png │ │ │ │ ├── AppIcon-29@2x.png │ │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ │ ├── AppIcon-29@3x.png │ │ │ │ ├── AppIcon-29~ipad.png │ │ │ │ ├── AppIcon-40@2x.png │ │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ │ ├── AppIcon-40@3x.png │ │ │ │ ├── AppIcon-40~ipad.png │ │ │ │ ├── AppIcon-60@2x~car.png │ │ │ │ ├── AppIcon-60@3x~car.png │ │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ │ ├── AppIcon@2x.png │ │ │ │ ├── AppIcon@2x~ipad.png │ │ │ │ ├── AppIcon@3x.png │ │ │ │ ├── AppIcon~ios-marketing.png │ │ │ │ ├── AppIcon~ipad.png │ │ │ │ └── Contents.json │ │ │ ├── macos │ │ │ │ └── AppIcon.icns │ │ │ ├── play-store │ │ │ │ └── play_store_feature_graphic.png │ │ │ └── web │ │ │ │ ├── README.txt │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon-192-maskable.png │ │ │ │ ├── icon-192.png │ │ │ │ ├── icon-512-maskable.png │ │ │ │ └── icon-512.png │ │ ├── earbuds.png │ │ └── icon_editing.txt │ ├── Device │ │ ├── Realistic │ │ │ ├── Buds2AbsoluteBlack-0.png │ │ │ ├── Buds2AbsoluteBlack-1.png │ │ │ ├── Buds2Black-0.png │ │ │ ├── Buds2Black-1.png │ │ │ ├── Buds2Green-0.png │ │ │ ├── Buds2Green-1.png │ │ │ ├── Buds2Grey-0.png │ │ │ ├── Buds2Grey-1.png │ │ │ ├── Buds2MaisonKitsune-0.png │ │ │ ├── Buds2MaisonKitsune-1.png │ │ │ ├── Buds2ProGrey-0.png │ │ │ ├── Buds2ProGrey-1.png │ │ │ ├── Buds2ProViolet-0.png │ │ │ ├── Buds2ProViolet-1.png │ │ │ ├── Buds2ProWhite-0.png │ │ │ ├── Buds2ProWhite-1.png │ │ │ ├── Buds2ThomBrown-0.png │ │ │ ├── Buds2ThomBrown-1.png │ │ │ ├── Buds2Violet-0.png │ │ │ ├── Buds2Violet-1.png │ │ │ ├── Buds2White-0.png │ │ │ ├── Buds2White-1.png │ │ │ ├── Buds3ProSilver-0.png │ │ │ ├── Buds3ProSilver-1.png │ │ │ ├── Buds3ProWhite-0.png │ │ │ ├── Buds3ProWhite-1.png │ │ │ ├── Buds3Silver-0.png │ │ │ ├── Buds3Silver-1.png │ │ │ ├── Buds3White-0.png │ │ │ ├── Buds3White-1.png │ │ │ ├── BudsFeGraphite-0.png │ │ │ ├── BudsFeGraphite-1.png │ │ │ ├── BudsFeWhite-0.png │ │ │ ├── BudsFeWhite-1.png │ │ │ ├── BudsLiveBlack-0.png │ │ │ ├── BudsLiveBlack-1.png │ │ │ ├── BudsLiveBlue-0.png │ │ │ ├── BudsLiveBlue-1.png │ │ │ ├── BudsLiveBronze-0.png │ │ │ ├── BudsLiveBronze-1.png │ │ │ ├── BudsLiveGrey-0.png │ │ │ ├── BudsLiveGrey-1.png │ │ │ ├── BudsLiveRed-0.png │ │ │ ├── BudsLiveRed-1.png │ │ │ ├── BudsLiveThomBrown-0.png │ │ │ ├── BudsLiveThomBrown-1.png │ │ │ ├── BudsLiveWhite-0.png │ │ │ ├── BudsLiveWhite-1.png │ │ │ ├── BudsPlusBlack-0.png │ │ │ ├── BudsPlusBlack-1.png │ │ │ ├── BudsPlusBlue-0.png │ │ │ ├── BudsPlusBlue-1.png │ │ │ ├── BudsPlusDeepBlue-0.png │ │ │ ├── BudsPlusDeepBlue-1.png │ │ │ ├── BudsPlusPink-0.png │ │ │ ├── BudsPlusPink-1.png │ │ │ ├── BudsPlusPurple-0.png │ │ │ ├── BudsPlusPurple-1.png │ │ │ ├── BudsPlusRed-0.png │ │ │ ├── BudsPlusRed-1.png │ │ │ ├── BudsPlusThomBrown-0.png │ │ │ ├── BudsPlusThomBrown-1.png │ │ │ ├── BudsPlusWhite-0.png │ │ │ ├── BudsPlusWhite-1.png │ │ │ ├── BudsProBlack-0.png │ │ │ ├── BudsProBlack-1.png │ │ │ ├── BudsProSilver-0.png │ │ │ ├── BudsProSilver-1.png │ │ │ ├── BudsProViolet-0.png │ │ │ ├── BudsProViolet-1.png │ │ │ ├── BudsProWhite-0.png │ │ │ ├── BudsProWhite-1.png │ │ │ └── split.sh │ │ ├── left_beans.png │ │ ├── left_pro.png │ │ ├── right_beans.png │ │ └── right_pro.png │ ├── Fonts │ │ └── RobotoMono-Regular.ttf │ ├── icon.ico │ ├── icon.png │ ├── icon_black_small_tray.png │ ├── icon_black_tray.ico │ ├── icon_black_tray.png │ ├── icon_small.png │ ├── icon_white_outlined_multi_tray.ico │ ├── icon_white_outlined_single_tray.ico │ ├── icon_white_outlined_single_tray.svg │ ├── icon_white_outlined_tray.ico │ ├── icon_white_outlined_tray.png │ ├── icon_white_outlined_tray.svg │ ├── icon_white_small_tray.png │ ├── icon_white_tray.ico │ └── icon_white_tray.png ├── Scripting │ ├── Experiment │ │ ├── ExperimentClient.cs │ │ ├── ExperimentManager.cs │ │ ├── ExperimentRequest.cs │ │ ├── ExperimentResult.cs │ │ └── ExperimentRuntimeResult.cs │ ├── Hooks │ │ ├── IDecoderHook.cs │ │ ├── IExperimentHook.cs │ │ ├── IHook.cs │ │ ├── IMessageHook.cs │ │ └── IRawStreamHook.cs │ ├── ScriptLogger.cs │ └── ScriptManager.cs ├── Utils │ ├── BatteryHistoryManager.cs │ ├── BoyerMoore.cs │ ├── ByteArrayUtils.cs │ ├── CrashReports.cs │ ├── Crc16.cs │ ├── DisposableQuery.cs │ ├── Extensions │ │ ├── AsyncExtensions.cs │ │ ├── ControlExtensions.cs │ │ ├── DataExtensions.cs │ │ ├── FilePickerExtensions.cs │ │ ├── HotkeyExtensions.cs │ │ ├── MathExtensions.cs │ │ └── ReflectionExtensions.cs │ ├── HexUtils.cs │ ├── Interface │ │ ├── Dialogs.cs │ │ ├── LocalizationUtils.cs │ │ ├── TrayManager.cs │ │ └── WindowIconRenderer.cs │ └── Tools │ │ └── HiddenCmdScanner.cs ├── app.manifest ├── i18n │ ├── br.axaml │ ├── cn.axaml │ ├── cz.axaml │ ├── de.axaml │ ├── en.axaml │ ├── es.axaml │ ├── fr.axaml │ ├── gr.axaml │ ├── hu.axaml │ ├── il.axaml │ ├── in.axaml │ ├── it.axaml │ ├── ja.axaml │ ├── ko.axaml │ ├── nl.axaml │ ├── pt.axaml │ ├── ro.axaml │ ├── ru.axaml │ ├── sv.axaml │ ├── tr.axaml │ ├── tw.axaml │ ├── ua.axaml │ └── vn.axaml └── nuget.config ├── GalaxyBudsPlus_HiddenDebugFeatures.md ├── GalaxyBudsRFCommProtocol.md ├── InTheHand.Net.Personal.Core ├── FakeAttributes.cs ├── InTheHand.Net.Personal.Core.csproj ├── InTheHand.snk ├── Net.Bluetooth.AttributeIds │ ├── DeviceIdAttributeId.cs │ ├── HidProfileAttributeId.cs │ ├── SdpSpecAttributeIds.cs │ └── SigAttributeIds.cs ├── Net.Bluetooth.BlueSoleil │ ├── 32feet BlueSoleil Test.html │ ├── BlueSoleilSerialPortNetworkStream.cs │ ├── BluesoleilClient.cs │ ├── BluesoleilDeviceInfo.cs │ ├── BluesoleilException.cs │ ├── BluesoleilFactory.cs │ ├── BluesoleilRadio.cs │ ├── BluesoleilSecurity.cs │ ├── BluesoleilUtils.cs │ ├── BtSdkError.cs │ ├── IBluesoleilApi.cs │ ├── IBluesoleilConnection.cs │ ├── ISerialPortWrapper.cs │ ├── NativeMethods.cs │ ├── NullBluesoleilConnection.cs │ ├── RealBluesoleilApi.cs │ ├── SerialPortNetworkStream.cs │ ├── StackConsts.cs │ └── Structs.cs ├── Net.Bluetooth.BlueZ │ ├── 32feet BlueZ Test.html │ ├── BluezClient.cs │ ├── BluezDbus.cs │ ├── BluezDbusInterface.cs │ ├── BluezDeviceInfo.cs │ ├── BluezError.cs │ ├── BluezFactory.cs │ ├── BluezL2CapClient.cs │ ├── BluezL2capEndPoint.cs │ ├── BluezL2capListener.cs │ ├── BluezListener.cs │ ├── BluezRadio.cs │ ├── BluezRfcommEndPoint.cs │ ├── BluezSdpQuery.cs │ ├── BluezSecurity.cs │ ├── BluezSocketOptionHelper.cs │ ├── BluezUtils.cs │ ├── NativeMethods.cs │ ├── StackConsts.cs │ └── Structs.cs ├── Net.Bluetooth.Droid │ ├── AndroidBthClient.cs │ ├── AndroidBthDeviceInfo.cs │ ├── AndroidBthFactory.cs │ ├── AndroidBthInquiry.cs │ ├── AndroidBthInquiry2.cs │ ├── AndroidBthListener.cs │ ├── AndroidBthMockFactory.cs │ ├── AndroidBthRadio.cs │ ├── AndroidBthSocketStream.cs │ ├── AndroidBthUtils.cs │ ├── AndroidMockValues.cs │ ├── FakeAndroidApi.cs │ └── MockAndroidBth1.cs ├── Net.Bluetooth.Factory │ ├── BluetoothConnector.cs │ ├── BluetoothFactory.cs │ ├── BluetoothRfcommStreamConnector.cs │ ├── CommonBluetoothClient.cs │ ├── CommonBluetoothInquiry.cs │ ├── CommonBluetoothListener.cs │ ├── CommonDiscoveryBluetoothClient.cs │ ├── CommonRfcommStream.cs │ ├── CommonSocketExceptions.cs │ ├── DecoratorNetworkStream.cs │ ├── DiscoDevsParams.cs │ ├── IBluetoothClient.cs │ ├── IBluetoothDeviceInfo.cs │ ├── IBluetoothFactoryFactory.cs │ ├── IBluetoothListener.cs │ ├── IBluetoothRadio.cs │ ├── IBluetoothSecurity.cs │ ├── IL2CapClient.cs │ ├── IUsesBluetoothConnectorImplementsServiceLookup.cs │ ├── RfcommDecoratorNetworkStream.cs │ └── TimeoutDecorStream.cs ├── Net.Bluetooth.Msft │ ├── BLOB.cs │ ├── BLUETOOTH_DEVICE_INFO.cs │ ├── BLUETOOTH_FIND_RADIO_PARAMS.cs │ ├── BLUETOOTH_RADIO_INFO.cs │ ├── BTHNS_BLOB.cs │ ├── BTHNS_INQUIRYBLOB.cs │ ├── BTHNS_RESULT.cs │ ├── BTHNS_SETBLOB.cs │ ├── BTH_DEVICE_INFO.cs │ ├── BTH_LOCAL_VERSION.cs │ ├── BTH_RADIO_INFO.cs │ ├── BthInquiryResult.cs │ ├── CSADDR_INFO.cs │ ├── MicrosoftSdpService.cs │ ├── MsftPlaying.cs │ ├── NativeMethods.cs │ ├── SocketBluetoothClient.cs │ ├── SocketsBluetoothFactory.cs │ ├── WSAQUERYSET.cs │ ├── WinCEBluetoothRadio.cs │ ├── WindowsBluetoothDeviceInfo.cs │ ├── WindowsBluetoothListener.cs │ ├── WindowsBluetoothRadio.cs │ ├── WindowsBluetoothSecurity.cs │ └── WindowsRadioHandle.cs ├── Net.Bluetooth.NoMsft │ ├── NoMsftIrDAListener.cs │ └── NoMsftWindowsBluetoothDeviceInfo.cs ├── Net.Bluetooth.StonestreetOne │ ├── BluetopiaClient.cs │ ├── BluetopiaDeviceInfo.cs │ ├── BluetopiaError.cs │ ├── BluetopiaFactory.cs │ ├── BluetopiaFakeApi.cs │ ├── BluetopiaFakeFactory.cs │ ├── BluetopiaListener.cs │ ├── BluetopiaPacketDebug.cs │ ├── BluetopiaPlaying.cs │ ├── BluetopiaRadio.cs │ ├── BluetopiaRealApi.cs │ ├── BluetopiaRfcommStream.cs │ ├── BluetopiaSdpCreator.cs │ ├── BluetopiaSdpQuery.cs │ ├── BluetopiaSecurity.cs │ ├── BluetopiaSocketException.cs │ ├── BluetopiaUtils.cs │ ├── IBluetopiaApi.cs │ ├── IBluetopiaSecurity.cs │ ├── NativeMethods.cs │ ├── StackConsts.cs │ └── Structs.cs ├── Net.Bluetooth.Widcomm │ ├── IBtIf.cs │ ├── IRfCommIf.cs │ ├── IRfcommPort.cs │ ├── ISdpDiscoveryRecordsBuffer.cs │ ├── ISdpService.cs │ ├── ITmpBluetoothSerialPort.cs │ ├── L2CapIf.cs │ ├── L2CapPort.cs │ ├── SdpDiscoveryRecordsBuffer.cs │ ├── SdpService.cs │ ├── WidcommBluetoothClient.cs │ ├── WidcommBluetoothDeviceInfo.cs │ ├── WidcommBluetoothFactory.cs │ ├── WidcommBluetoothListener.cs │ ├── WidcommBluetoothRadio.cs │ ├── WidcommBluetoothSecurity.cs │ ├── WidcommBtIf.cs │ ├── WidcommBtInterface.cs │ ├── WidcommL2CapClient.cs │ ├── WidcommL2CapListener.cs │ ├── WidcommNativeBits.cs │ ├── WidcommPlaying.cs │ ├── WidcommPortSingleThreader.cs │ ├── WidcommRfCommIf.cs │ ├── WidcommRfcommInterface.cs │ ├── WidcommRfcommPort.cs │ ├── WidcommRfcommStream.cs │ ├── WidcommSdpServiceCreator.cs │ ├── WidcommSerialPort.cs │ ├── WidcommSocketExceptions.cs │ ├── WidcommSppClient.cs │ ├── WidcommSppSocketExceptions.cs │ ├── WidcommStBtIf.cs │ ├── WidcommStRfCommIf.cs │ ├── WidcommStructs.cs │ └── WidcommUtils.cs ├── Net.Bluetooth │ ├── AsyncCompletedEventArgs.cs │ ├── AsyncOperation.cs │ ├── AsyncOperationManager.cs │ ├── BDIF_BluetoothDeviceInfoProperties.cs │ ├── BluetoothAuthenticationMethod.cs │ ├── BluetoothAuthenticationRequirements.cs │ ├── BluetoothComponent.cs │ ├── BluetoothFactoryConfig.cs │ ├── BluetoothFactorySection.cs │ ├── BluetoothIoCapability.cs │ ├── BluetoothPublicFactory.cs │ ├── BluetoothRadio.cs │ ├── BluetoothSecurity.cs │ ├── BluetoothService.cs │ ├── BluetoothSocketOptionLevel.cs │ ├── BluetoothSocketOptionName.cs │ ├── BluetoothVersion.cs │ ├── BluetoothWin32Authentication.cs │ ├── BluetoothWin32AuthenticationEventArgs.cs │ ├── BluetoothWin32AuthenticationEx.cs │ ├── BluetoothWin32EventArgs.cs │ ├── BluetoothWin32Events.cs │ ├── ClassOfDevice.cs │ ├── DeviceClass.cs │ ├── DiscoverDevicesEventArgs.cs │ ├── HardwareStatus.cs │ ├── HciAndLmpVersions.cs │ ├── LinkPolicy.cs │ ├── LmpExtendedFeatures.cs │ ├── LmpFeatures.cs │ ├── LmpFeaturesUtils.cs │ ├── Manufacturer.cs │ ├── NullBluetoothFactory.cs │ ├── NullBtCli.cs │ ├── NullBtListener.cs │ ├── NullRfcommStream.cs │ ├── RadioMode.cs │ ├── RadioModes.cs │ ├── RadioVersions.cs │ ├── SdpQueryType.cs │ └── ServiceClass.cs ├── Net.Bluetooth_Sdp │ ├── ISdpNodeContainer.cs │ ├── ISdpRecord.cs │ ├── ISdpSearch.cs │ ├── ISdpStream.cs │ ├── ISdpWalk.cs │ ├── NodeData.cs │ ├── SdpRecordTemp.cs │ └── SdpSpecificType.cs ├── Net.Bluetooth_Sdp2 │ ├── AttributeIds.cs │ ├── BluetoothProtocolDescriptorType.cs │ ├── Enums.cs │ ├── LanguageBaseItem.cs │ ├── MapServiceClassToAttributeIdList.cs │ ├── ServiceAttribute.cs │ ├── ServiceElement.cs │ ├── ServiceRecord.cs │ ├── ServiceRecordBuilder.cs │ ├── ServiceRecordCreator.cs │ ├── ServiceRecordHelper.cs │ ├── ServiceRecordUtilities.cs │ ├── ServiceRecordsParser.cs │ └── Utils.cs ├── Net.IrDA │ ├── IrDAAttributeType.cs │ ├── IrDACharacterSet.cs │ ├── IrDAHints.cs │ ├── IrDAService.cs │ ├── IrDASocketOptionLevel.cs │ └── IrDASocketOptionName.cs ├── Net.Mime │ └── MediaTypeNames.cs ├── Net.Ports │ ├── BluetoothSerialPort.cs │ ├── PORTEMUPortParams.cs │ └── PortStatusChangedEventArgs.cs ├── Net.Sockets │ ├── AddressFamily.cs │ ├── BluetoothClient.cs │ ├── BluetoothDeviceInfo.cs │ ├── BluetoothListener.cs │ ├── BluetoothProtocolType.cs │ ├── ISocketOptionHelper.cs │ ├── IrDAClient.cs │ ├── IrDADeviceInfo.cs │ ├── IrDAListener.cs │ ├── L2CapClient.cs │ ├── L2CapListener.cs │ ├── SocketAdapter.cs │ ├── SocketClientAdapter.cs │ └── SocketStreamIOAdapter.cs ├── Net │ ├── AsyncResult.cs │ ├── AsyncResultCompletion.cs │ ├── AsyncResultNoResult.cs │ ├── BluetoothAddress.cs │ ├── BluetoothEndPoint.cs │ ├── IrDAAddress.cs │ ├── IrDAEndPoint.cs │ ├── ObexHeader.cs │ ├── ObexListener.cs │ ├── ObexListenerContext.cs │ ├── ObexListenerRequest.cs │ ├── ObexMethod.cs │ ├── ObexParser.cs │ ├── ObexStatusCode.cs │ ├── ObexTransport.cs │ ├── ObexWebRequest.cs │ ├── ObexWebRequestCreate.cs │ ├── ObexWebResponse.cs │ ├── TestUtilities.cs │ └── Utilities.cs ├── ObexUri.cs ├── Runtime │ └── InteropServices │ │ └── Marshal.cs ├── TextWriterTraceListener32f.cs ├── Utils │ ├── MiscUtils.cs │ ├── MiscUtils_TraceNETCF.cs │ ├── PairStream.cs │ ├── Pointers.cs │ └── Process2.cs ├── Win32 │ ├── SYSTEMTIME.cs │ └── Win32Error.cs ├── Windows │ └── Forms │ │ ├── BLUETOOTH_COD_PAIRS.cs │ │ ├── BLUETOOTH_SELECT_DEVICE_PARAMS.cs │ │ ├── BackgroundWorker.cs │ │ ├── DeviceFilterEventArgs.cs │ │ ├── ISelectBluetoothDevice.cs │ │ ├── NativeMethods.cs │ │ ├── SelectBluetoothDeviceDialog.cs │ │ ├── SelectBluetoothDeviceForm.cs │ │ └── SelectBluetoothDeviceForm.resx └── app.config ├── LICENSE ├── README.md ├── ThePBone.BlueZNet ├── Adapter.cs ├── BlueZException.cs ├── BlueZInterfaces.cs ├── BlueZManager.cs ├── Constants.cs ├── Device.cs ├── EventArgs.cs ├── Extensions.cs ├── Interop │ ├── UnixError.cs │ ├── UnixSocket.cs │ └── UnixStream.cs ├── ThePBone.BlueZNet.csproj └── Utils │ ├── ReflectionUtils.cs │ └── StringUtils.cs ├── ThePBone.MprisClient ├── IDBus.cs ├── IPlayer2.cs ├── MprisClient.cs └── ThePBone.MprisClient.csproj ├── docs ├── README_chs.md ├── README_cht.md ├── README_cze.md ├── README_gr.md ├── README_jpn.md ├── README_kor.md ├── README_pt.md ├── README_rus.md ├── README_tr.md ├── README_ukr.md ├── README_vnm.md ├── imhex_firmware_pattern.hexpat └── imhex_message_dump_pattern.hexpat ├── global.json ├── install.nsi ├── meta ├── br.md ├── cn.md ├── cz.md ├── de.md ├── es.md ├── flatpak │ ├── me.timschneeberger.GalaxyBudsClient.desktop │ └── me.timschneeberger.GalaxyBudsClient.metainfo.xml ├── fr.md ├── gr.md ├── he.md ├── hu.md ├── il.md ├── in.md ├── it.md ├── ja.md ├── ko.md ├── nl.md ├── pt.md ├── ro.md ├── ru.md ├── sv.md ├── tr.md ├── translations.md ├── tw.md ├── ua.md └── vn.md ├── screenshots ├── app_dark.png ├── budsplus_firmware_debug.jpg ├── budsplus_id242.png ├── budsplus_pairingmode.mp3 └── download.png └── scripts ├── DumpIncomingBytesConsole.cs ├── DumpSKU.cs ├── GlobalHotkeyReceiver.cs ├── GlobalHotkeyReceiverAlt.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/ISSUE_TEMPLATE/crash-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/compile-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/workflows/compile-linux.yml -------------------------------------------------------------------------------- /.github/workflows/compile-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/workflows/compile-macos.yml -------------------------------------------------------------------------------- /.github/workflows/compile-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/workflows/compile-windows.yml -------------------------------------------------------------------------------- /.github/workflows/sentry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/workflows/sentry.yml -------------------------------------------------------------------------------- /.github/workflows/translation-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.github/workflows/translation-validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /Galaxy Buds Plus RFComm Protocol Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/Galaxy Buds Plus RFComm Protocol Notes.md -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/GalaxyBudsClient.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/GalaxyBudsClient.Android.csproj -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/demo/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/demo/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/demo/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/demo/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/demo/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/demo/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/demo/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/demo/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/full/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/full/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/full/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/full/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/full/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/full/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Icons/full/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Icons/full/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Impl/AndroidPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Impl/AndroidPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Impl/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Impl/BluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Impl/DesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Impl/DesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Impl/OfficialAppDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Impl/OfficialAppDetector.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/LogcatSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/LogcatSink.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/MainActivity.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/values-night/colors.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/values-v31/styles.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/Utils/Extensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Android/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Android/build.sh -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/AttributeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/AttributeExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/CompiledEnumGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/CompiledEnumGenerator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/EnumToGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/EnumToGenerate.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/EnumValueOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/EnumValueOption.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/RootSourceGenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/RootSourceGenerationHelper.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Enums/SourceGenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Enums/SourceGenerationHelper.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/GalaxyBudsClient.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/GalaxyBudsClient.Generators.csproj -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Messages/HandlerToGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Messages/HandlerToGenerate.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Properties/launchSettings.json -------------------------------------------------------------------------------- /GalaxyBudsClient.Generators/Utils/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Generators/Utils/CodeGenerator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/BluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/BluetoothSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/BluetoothSocket.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/DesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/DesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/HotkeyBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/HotkeyBroadcast.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/HotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/HotkeyReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/KeyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/KeyMapping.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/LinuxPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/LinuxPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Linux/MediaKeyRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Linux/MediaKeyRemote.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/BluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/DesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/DesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/HotkeyBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/HotkeyBroadcast.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/HotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/HotkeyReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/MediaKeyRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/MediaKeyRemote.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/include/Native.h -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/Bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/Bluetooth.h -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/Bluetooth.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/Bluetooth.mm -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/BluetoothDeviceWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/BluetoothDeviceWatcher.h -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/HotkeyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/HotkeyManager.swift -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/NIBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/NIBridge.h -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/NIBridge.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/NIBridge.mm -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Native/src/bridge/Native.Memory.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Native/src/bridge/Native.Memory.mm -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/OsxPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/OsxPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Unmanaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Unmanaged.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.OSX/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.OSX/Utils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/AudioPlaybackDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/AudioPlaybackDetection.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Bluetooth/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Bluetooth/BluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Devices/UnmanagedDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Devices/UnmanagedDevice.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Impl/DesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Impl/DesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Impl/HotkeyBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Impl/HotkeyBroadcast.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Impl/HotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Impl/HotkeyReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Impl/MediaKeyRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Impl/MediaKeyRemote.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Impl/OfficialAppDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Impl/OfficialAppDetector.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Unmanaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Unmanaged.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Utils/MacUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Utils/MacUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/Utils/PointerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/Utils/PointerUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/WindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/WindowMessage.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/WindowsPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/WindowsPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/WindowsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/WindowsUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.Windows/WndProcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.Windows/WndProcClient.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.WindowsRT/BluetoothDeviceRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.WindowsRT/BluetoothDeviceRT.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.WindowsRT/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.WindowsRT/BluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform.WindowsRT/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform.WindowsRT/Utils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/BaseDesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/BaseDesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/BluetoothException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/BluetoothException.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/GalaxyBudsClient.Platform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/GalaxyBudsClient.Platform.csproj -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IBluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IBluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IDesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IDesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IHotkey.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IHotkeyBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IHotkeyBroadcast.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IHotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IHotkeyReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IMediaKeyRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IMediaKeyRemote.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/INotificationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/INotificationListener.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IOfficialAppDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IOfficialAppDetector.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Interfaces/IPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Interfaces/IPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Model/BluetoothCoD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Model/BluetoothCoD.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Model/BluetoothDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Model/BluetoothDevice.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Model/KeyDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Model/KeyDefinitions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/PlatformUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/PlatformUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyBluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyBluetoothService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyDesktopServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyDesktopServices.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyHotkeyBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyHotkeyBroadcast.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyHotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyHotkeyReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyMediaKeyRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyMediaKeyRemote.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyNotificationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyNotificationListener.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyOfficialAppDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyOfficialAppDetector.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/DummyPlatformImplCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/DummyPlatformImplCreator.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Platform/Stubs/MsgIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Platform/Stubs/MsgIds.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/Buds/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/Buds/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/Buds2/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/Buds2/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/Buds2Pro/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/Buds2Pro/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/BudsFe/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/BudsFe/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/BudsLive/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/BudsLive/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/BudsPlus/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/BudsPlus/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/BudsPro/ExtendedStatusUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/BudsPro/ExtendedStatusUpdateTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/GalaxyBudsClient.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/GalaxyBudsClient.Tests.csproj -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/Info.plist -------------------------------------------------------------------------------- /GalaxyBudsClient.Tests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.Tests/MessageTests.cs -------------------------------------------------------------------------------- /GalaxyBudsClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.sln -------------------------------------------------------------------------------- /GalaxyBudsClient.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient.sln.DotSettings -------------------------------------------------------------------------------- /GalaxyBudsClient/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/App.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/App.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Application.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Application.props -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/ipad152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/ipad152.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/ipad76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/ipad76.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/iphone120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/iphone120.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/iphone180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/iphone180.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac1024.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac128.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac16.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac256.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac32.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac512.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/AppIcon.appiconset/mac64.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/CliHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/CliHandler.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/Ipc/IpcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/Ipc/IpcService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/Ipc/Objects/ApplicationObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/Ipc/Objects/ApplicationObject.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/Ipc/Objects/BaseObjectWithProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/Ipc/Objects/BaseObjectWithProperties.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/Ipc/Objects/BaseProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/Ipc/Objects/BaseProperties.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Cli/Ipc/Objects/DeviceObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Cli/Ipc/Objects/DeviceObject.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/FodyWeavers.xml -------------------------------------------------------------------------------- /GalaxyBudsClient/GalaxyBudsClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/GalaxyBudsClient.csproj -------------------------------------------------------------------------------- /GalaxyBudsClient/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Info.plist -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/CustomInfoBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/CustomInfoBar.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudCompactStatusUnit.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudCompactStatusUnit.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudControlUnit.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudControlUnit.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudControlUnit.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudControlUnit.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudIcon.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudIconUnit.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudIconUnit.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudIconUnit.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudIconUnit.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudStatusUnit.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudStatusUnit.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EarbudStatusUnit.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EarbudStatusUnit.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EmptyView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EmptyView.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/EmptyView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/EmptyView.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/GlowingToggleButton.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/GlowingToggleButton.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/GlowingToggleButton.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/GlowingToggleButton.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/MuteToggleButton.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/MuteToggleButton.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/MuteToggleButton.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/MuteToggleButton.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsColorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsColorItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsComboBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsComboBoxItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsDescriptionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsDescriptionItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsGroup.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsSliderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsSliderItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsSwitchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsSwitchItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Controls/SettingsSymbolItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Controls/SettingsSymbolItem.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/AmbientStrengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/AmbientStrengthConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/AmbientToneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/AmbientToneConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/BatterySymbolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/BatterySymbolConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/ColorUintConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/ColorUintConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/EqPresetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/EqPresetConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/FuncConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/FuncConverters.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/IntToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/IntToStringConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/ModelNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/ModelNameConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/MonthValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/MonthValueConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Converters/StereoBalanceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Converters/StereoBalanceConverter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/DevTools.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/DevTools.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/DevTools.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/DevTools.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/DevToolsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/DevToolsView.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/DevToolsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/DevToolsView.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/TranslatorTools.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/TranslatorTools.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/TranslatorTools.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/TranslatorTools.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/TranslatorToolsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/TranslatorToolsView.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Developer/TranslatorToolsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Developer/TranslatorToolsView.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/BudsPopup.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/BudsPopup.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/BudsPopup.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/BudsPopup.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/DeveloperOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/DeveloperOptionsDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/DeviceSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/DeviceSelectionDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/DeviceSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/DeviceSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/DumpImportDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/DumpImportDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/FirmwareUpdateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/FirmwareUpdateDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/HiddenModeTerminalDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/HiddenModeTerminalDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/HotkeyEditorDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/HotkeyEditorDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/HotkeyEditorDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/HotkeyEditorDialog.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/HotkeyRecorderDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/HotkeyRecorderDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/HotkeyRecorderDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/HotkeyRecorderDialog.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/InputDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/ManualPairDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/ManualPairDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/ManualPairDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/ManualPairDialog.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/MessageBox.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/QuestionBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/QuestionBox.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/SelfTestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/SelfTestDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/TouchActionEditorDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/TouchActionEditorDialog.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Dialogs/TraceDownloaderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Dialogs/TraceDownloaderDialog.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MainView.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MainView.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MainWindow.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MainWindow.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MarkupExtensions/OpenLinkAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MarkupExtensions/OpenLinkAction.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/MarkupExtensions/TranslateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/MarkupExtensions/TranslateExtension.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/AdvancedPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/AdvancedPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/AdvancedPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/AdvancedPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/AmbientCustomizePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/AmbientCustomizePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/AmbientCustomizePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/AmbientCustomizePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/BasePage.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/BatteryHistoryPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/BatteryHistoryPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/BatteryHistoryPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/BatteryHistoryPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/BixbyRemapPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/BixbyRemapPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/BixbyRemapPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/BixbyRemapPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/DevicesPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/DevicesPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/DevicesPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/DevicesPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/EqualizerPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/EqualizerPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/EqualizerPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/EqualizerPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FindMyBudsPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FindMyBudsPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FindMyBudsPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FindMyBudsPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FirmwarePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FirmwarePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FirmwarePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FirmwarePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FitTestPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FitTestPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FitTestPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FitTestPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FmmConfigPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FmmConfigPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/FmmConfigPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/FmmConfigPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HiddenModePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HiddenModePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HiddenModePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HiddenModePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HomePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HomePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HomePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HomePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HotkeyPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HotkeyPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/HotkeyPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/HotkeyPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/NoiseControlPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/NoiseControlPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/NoiseControlPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/NoiseControlPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/RenamePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/RenamePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/RenamePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/RenamePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SettingsPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SettingsPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SettingsPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SettingsPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SystemInfoPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SystemInfoPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SystemInfoPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SystemInfoPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SystemPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SystemPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/SystemPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/SystemPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/TouchpadPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/TouchpadPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/TouchpadPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/TouchpadPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/UsageReportPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/UsageReportPage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/UsageReportPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/UsageReportPage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/WelcomePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/WelcomePage.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Pages/WelcomePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Pages/WelcomePage.axaml.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Services/NavigationService.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/StyledWindow/IStyledWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/StyledWindow/IStyledWindow.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/StyledWindow/StyledAppWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/StyledWindow/StyledAppWindow.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/StyledWindow/StyledWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/StyledWindow/StyledWindow.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Styling/AppStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Styling/AppStyles.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Styling/NavigationViewStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Styling/NavigationViewStyles.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Styling/Overrides/OsxOverrides.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Styling/Overrides/OsxOverrides.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Styling/Resources.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Styling/Resources.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/Styling/SettingsGroupStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/Styling/SettingsGroupStyles.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/BreadcrumbViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/BreadcrumbViewModel.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/ItemViewHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/ItemViewHolder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/MainViewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/MainViewViewModel.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/Pages/HomePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/Pages/HomePageViewModel.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/TouchActionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/TouchActionViewModel.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Interface/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Interface/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/BaseMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/BaseMessageHandler.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/AcknowledgementDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/AcknowledgementDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/AmbientModeUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/AmbientModeUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/AmbientVoiceFocusDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/AmbientVoiceFocusDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/AmbientVolumeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/AmbientVolumeDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/AmbientWearingUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/AmbientWearingUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/BaseMessageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/BaseMessageDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/BatteryTypeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/BatteryTypeDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/BondedDevicesDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/BondedDevicesDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/CouplingHelperReadDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/CouplingHelperReadDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/CradleSerialNumberDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/CradleSerialNumberDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/DebugBuildInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/DebugBuildInfoDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/DebugGetAllDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/DebugGetAllDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/DebugModeVersionDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/DebugModeVersionDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/DebugSerialNumberDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/DebugSerialNumberDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/DebugSkuDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/DebugSkuDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/ExtendedStatusUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/ExtendedStatusUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FitTestDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FitTestDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FotaControlDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FotaControlDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FotaDownloadDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FotaDownloadDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FotaResultDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FotaResultDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FotaSessionDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FotaSessionDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/FotaUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/FotaUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/GenericEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/GenericEventDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/GenericResponseDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/GenericResponseDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/GetFmmConfigDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/GetFmmConfigDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/HiddenCmdDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/HiddenCmdDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/IBasicStatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/IBasicStatusUpdate.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/LogCoredumpDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/LogCoredumpDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/LogCoredumpDataSizeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/LogCoredumpDataSizeDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/LogTraceDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/LogTraceDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/LogTraceStartDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/LogTraceStartDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/MeteringReportDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/MeteringReportDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/MultipointInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/MultipointInfoDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/MuteUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/MuteUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/NoiseControlUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/NoiseControlUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/OverheatDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/OverheatDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/ResetResponseDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/ResetResponseDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SelfTestDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SelfTestDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SetFmmConfigDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SetFmmConfigDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SetInBandRingtoneDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SetInBandRingtoneDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SetOtherOptionDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SetOtherOptionDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SocBatteryCycleDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SocBatteryCycleDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SoftwareVersionOtaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SoftwareVersionOtaDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SpatialAudioContolParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SpatialAudioContolParser.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SpatialAudioDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SpatialAudioDataDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SppAlternativeMessageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SppAlternativeMessageDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/SppRoleStateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/SppRoleStateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/StatusUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/StatusUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/TapTestModeEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/TapTestModeEventDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/TouchUpdateDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/TouchUpdateDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/Usage2ReportDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/Usage2ReportDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/UsageReportDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/UsageReportDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/VoiceWakeupEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/VoiceWakeupEventDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Decoder/WaterDetectHistoryDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Decoder/WaterDetectHistoryDecoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/DeviceLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/DeviceLogManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/DeviceMessageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/DeviceMessageCache.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/BaseMessageEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/BaseMessageEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/CustomizeAmbientEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/CustomizeAmbientEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/FmgMuteEarbudEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/FmgMuteEarbudEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/FotaControlEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/FotaControlEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/FotaDownloadDataEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/FotaDownloadDataEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/HiddenCmdDataEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/HiddenCmdDataEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/LockTouchpadEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/LockTouchpadEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/LogCoredumpDataEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/LogCoredumpDataEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/LogTraceDataEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/LogTraceDataEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/ManagerInfoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/ManagerInfoEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/SetEqualizerEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/SetEqualizerEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/SetFmmConfigEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/SetFmmConfigEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/SetTouchOptionsEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/SetTouchOptionsEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Encoder/UpdateTimeEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Encoder/UpdateTimeEncoder.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/FirmwareTransferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/FirmwareTransferManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/HiddenCmds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/HiddenCmds.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/MessageAsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/MessageAsDictionary.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Parameter/CustomizeSoundAckParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Parameter/CustomizeSoundAckParameter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Parameter/IAckParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Parameter/IAckParameter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Parameter/LockTouchpadAckParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Parameter/LockTouchpadAckParameter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Parameter/MuteEarbudAckParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Parameter/MuteEarbudAckParameter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/Parameter/SimpleAckParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/Parameter/SimpleAckParameter.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/SpatialSensorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/SpatialSensorManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/SppAlternativeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/SppAlternativeMessage.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/SppMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/SppMessage.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/SppMessageEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/SppMessageEnums.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Message/SppMessageReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Message/SppMessageReceiver.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Migrations/HistoryDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Migrations/HistoryDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Attributes/AssociatedModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Attributes/AssociatedModelAttribute.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Attributes/DeviceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Attributes/DeviceAttribute.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Attributes/ModelMetadataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Attributes/ModelMetadataAttribute.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Attributes/PostfixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Attributes/PostfixAttribute.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Attributes/RequiresPlatformAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Attributes/RequiresPlatformAttribute.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/Legacy/ConfigArrayParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/Legacy/ConfigArrayParser.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/Legacy/HotkeyArrayParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/Legacy/HotkeyArrayParser.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/Legacy/ILegacySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/Legacy/ILegacySettings.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/Legacy/LegacySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/Legacy/LegacySettings.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/Settings.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/SettingsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/SettingsData.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Config/SettingsSerializerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Config/SettingsSerializerContext.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Constants.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/CustomAction.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Database/HistoryDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Database/HistoryDbContext.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Database/HistoryRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Database/HistoryRecord.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/EventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/EventDispatcher.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Events.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareBinary.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareBlockChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareBlockChangedEventArgs.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareConstants.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareParseException.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareProgressEventArgs.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareRemoteBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareRemoteBinary.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareRemoteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareRemoteClient.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareSegment.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Firmware/FirmwareTransferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Firmware/FirmwareTransferException.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Hotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Hotkey.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/InMemoryBinaryDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/InMemoryBinaryDocument.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/InvalidPacketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/InvalidPacketException.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/MiniCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/MiniCommand.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Buds2DeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Buds2DeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Buds2ProDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Buds2ProDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Buds3DeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Buds3DeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Buds3ProDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Buds3ProDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/BudsDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/BudsDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/BudsFeDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/BudsFeDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/BudsLiveDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/BudsLiveDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/BudsPlusDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/BudsPlusDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/BudsProDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/BudsProDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/DeviceSpecHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/DeviceSpecHelper.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Features.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/IDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/IDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/StubDeviceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/StubDeviceSpec.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/BudsLiveTouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/BudsLiveTouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/BudsPlusTouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/BudsPlusTouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/BudsTouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/BudsTouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/ITouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/ITouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/StandardTouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/StandardTouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/Touch/StubTouchMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/Touch/StubTouchMap.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Model/Specifications/TrayItemTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Model/Specifications/TrayItemTypes.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Platform.props -------------------------------------------------------------------------------- /GalaxyBudsClient/Platform/BluetoothImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Platform/BluetoothImpl.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Platform/DeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Platform/DeviceManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Platform/HotkeyReceiverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Platform/HotkeyReceiverManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Platform/PlatformImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Platform/PlatformImpl.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Program.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20@2x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20@3x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29@2x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29@3x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40@2x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40@3x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@2x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon@3x.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/AppIcon~ipad.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/ios/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/ios/Contents.json -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/macos/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/macos/AppIcon.icns -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/web/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/web/README.txt -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/web/favicon.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/web/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/web/icon-192.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/Orange/web/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/Orange/web/icon-512.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/earbuds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/earbuds.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Android/icon_editing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Android/icon_editing.txt -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Black-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Black-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Black-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Black-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Green-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Green-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Green-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Green-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Grey-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Grey-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Grey-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Grey-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProGrey-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProGrey-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProGrey-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProGrey-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProViolet-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProViolet-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProViolet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProViolet-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProWhite-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProWhite-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ProWhite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ProWhite-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ThomBrown-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ThomBrown-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2ThomBrown-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2ThomBrown-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Violet-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Violet-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2Violet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2Violet-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2White-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2White-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds2White-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds2White-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3ProSilver-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3ProSilver-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3ProSilver-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3ProSilver-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3ProWhite-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3ProWhite-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3ProWhite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3ProWhite-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3Silver-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3Silver-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3Silver-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3Silver-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3White-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3White-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/Buds3White-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/Buds3White-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsFeGraphite-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsFeGraphite-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsFeGraphite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsFeGraphite-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsFeWhite-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsFeWhite-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsFeWhite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsFeWhite-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlack-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlack-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlack-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlue-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlue-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlue-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBlue-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBronze-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveBronze-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveGrey-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveGrey-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveGrey-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveGrey-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveRed-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveRed-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsLiveRed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsLiveRed-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusBlue-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusBlue-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusBlue-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusBlue-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusPink-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusPink-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusPink-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusPink-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusRed-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusRed-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsPlusRed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsPlusRed-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsProBlack-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsProBlack-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsProBlack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsProBlack-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsProWhite-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsProWhite-0.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/BudsProWhite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/BudsProWhite-1.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/Realistic/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/Realistic/split.sh -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/left_beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/left_beans.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/left_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/left_pro.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/right_beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/right_beans.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Device/right_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Device/right_pro.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/Fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/Fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_black_small_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_black_small_tray.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_black_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_black_tray.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_black_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_black_tray.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_small.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_multi_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_multi_tray.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_single_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_single_tray.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_single_tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_single_tray.svg -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_tray.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_tray.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_outlined_tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_outlined_tray.svg -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_small_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_small_tray.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_tray.ico -------------------------------------------------------------------------------- /GalaxyBudsClient/Resources/icon_white_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Resources/icon_white_tray.png -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Experiment/ExperimentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Experiment/ExperimentClient.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Experiment/ExperimentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Experiment/ExperimentManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Experiment/ExperimentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Experiment/ExperimentRequest.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Experiment/ExperimentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Experiment/ExperimentResult.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Hooks/IDecoderHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Hooks/IDecoderHook.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Hooks/IExperimentHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Hooks/IExperimentHook.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Hooks/IHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Hooks/IHook.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Hooks/IMessageHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Hooks/IMessageHook.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/Hooks/IRawStreamHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/Hooks/IRawStreamHook.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/ScriptLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/ScriptLogger.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Scripting/ScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Scripting/ScriptManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/BatteryHistoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/BatteryHistoryManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/BoyerMoore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/BoyerMoore.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/ByteArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/ByteArrayUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/CrashReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/CrashReports.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Crc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Crc16.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/DisposableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/DisposableQuery.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/AsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/AsyncExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/ControlExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/DataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/DataExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/FilePickerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/FilePickerExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/HotkeyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/HotkeyExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Extensions/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Extensions/ReflectionExtensions.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/HexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/HexUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Interface/Dialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Interface/Dialogs.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Interface/LocalizationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Interface/LocalizationUtils.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Interface/TrayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Interface/TrayManager.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Interface/WindowIconRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Interface/WindowIconRenderer.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/Utils/Tools/HiddenCmdScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/Utils/Tools/HiddenCmdScanner.cs -------------------------------------------------------------------------------- /GalaxyBudsClient/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/app.manifest -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/br.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/br.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/cn.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/cn.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/cz.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/cz.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/de.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/de.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/en.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/en.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/es.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/es.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/fr.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/fr.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/gr.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/gr.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/hu.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/hu.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/il.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/il.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/in.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/in.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/it.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/it.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/ja.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/ja.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/ko.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/ko.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/nl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/nl.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/pt.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/pt.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/ro.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/ro.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/ru.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/ru.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/sv.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/sv.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/tr.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/tr.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/tw.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/tw.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/ua.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/ua.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/i18n/vn.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/i18n/vn.axaml -------------------------------------------------------------------------------- /GalaxyBudsClient/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsClient/nuget.config -------------------------------------------------------------------------------- /GalaxyBudsPlus_HiddenDebugFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsPlus_HiddenDebugFeatures.md -------------------------------------------------------------------------------- /GalaxyBudsRFCommProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/GalaxyBudsRFCommProtocol.md -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/FakeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/FakeAttributes.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/InTheHand.Net.Personal.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/InTheHand.Net.Personal.Core.csproj -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/InTheHand.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/InTheHand.snk -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezClient.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezDbus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezDbus.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezError.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezRadio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezRadio.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/BluezUtils.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/StackConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/StackConsts.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.BlueZ/Structs.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BLOB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BLOB.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BTHNS_BLOB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BTHNS_BLOB.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BTHNS_RESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/BTHNS_RESULT.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/CSADDR_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/CSADDR_INFO.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/MsftPlaying.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/MsftPlaying.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/WSAQUERYSET.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Msft/WSAQUERYSET.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/IBtIf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/IBtIf.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/IRfCommIf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/IRfCommIf.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/L2CapIf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/L2CapIf.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/L2CapPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth.Widcomm/L2CapPort.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/AsyncOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/AsyncOperation.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothRadio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothRadio.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothSecurity.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothService.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/BluetoothVersion.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/ClassOfDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/ClassOfDevice.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/DeviceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/DeviceClass.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/HardwareStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/HardwareStatus.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/HciAndLmpVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/HciAndLmpVersions.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/LinkPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/LinkPolicy.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/LmpFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/LmpFeatures.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/LmpFeaturesUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/LmpFeaturesUtils.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/Manufacturer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/Manufacturer.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/NullBtCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/NullBtCli.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/NullBtListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/NullBtListener.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/NullRfcommStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/NullRfcommStream.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/RadioMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/RadioMode.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/RadioModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/RadioModes.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/RadioVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/RadioVersions.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/SdpQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/SdpQueryType.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth/ServiceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth/ServiceClass.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpRecord.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpSearch.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpStream.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/ISdpWalk.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/NodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/NodeData.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/SdpRecordTemp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp/SdpRecordTemp.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/AttributeIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/AttributeIds.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/Enums.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Bluetooth_Sdp2/Utils.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDAAttributeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDAAttributeType.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDACharacterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDACharacterSet.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDAHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDAHints.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDAService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDAService.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDASocketOptionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDASocketOptionLevel.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.IrDA/IrDASocketOptionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.IrDA/IrDASocketOptionName.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Mime/MediaTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Mime/MediaTypeNames.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Ports/BluetoothSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Ports/BluetoothSerialPort.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Ports/PORTEMUPortParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Ports/PORTEMUPortParams.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/AddressFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/AddressFamily.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/BluetoothClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/BluetoothClient.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/BluetoothDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/BluetoothDeviceInfo.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/BluetoothListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/BluetoothListener.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/ISocketOptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/ISocketOptionHelper.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/IrDAClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/IrDAClient.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/IrDADeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/IrDADeviceInfo.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/IrDAListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/IrDAListener.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/L2CapClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/L2CapClient.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/L2CapListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/L2CapListener.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/SocketAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/SocketAdapter.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net.Sockets/SocketClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net.Sockets/SocketClientAdapter.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/AsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/AsyncResult.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/AsyncResultCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/AsyncResultCompletion.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/AsyncResultNoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/AsyncResultNoResult.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/BluetoothAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/BluetoothAddress.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/BluetoothEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/BluetoothEndPoint.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/IrDAAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/IrDAAddress.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/IrDAEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/IrDAEndPoint.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexHeader.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexListener.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexListenerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexListenerContext.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexListenerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexListenerRequest.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexMethod.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexParser.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexStatusCode.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexTransport.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexWebRequest.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexWebRequestCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexWebRequestCreate.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/ObexWebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/ObexWebResponse.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/TestUtilities.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Net/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Net/Utilities.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/ObexUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/ObexUri.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Runtime/InteropServices/Marshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Runtime/InteropServices/Marshal.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/TextWriterTraceListener32f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/TextWriterTraceListener32f.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Utils/MiscUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Utils/MiscUtils.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Utils/MiscUtils_TraceNETCF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Utils/MiscUtils_TraceNETCF.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Utils/PairStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Utils/PairStream.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Utils/Pointers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Utils/Pointers.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Utils/Process2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Utils/Process2.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Win32/SYSTEMTIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Win32/SYSTEMTIME.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Win32/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Win32/Win32Error.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Windows/Forms/BackgroundWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Windows/Forms/BackgroundWorker.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/Windows/Forms/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/Windows/Forms/NativeMethods.cs -------------------------------------------------------------------------------- /InTheHand.Net.Personal.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/InTheHand.Net.Personal.Core/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/README.md -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Adapter.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/BlueZException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/BlueZException.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/BlueZInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/BlueZInterfaces.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/BlueZManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/BlueZManager.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Constants.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Device.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/EventArgs.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Extensions.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Interop/UnixError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Interop/UnixError.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Interop/UnixSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Interop/UnixSocket.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Interop/UnixStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Interop/UnixStream.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/ThePBone.BlueZNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/ThePBone.BlueZNet.csproj -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Utils/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Utils/ReflectionUtils.cs -------------------------------------------------------------------------------- /ThePBone.BlueZNet/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.BlueZNet/Utils/StringUtils.cs -------------------------------------------------------------------------------- /ThePBone.MprisClient/IDBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.MprisClient/IDBus.cs -------------------------------------------------------------------------------- /ThePBone.MprisClient/IPlayer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.MprisClient/IPlayer2.cs -------------------------------------------------------------------------------- /ThePBone.MprisClient/MprisClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.MprisClient/MprisClient.cs -------------------------------------------------------------------------------- /ThePBone.MprisClient/ThePBone.MprisClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/ThePBone.MprisClient/ThePBone.MprisClient.csproj -------------------------------------------------------------------------------- /docs/README_chs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_chs.md -------------------------------------------------------------------------------- /docs/README_cht.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_cht.md -------------------------------------------------------------------------------- /docs/README_cze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_cze.md -------------------------------------------------------------------------------- /docs/README_gr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_gr.md -------------------------------------------------------------------------------- /docs/README_jpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_jpn.md -------------------------------------------------------------------------------- /docs/README_kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_kor.md -------------------------------------------------------------------------------- /docs/README_pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_pt.md -------------------------------------------------------------------------------- /docs/README_rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_rus.md -------------------------------------------------------------------------------- /docs/README_tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_tr.md -------------------------------------------------------------------------------- /docs/README_ukr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_ukr.md -------------------------------------------------------------------------------- /docs/README_vnm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/README_vnm.md -------------------------------------------------------------------------------- /docs/imhex_firmware_pattern.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/imhex_firmware_pattern.hexpat -------------------------------------------------------------------------------- /docs/imhex_message_dump_pattern.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/docs/imhex_message_dump_pattern.hexpat -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/global.json -------------------------------------------------------------------------------- /install.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/install.nsi -------------------------------------------------------------------------------- /meta/br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/br.md -------------------------------------------------------------------------------- /meta/cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/cn.md -------------------------------------------------------------------------------- /meta/cz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/cz.md -------------------------------------------------------------------------------- /meta/de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/de.md -------------------------------------------------------------------------------- /meta/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/es.md -------------------------------------------------------------------------------- /meta/flatpak/me.timschneeberger.GalaxyBudsClient.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/flatpak/me.timschneeberger.GalaxyBudsClient.desktop -------------------------------------------------------------------------------- /meta/flatpak/me.timschneeberger.GalaxyBudsClient.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/flatpak/me.timschneeberger.GalaxyBudsClient.metainfo.xml -------------------------------------------------------------------------------- /meta/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/fr.md -------------------------------------------------------------------------------- /meta/gr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/gr.md -------------------------------------------------------------------------------- /meta/he.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/he.md -------------------------------------------------------------------------------- /meta/hu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/hu.md -------------------------------------------------------------------------------- /meta/il.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/il.md -------------------------------------------------------------------------------- /meta/in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/in.md -------------------------------------------------------------------------------- /meta/it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/it.md -------------------------------------------------------------------------------- /meta/ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/ja.md -------------------------------------------------------------------------------- /meta/ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/ko.md -------------------------------------------------------------------------------- /meta/nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/nl.md -------------------------------------------------------------------------------- /meta/pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/pt.md -------------------------------------------------------------------------------- /meta/ro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/ro.md -------------------------------------------------------------------------------- /meta/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/ru.md -------------------------------------------------------------------------------- /meta/sv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/sv.md -------------------------------------------------------------------------------- /meta/tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/tr.md -------------------------------------------------------------------------------- /meta/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/translations.md -------------------------------------------------------------------------------- /meta/tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/tw.md -------------------------------------------------------------------------------- /meta/ua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/ua.md -------------------------------------------------------------------------------- /meta/vn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/meta/vn.md -------------------------------------------------------------------------------- /screenshots/app_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/screenshots/app_dark.png -------------------------------------------------------------------------------- /screenshots/budsplus_firmware_debug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/screenshots/budsplus_firmware_debug.jpg -------------------------------------------------------------------------------- /screenshots/budsplus_id242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/screenshots/budsplus_id242.png -------------------------------------------------------------------------------- /screenshots/budsplus_pairingmode.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/screenshots/budsplus_pairingmode.mp3 -------------------------------------------------------------------------------- /screenshots/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/screenshots/download.png -------------------------------------------------------------------------------- /scripts/DumpIncomingBytesConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/scripts/DumpIncomingBytesConsole.cs -------------------------------------------------------------------------------- /scripts/DumpSKU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/scripts/DumpSKU.cs -------------------------------------------------------------------------------- /scripts/GlobalHotkeyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/scripts/GlobalHotkeyReceiver.cs -------------------------------------------------------------------------------- /scripts/GlobalHotkeyReceiverAlt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/scripts/GlobalHotkeyReceiverAlt.cs -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timschneeb/GalaxyBudsClient/HEAD/scripts/README.md --------------------------------------------------------------------------------