├── .appveyor.yml ├── .circleci └── config.yml ├── .clang-format ├── .clang-tidy ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .travis.yml ├── LICENSE ├── Readme.md ├── advancedSettings.pro ├── docs ├── CONTRIBUTING.md ├── SteamVRInputGuide.md ├── building_for_linux.md ├── building_for_windows.md ├── developer_docs.md ├── keyboard_input_guide.md ├── pairing_guide.md ├── screenshots │ ├── AudioPage.png │ ├── ChaperoneAdditionalPage.png │ ├── ChaperonePage.png │ ├── ChaperoneWarningPage.png │ ├── DesktopOverlayPage.png │ ├── FloorFixPage.png │ ├── InVRScreenshot.png │ ├── MotionPage.png │ ├── OffsetPage.png │ ├── RootPage.png │ ├── RotationPage.png │ ├── SettingsPage.png │ ├── StatisticsPage.png │ ├── SteamVRPage.png │ ├── SteamVRPairPage.png │ ├── UtilitiesPage.png │ ├── VideoOverlay.png │ ├── VideoPage.png │ └── guide │ │ ├── actionhaptics.png │ │ ├── actionlist.png │ │ ├── bindingoverview.png │ │ ├── buttontype.png │ │ ├── chordcomplete.png │ │ ├── chordproto.png │ │ ├── editaction.png │ │ ├── emptyaction.png │ │ ├── gripplus.png │ │ ├── moreoptions.png │ │ └── multipleactions.png └── specs │ ├── Keyboard_Manager-Parser_Spec.md │ ├── Settings-API.md │ └── Settings-Object-API.md ├── installer └── installer.nsi ├── src ├── alarm_clock │ ├── vr_alarm.cpp │ └── vr_alarm.h ├── keyboard_input │ ├── input_parser.cpp │ ├── input_parser.h │ ├── input_sender.h │ ├── input_sender_X11.cpp │ ├── input_sender_dummy.cpp │ ├── input_sender_win.cpp │ ├── keyboard_input.cpp │ └── keyboard_input.h ├── main.cpp ├── media_keys │ ├── media_keys.h │ ├── media_keys_dbus.cpp │ ├── media_keys_dummy.cpp │ └── media_keys_win.cpp ├── openvr │ ├── ivrinput.cpp │ ├── ivrinput.h │ ├── ivrinput_action.h │ ├── ivrinput_action_set.h │ ├── ivrinput_input_source.h │ ├── ivrinput_manifest.h │ ├── lh_console_util.cpp │ ├── lh_console_util.h │ ├── openvr_init.cpp │ ├── openvr_init.h │ ├── ovr_application_wrapper.cpp │ ├── ovr_application_wrapper.h │ ├── ovr_overlay_wrapper.cpp │ ├── ovr_overlay_wrapper.h │ ├── ovr_settings_wrapper.cpp │ ├── ovr_settings_wrapper.h │ ├── ovr_system_wrapper.cpp │ └── ovr_system_wrapper.h ├── overlaycontroller.cpp ├── overlaycontroller.h ├── package_files │ ├── LICENSE.MIT │ ├── LICENSE.txt │ ├── action_manifest.json │ ├── default_action_manifests │ │ ├── ovras-team.advancedsettings_default_hmd.json │ │ ├── ovras-team.advancedsettings_default_hp_wmr.json │ │ ├── ovras-team.advancedsettings_default_knuckles.json │ │ ├── ovras-team.advancedsettings_default_touch.json │ │ ├── ovras-team.advancedsettings_default_vive_controller.json │ │ └── ovras-team.advancedsettings_default_wmr.json │ ├── linux │ │ └── AdvancedSettings.desktop │ ├── manifest.vrmanifest │ ├── qt.conf │ ├── restartvrserver.bat │ └── startdesktopmode.bat ├── quaternion │ └── quaternion.h ├── res │ ├── img │ │ ├── alarm │ │ │ └── alarm_activated.png │ │ ├── audio │ │ │ ├── media_keys │ │ │ │ ├── outline_play_pause_white_24dp.svg │ │ │ │ ├── outline_skip_next_white_24dp.svg │ │ │ │ ├── outline_skip_previous_white_24dp.svg │ │ │ │ └── outline_stop_white_24dp.svg │ │ │ ├── microphone │ │ │ │ ├── mic_off.svg │ │ │ │ ├── mic_on.svg │ │ │ │ ├── ptm_notification.png │ │ │ │ ├── ptt_notification.png │ │ │ │ └── ptt_notification.svg │ │ │ └── speaker │ │ │ │ ├── speaker_off.svg │ │ │ │ └── speaker_on.svg │ │ ├── battery │ │ │ ├── battery_0.png │ │ │ ├── battery_1.png │ │ │ ├── battery_2.png │ │ │ ├── battery_3.png │ │ │ ├── battery_4.png │ │ │ └── battery_5.png │ │ ├── chaperone │ │ │ ├── centermark.png │ │ │ ├── centermarkl1.png │ │ │ ├── centermarkl2.png │ │ │ ├── centermarkl3.png │ │ │ ├── centermarkr1.png │ │ │ ├── centermarkr2.png │ │ │ └── centermarkr3.png │ │ ├── common │ │ │ ├── backarrow.svg │ │ │ └── check.svg │ │ ├── icons │ │ │ ├── advicon256px.ico │ │ │ └── thumbicon.png │ │ ├── main_menu_icons │ │ │ ├── audio_tab_icon.svg │ │ │ ├── bindings_tab_icon.svg │ │ │ ├── chaperone_tab_icon.svg │ │ │ ├── motion_tab_icon.svg │ │ │ ├── offsets_tab_icon.svg │ │ │ ├── rotation_tab_icon.svg │ │ │ ├── settings_tab_icon.svg │ │ │ ├── space_fix_tab_icon.svg │ │ │ ├── statistics_tab_icon.svg │ │ │ ├── steamvr_tab_icon.svg │ │ │ ├── utilities_tab_icon.svg │ │ │ └── video_tab_icon.svg │ │ ├── rotation │ │ │ ├── autoturn.png │ │ │ ├── noautoturn.png │ │ │ └── noautoturn.svg │ │ └── video │ │ │ ├── color.png │ │ │ └── dimmer.png │ ├── qml │ │ ├── ChaperoneWarningsPage.qml │ │ ├── FixFloorPage.qml │ │ ├── PlayspacePage.qml │ │ ├── RootPage.qml │ │ ├── SettingsPage.qml │ │ ├── StatisticsPage.qml │ │ ├── audio_page │ │ │ ├── AudioPage.qml │ │ │ ├── device_selector │ │ │ │ ├── AudioDeviceSelector.qml │ │ │ │ ├── MicDeviceSelector.qml │ │ │ │ ├── MicVolumeSlider.qml │ │ │ │ ├── MirrorDeviceSelector.qml │ │ │ │ └── MirrorVolumeSlider.qml │ │ │ ├── dialog_boxes │ │ │ │ ├── AudioDeleteProfileDialog.qml │ │ │ │ ├── AudioMessageDialog.qml │ │ │ │ └── AudioNewProfileDialog.qml │ │ │ ├── profiles │ │ │ │ └── ProfileButtons.qml │ │ │ ├── proximity │ │ │ │ └── ProximityToggle.qml │ │ │ └── push_to_talk │ │ │ │ └── PttButtons.qml │ │ ├── chaperone_page │ │ │ ├── ChaperonePage.qml │ │ │ ├── change_orientation │ │ │ │ └── ChangeOrientationGroupBox.qml │ │ │ └── chaperone_additional │ │ │ │ ├── ChaperoneAdditionalPage.qml │ │ │ │ ├── chaperoneboundscolor │ │ │ │ └── ChaperoneBoundsColorGroupBox.qml │ │ │ │ ├── chaperonemisc │ │ │ │ └── ChaperoneMiscGroupBox.qml │ │ │ │ └── chaperonetype │ │ │ │ └── ChaperoneTypeGroupBox.qml │ │ ├── common │ │ │ ├── FullWidthSliderBox.qml │ │ │ ├── HourComboBox.qml │ │ │ ├── LineSeparator.qml │ │ │ ├── MinuteSecondComboBox.qml │ │ │ ├── MyComboBox.qml │ │ │ ├── MyDialogOkCancelPopup.qml │ │ │ ├── MyDialogOkPopup.qml │ │ │ ├── MyPushButton.qml │ │ │ ├── MyPushButton2.qml │ │ │ ├── MyRadioButton.qml │ │ │ ├── MyResources.qml │ │ │ ├── MySlider.qml │ │ │ ├── MyStackViewPage.qml │ │ │ ├── MyText.qml │ │ │ ├── MyTextField.qml │ │ │ ├── MyToggleButton.qml │ │ │ ├── TimeAssembly.qml │ │ │ └── mainwidget.qml │ │ ├── motion_page │ │ │ ├── MotionPage.qml │ │ │ ├── gravity │ │ │ │ └── GravityGroupBox.qml │ │ │ ├── height_toggle │ │ │ │ └── HeightToggleGroupBox.qml │ │ │ └── space_drag │ │ │ │ └── SpaceDragGroupBox.qml │ │ ├── qmldir │ │ ├── rotation_page │ │ │ ├── RotationPage.qml │ │ │ ├── redirected │ │ │ │ ├── AutoTurnGroupBox.qml │ │ │ │ └── RedirectedGroupBox.qml │ │ │ ├── snap_turn │ │ │ │ └── SnapTurnGroupBox.qml │ │ │ ├── space_turn │ │ │ │ └── SpaceTurnGroupBox.qml │ │ │ └── view_ratchet │ │ │ │ └── ViewRatchetGroupBox.qml │ │ ├── steamvr_page │ │ │ ├── SteamVRPage.qml │ │ │ ├── camera │ │ │ │ └── CameraGroupBox.qml │ │ │ ├── steamvr_additional │ │ │ │ └── SteamVRTXRXPage.qml │ │ │ ├── steamvrbind │ │ │ │ └── SteamVRBindGroupBox.qml │ │ │ └── steamvrmisc │ │ │ │ └── SteamVRMiscGroupBox.qml │ │ ├── utilities_page │ │ │ ├── UtilitiesPage.qml │ │ │ ├── alarm_clock │ │ │ │ └── AlarmGroupBox.qml │ │ │ ├── keyboard_utils │ │ │ │ └── KeyboardGroupBox.qml │ │ │ ├── media_keys │ │ │ │ ├── MediaButton.qml │ │ │ │ └── MediaControllerKeys.qml │ │ │ └── misc │ │ │ │ └── MiscBox.qml │ │ └── video_page │ │ │ ├── VideoPage.qml │ │ │ ├── brightness │ │ │ └── BrightnessGroupBox.qml │ │ │ ├── color │ │ │ └── ColorGroupBox.qml │ │ │ ├── dialogboxes │ │ │ ├── VideoDeleteProfileDialog.qml │ │ │ ├── VideoMessageDialog.qml │ │ │ └── VideoNewProfileDialog.qml │ │ │ ├── miscvid │ │ │ └── VideoMiscGroupBox.qml │ │ │ ├── overlaycolorbright │ │ │ └── OverlayMethodGroupBox.qml │ │ │ ├── profiles │ │ │ └── VideoProfileGroupBox.qml │ │ │ └── supersampling │ │ │ └── SuperSamplingGroupBox.qml │ ├── resources.qrc │ └── sounds │ │ ├── alarm01.wav │ │ ├── click.wav │ │ └── focus.wav ├── settings │ ├── internal │ │ ├── bool_setting_value.h │ │ ├── double_setting_value.h │ │ ├── setting_value.h │ │ ├── settings_controller.h │ │ ├── settings_internal.h │ │ ├── settings_object_data.h │ │ └── specific_setting_value.h │ ├── settings.cpp │ ├── settings.h │ ├── settings_object.cpp │ └── settings_object.h ├── tabcontrollers │ ├── AudioTabController.cpp │ ├── AudioTabController.h │ ├── ChaperoneTabController.cpp │ ├── ChaperoneTabController.h │ ├── FixFloorTabController.cpp │ ├── FixFloorTabController.h │ ├── MoveCenterTabController.cpp │ ├── MoveCenterTabController.h │ ├── RotationTabController.cpp │ ├── RotationTabController.h │ ├── SettingsTabController.cpp │ ├── SettingsTabController.h │ ├── StatisticsTabController.cpp │ ├── StatisticsTabController.h │ ├── SteamVRTabController.cpp │ ├── SteamVRTabController.h │ ├── UtilitiesTabController.cpp │ ├── UtilitiesTabController.h │ ├── VideoTabController.cpp │ ├── VideoTabController.h │ └── audiomanager │ │ ├── AudioManager.h │ │ ├── AudioManagerDummy.cpp │ │ ├── AudioManagerDummy.h │ │ ├── AudioManagerPulse.cpp │ │ ├── AudioManagerPulse.h │ │ ├── AudioManagerPulse_internal.h │ │ ├── AudioManagerWindows.cpp │ │ └── AudioManagerWindows.h └── utils │ ├── ChaperoneUtils.cpp │ ├── ChaperoneUtils.h │ ├── FrameRateUtils.cpp │ ├── FrameRateUtils.h │ ├── Matrix.h │ ├── paths.cpp │ ├── paths.h │ ├── setup.cpp │ ├── setup.h │ ├── update_rate.cpp │ └── update_rate.h ├── test └── keyboard_input │ ├── keyboard_input.pro │ └── tst_parsertest.cpp ├── third-party ├── easylogging++ │ ├── LICENSE-MIT │ ├── easylogging++.cc │ └── easylogging++.h ├── nlhomann │ └── json.hpp ├── openssl │ ├── LICENSE-OPENSSL │ ├── libcrypto-1_1-x64.dll │ └── libssl-1_1-x64.dll ├── openvr │ ├── LICENSE-VALVE │ ├── README.md │ ├── bin │ │ ├── linux32 │ │ │ ├── libopenvr_api.so │ │ │ └── libopenvr_api.so.dbg │ │ ├── linux64 │ │ │ ├── libopenvr_api.so │ │ │ └── libopenvr_api.so.dbg │ │ ├── osx32 │ │ │ ├── libopenvr_api.dylib │ │ │ └── libopenvr_api.dylib.dSYM │ │ │ │ └── Contents │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── libopenvr_api.dylib │ │ ├── win32 │ │ │ ├── openvr_api.dll │ │ │ └── openvr_api.pdb │ │ └── win64 │ │ │ ├── openvr_api.dll │ │ │ └── openvr_api.pdb │ ├── headers │ │ ├── openvr.h │ │ ├── openvr_api.cs │ │ ├── openvr_api.json │ │ ├── openvr_capi.h │ │ └── openvr_driver.h │ └── lib │ │ ├── androidarm64 │ │ └── libopenvr_api.so │ │ ├── linux32 │ │ └── libopenvr_api.so │ │ ├── linux64 │ │ └── libopenvr_api.so │ │ ├── linuxarm64 │ │ ├── libopenvr_api.so │ │ └── libopenvr_api_unity.so │ │ ├── osx32 │ │ └── libopenvr_api.dylib │ │ ├── win32 │ │ └── openvr_api.lib │ │ └── win64 │ │ └── openvr_api.lib └── policyconfig │ └── IPolicyConfig.h └── ver └── versioncheck.json /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/Readme.md -------------------------------------------------------------------------------- /advancedSettings.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/advancedSettings.pro -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SteamVRInputGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/SteamVRInputGuide.md -------------------------------------------------------------------------------- /docs/building_for_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/building_for_linux.md -------------------------------------------------------------------------------- /docs/building_for_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/building_for_windows.md -------------------------------------------------------------------------------- /docs/developer_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/developer_docs.md -------------------------------------------------------------------------------- /docs/keyboard_input_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/keyboard_input_guide.md -------------------------------------------------------------------------------- /docs/pairing_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/pairing_guide.md -------------------------------------------------------------------------------- /docs/screenshots/AudioPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/AudioPage.png -------------------------------------------------------------------------------- /docs/screenshots/ChaperoneAdditionalPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/ChaperoneAdditionalPage.png -------------------------------------------------------------------------------- /docs/screenshots/ChaperonePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/ChaperonePage.png -------------------------------------------------------------------------------- /docs/screenshots/ChaperoneWarningPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/ChaperoneWarningPage.png -------------------------------------------------------------------------------- /docs/screenshots/DesktopOverlayPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/DesktopOverlayPage.png -------------------------------------------------------------------------------- /docs/screenshots/FloorFixPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/FloorFixPage.png -------------------------------------------------------------------------------- /docs/screenshots/InVRScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/InVRScreenshot.png -------------------------------------------------------------------------------- /docs/screenshots/MotionPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/MotionPage.png -------------------------------------------------------------------------------- /docs/screenshots/OffsetPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/OffsetPage.png -------------------------------------------------------------------------------- /docs/screenshots/RootPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/RootPage.png -------------------------------------------------------------------------------- /docs/screenshots/RotationPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/RotationPage.png -------------------------------------------------------------------------------- /docs/screenshots/SettingsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/SettingsPage.png -------------------------------------------------------------------------------- /docs/screenshots/StatisticsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/StatisticsPage.png -------------------------------------------------------------------------------- /docs/screenshots/SteamVRPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/SteamVRPage.png -------------------------------------------------------------------------------- /docs/screenshots/SteamVRPairPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/SteamVRPairPage.png -------------------------------------------------------------------------------- /docs/screenshots/UtilitiesPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/UtilitiesPage.png -------------------------------------------------------------------------------- /docs/screenshots/VideoOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/VideoOverlay.png -------------------------------------------------------------------------------- /docs/screenshots/VideoPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/VideoPage.png -------------------------------------------------------------------------------- /docs/screenshots/guide/actionhaptics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/actionhaptics.png -------------------------------------------------------------------------------- /docs/screenshots/guide/actionlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/actionlist.png -------------------------------------------------------------------------------- /docs/screenshots/guide/bindingoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/bindingoverview.png -------------------------------------------------------------------------------- /docs/screenshots/guide/buttontype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/buttontype.png -------------------------------------------------------------------------------- /docs/screenshots/guide/chordcomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/chordcomplete.png -------------------------------------------------------------------------------- /docs/screenshots/guide/chordproto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/chordproto.png -------------------------------------------------------------------------------- /docs/screenshots/guide/editaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/editaction.png -------------------------------------------------------------------------------- /docs/screenshots/guide/emptyaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/emptyaction.png -------------------------------------------------------------------------------- /docs/screenshots/guide/gripplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/gripplus.png -------------------------------------------------------------------------------- /docs/screenshots/guide/moreoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/moreoptions.png -------------------------------------------------------------------------------- /docs/screenshots/guide/multipleactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/screenshots/guide/multipleactions.png -------------------------------------------------------------------------------- /docs/specs/Keyboard_Manager-Parser_Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/specs/Keyboard_Manager-Parser_Spec.md -------------------------------------------------------------------------------- /docs/specs/Settings-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/specs/Settings-API.md -------------------------------------------------------------------------------- /docs/specs/Settings-Object-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/docs/specs/Settings-Object-API.md -------------------------------------------------------------------------------- /installer/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/installer/installer.nsi -------------------------------------------------------------------------------- /src/alarm_clock/vr_alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/alarm_clock/vr_alarm.cpp -------------------------------------------------------------------------------- /src/alarm_clock/vr_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/alarm_clock/vr_alarm.h -------------------------------------------------------------------------------- /src/keyboard_input/input_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_parser.cpp -------------------------------------------------------------------------------- /src/keyboard_input/input_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_parser.h -------------------------------------------------------------------------------- /src/keyboard_input/input_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_sender.h -------------------------------------------------------------------------------- /src/keyboard_input/input_sender_X11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_sender_X11.cpp -------------------------------------------------------------------------------- /src/keyboard_input/input_sender_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_sender_dummy.cpp -------------------------------------------------------------------------------- /src/keyboard_input/input_sender_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/input_sender_win.cpp -------------------------------------------------------------------------------- /src/keyboard_input/keyboard_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/keyboard_input.cpp -------------------------------------------------------------------------------- /src/keyboard_input/keyboard_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/keyboard_input/keyboard_input.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/media_keys/media_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/media_keys/media_keys.h -------------------------------------------------------------------------------- /src/media_keys/media_keys_dbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/media_keys/media_keys_dbus.cpp -------------------------------------------------------------------------------- /src/media_keys/media_keys_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/media_keys/media_keys_dummy.cpp -------------------------------------------------------------------------------- /src/media_keys/media_keys_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/media_keys/media_keys_win.cpp -------------------------------------------------------------------------------- /src/openvr/ivrinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput.cpp -------------------------------------------------------------------------------- /src/openvr/ivrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput.h -------------------------------------------------------------------------------- /src/openvr/ivrinput_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput_action.h -------------------------------------------------------------------------------- /src/openvr/ivrinput_action_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput_action_set.h -------------------------------------------------------------------------------- /src/openvr/ivrinput_input_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput_input_source.h -------------------------------------------------------------------------------- /src/openvr/ivrinput_manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ivrinput_manifest.h -------------------------------------------------------------------------------- /src/openvr/lh_console_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/lh_console_util.cpp -------------------------------------------------------------------------------- /src/openvr/lh_console_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/lh_console_util.h -------------------------------------------------------------------------------- /src/openvr/openvr_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/openvr_init.cpp -------------------------------------------------------------------------------- /src/openvr/openvr_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/openvr_init.h -------------------------------------------------------------------------------- /src/openvr/ovr_application_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_application_wrapper.cpp -------------------------------------------------------------------------------- /src/openvr/ovr_application_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_application_wrapper.h -------------------------------------------------------------------------------- /src/openvr/ovr_overlay_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_overlay_wrapper.cpp -------------------------------------------------------------------------------- /src/openvr/ovr_overlay_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_overlay_wrapper.h -------------------------------------------------------------------------------- /src/openvr/ovr_settings_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_settings_wrapper.cpp -------------------------------------------------------------------------------- /src/openvr/ovr_settings_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_settings_wrapper.h -------------------------------------------------------------------------------- /src/openvr/ovr_system_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_system_wrapper.cpp -------------------------------------------------------------------------------- /src/openvr/ovr_system_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/openvr/ovr_system_wrapper.h -------------------------------------------------------------------------------- /src/overlaycontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/overlaycontroller.cpp -------------------------------------------------------------------------------- /src/overlaycontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/overlaycontroller.h -------------------------------------------------------------------------------- /src/package_files/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/LICENSE.MIT -------------------------------------------------------------------------------- /src/package_files/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/LICENSE.txt -------------------------------------------------------------------------------- /src/package_files/action_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/action_manifest.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_hmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_hmd.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_hp_wmr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_hp_wmr.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_knuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_knuckles.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_touch.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_vive_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_vive_controller.json -------------------------------------------------------------------------------- /src/package_files/default_action_manifests/ovras-team.advancedsettings_default_wmr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/default_action_manifests/ovras-team.advancedsettings_default_wmr.json -------------------------------------------------------------------------------- /src/package_files/linux/AdvancedSettings.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/linux/AdvancedSettings.desktop -------------------------------------------------------------------------------- /src/package_files/manifest.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/manifest.vrmanifest -------------------------------------------------------------------------------- /src/package_files/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/qt.conf -------------------------------------------------------------------------------- /src/package_files/restartvrserver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/restartvrserver.bat -------------------------------------------------------------------------------- /src/package_files/startdesktopmode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/package_files/startdesktopmode.bat -------------------------------------------------------------------------------- /src/quaternion/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/quaternion/quaternion.h -------------------------------------------------------------------------------- /src/res/img/alarm/alarm_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/alarm/alarm_activated.png -------------------------------------------------------------------------------- /src/res/img/audio/media_keys/outline_play_pause_white_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/media_keys/outline_play_pause_white_24dp.svg -------------------------------------------------------------------------------- /src/res/img/audio/media_keys/outline_skip_next_white_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/media_keys/outline_skip_next_white_24dp.svg -------------------------------------------------------------------------------- /src/res/img/audio/media_keys/outline_skip_previous_white_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/media_keys/outline_skip_previous_white_24dp.svg -------------------------------------------------------------------------------- /src/res/img/audio/media_keys/outline_stop_white_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/media_keys/outline_stop_white_24dp.svg -------------------------------------------------------------------------------- /src/res/img/audio/microphone/mic_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/microphone/mic_off.svg -------------------------------------------------------------------------------- /src/res/img/audio/microphone/mic_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/microphone/mic_on.svg -------------------------------------------------------------------------------- /src/res/img/audio/microphone/ptm_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/microphone/ptm_notification.png -------------------------------------------------------------------------------- /src/res/img/audio/microphone/ptt_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/microphone/ptt_notification.png -------------------------------------------------------------------------------- /src/res/img/audio/microphone/ptt_notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/microphone/ptt_notification.svg -------------------------------------------------------------------------------- /src/res/img/audio/speaker/speaker_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/speaker/speaker_off.svg -------------------------------------------------------------------------------- /src/res/img/audio/speaker/speaker_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/audio/speaker/speaker_on.svg -------------------------------------------------------------------------------- /src/res/img/battery/battery_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_0.png -------------------------------------------------------------------------------- /src/res/img/battery/battery_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_1.png -------------------------------------------------------------------------------- /src/res/img/battery/battery_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_2.png -------------------------------------------------------------------------------- /src/res/img/battery/battery_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_3.png -------------------------------------------------------------------------------- /src/res/img/battery/battery_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_4.png -------------------------------------------------------------------------------- /src/res/img/battery/battery_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/battery/battery_5.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermark.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkl1.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkl2.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkl3.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkr1.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkr2.png -------------------------------------------------------------------------------- /src/res/img/chaperone/centermarkr3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/chaperone/centermarkr3.png -------------------------------------------------------------------------------- /src/res/img/common/backarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/common/backarrow.svg -------------------------------------------------------------------------------- /src/res/img/common/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/common/check.svg -------------------------------------------------------------------------------- /src/res/img/icons/advicon256px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/icons/advicon256px.ico -------------------------------------------------------------------------------- /src/res/img/icons/thumbicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/icons/thumbicon.png -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/audio_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/audio_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/bindings_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/bindings_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/chaperone_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/chaperone_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/motion_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/motion_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/offsets_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/offsets_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/rotation_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/rotation_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/settings_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/settings_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/space_fix_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/space_fix_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/statistics_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/statistics_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/steamvr_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/steamvr_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/utilities_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/utilities_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/main_menu_icons/video_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/main_menu_icons/video_tab_icon.svg -------------------------------------------------------------------------------- /src/res/img/rotation/autoturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/rotation/autoturn.png -------------------------------------------------------------------------------- /src/res/img/rotation/noautoturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/rotation/noautoturn.png -------------------------------------------------------------------------------- /src/res/img/rotation/noautoturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/rotation/noautoturn.svg -------------------------------------------------------------------------------- /src/res/img/video/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/video/color.png -------------------------------------------------------------------------------- /src/res/img/video/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/img/video/dimmer.png -------------------------------------------------------------------------------- /src/res/qml/ChaperoneWarningsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/ChaperoneWarningsPage.qml -------------------------------------------------------------------------------- /src/res/qml/FixFloorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/FixFloorPage.qml -------------------------------------------------------------------------------- /src/res/qml/PlayspacePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/PlayspacePage.qml -------------------------------------------------------------------------------- /src/res/qml/RootPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/RootPage.qml -------------------------------------------------------------------------------- /src/res/qml/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/SettingsPage.qml -------------------------------------------------------------------------------- /src/res/qml/StatisticsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/StatisticsPage.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/AudioPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/AudioPage.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/device_selector/AudioDeviceSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/device_selector/AudioDeviceSelector.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/device_selector/MicDeviceSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/device_selector/MicDeviceSelector.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/device_selector/MicVolumeSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/device_selector/MicVolumeSlider.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/device_selector/MirrorDeviceSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/device_selector/MirrorDeviceSelector.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/device_selector/MirrorVolumeSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/device_selector/MirrorVolumeSlider.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/dialog_boxes/AudioDeleteProfileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/dialog_boxes/AudioDeleteProfileDialog.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/dialog_boxes/AudioMessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/dialog_boxes/AudioMessageDialog.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/dialog_boxes/AudioNewProfileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/dialog_boxes/AudioNewProfileDialog.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/profiles/ProfileButtons.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/profiles/ProfileButtons.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/proximity/ProximityToggle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/proximity/ProximityToggle.qml -------------------------------------------------------------------------------- /src/res/qml/audio_page/push_to_talk/PttButtons.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/audio_page/push_to_talk/PttButtons.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/ChaperonePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/ChaperonePage.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/change_orientation/ChangeOrientationGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/change_orientation/ChangeOrientationGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/chaperone_additional/ChaperoneAdditionalPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/chaperone_additional/ChaperoneAdditionalPage.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/chaperone_additional/chaperoneboundscolor/ChaperoneBoundsColorGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/chaperone_additional/chaperoneboundscolor/ChaperoneBoundsColorGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/chaperone_additional/chaperonemisc/ChaperoneMiscGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/chaperone_additional/chaperonemisc/ChaperoneMiscGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/chaperone_page/chaperone_additional/chaperonetype/ChaperoneTypeGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/chaperone_page/chaperone_additional/chaperonetype/ChaperoneTypeGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/common/FullWidthSliderBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/FullWidthSliderBox.qml -------------------------------------------------------------------------------- /src/res/qml/common/HourComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/HourComboBox.qml -------------------------------------------------------------------------------- /src/res/qml/common/LineSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/LineSeparator.qml -------------------------------------------------------------------------------- /src/res/qml/common/MinuteSecondComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MinuteSecondComboBox.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyComboBox.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyDialogOkCancelPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyDialogOkCancelPopup.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyDialogOkPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyDialogOkPopup.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyPushButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyPushButton.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyPushButton2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyPushButton2.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyRadioButton.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyResources.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyResources.qml -------------------------------------------------------------------------------- /src/res/qml/common/MySlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MySlider.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyStackViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyStackViewPage.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyText.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyTextField.qml -------------------------------------------------------------------------------- /src/res/qml/common/MyToggleButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/MyToggleButton.qml -------------------------------------------------------------------------------- /src/res/qml/common/TimeAssembly.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/TimeAssembly.qml -------------------------------------------------------------------------------- /src/res/qml/common/mainwidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/common/mainwidget.qml -------------------------------------------------------------------------------- /src/res/qml/motion_page/MotionPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/motion_page/MotionPage.qml -------------------------------------------------------------------------------- /src/res/qml/motion_page/gravity/GravityGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/motion_page/gravity/GravityGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/motion_page/height_toggle/HeightToggleGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/motion_page/height_toggle/HeightToggleGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/motion_page/space_drag/SpaceDragGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/motion_page/space_drag/SpaceDragGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/qmldir -------------------------------------------------------------------------------- /src/res/qml/rotation_page/RotationPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/RotationPage.qml -------------------------------------------------------------------------------- /src/res/qml/rotation_page/redirected/AutoTurnGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/redirected/AutoTurnGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/rotation_page/redirected/RedirectedGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/redirected/RedirectedGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/rotation_page/snap_turn/SnapTurnGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/snap_turn/SnapTurnGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/rotation_page/space_turn/SpaceTurnGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/space_turn/SpaceTurnGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/rotation_page/view_ratchet/ViewRatchetGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/rotation_page/view_ratchet/ViewRatchetGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/steamvr_page/SteamVRPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/steamvr_page/SteamVRPage.qml -------------------------------------------------------------------------------- /src/res/qml/steamvr_page/camera/CameraGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/steamvr_page/camera/CameraGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/steamvr_page/steamvr_additional/SteamVRTXRXPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/steamvr_page/steamvr_additional/SteamVRTXRXPage.qml -------------------------------------------------------------------------------- /src/res/qml/steamvr_page/steamvrbind/SteamVRBindGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/steamvr_page/steamvrbind/SteamVRBindGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/steamvr_page/steamvrmisc/SteamVRMiscGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/steamvr_page/steamvrmisc/SteamVRMiscGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/UtilitiesPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/UtilitiesPage.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/alarm_clock/AlarmGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/alarm_clock/AlarmGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/keyboard_utils/KeyboardGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/keyboard_utils/KeyboardGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/media_keys/MediaButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/media_keys/MediaButton.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/media_keys/MediaControllerKeys.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/media_keys/MediaControllerKeys.qml -------------------------------------------------------------------------------- /src/res/qml/utilities_page/misc/MiscBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/utilities_page/misc/MiscBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/VideoPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/VideoPage.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/brightness/BrightnessGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/brightness/BrightnessGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/color/ColorGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/color/ColorGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/dialogboxes/VideoDeleteProfileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/dialogboxes/VideoDeleteProfileDialog.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/dialogboxes/VideoMessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/dialogboxes/VideoMessageDialog.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/dialogboxes/VideoNewProfileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/dialogboxes/VideoNewProfileDialog.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/miscvid/VideoMiscGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/miscvid/VideoMiscGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/overlaycolorbright/OverlayMethodGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/overlaycolorbright/OverlayMethodGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/profiles/VideoProfileGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/profiles/VideoProfileGroupBox.qml -------------------------------------------------------------------------------- /src/res/qml/video_page/supersampling/SuperSamplingGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/qml/video_page/supersampling/SuperSamplingGroupBox.qml -------------------------------------------------------------------------------- /src/res/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/resources.qrc -------------------------------------------------------------------------------- /src/res/sounds/alarm01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/sounds/alarm01.wav -------------------------------------------------------------------------------- /src/res/sounds/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/sounds/click.wav -------------------------------------------------------------------------------- /src/res/sounds/focus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/res/sounds/focus.wav -------------------------------------------------------------------------------- /src/settings/internal/bool_setting_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/bool_setting_value.h -------------------------------------------------------------------------------- /src/settings/internal/double_setting_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/double_setting_value.h -------------------------------------------------------------------------------- /src/settings/internal/setting_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/setting_value.h -------------------------------------------------------------------------------- /src/settings/internal/settings_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/settings_controller.h -------------------------------------------------------------------------------- /src/settings/internal/settings_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/settings_internal.h -------------------------------------------------------------------------------- /src/settings/internal/settings_object_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/settings_object_data.h -------------------------------------------------------------------------------- /src/settings/internal/specific_setting_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/internal/specific_setting_value.h -------------------------------------------------------------------------------- /src/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/settings.cpp -------------------------------------------------------------------------------- /src/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/settings.h -------------------------------------------------------------------------------- /src/settings/settings_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/settings_object.cpp -------------------------------------------------------------------------------- /src/settings/settings_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/settings/settings_object.h -------------------------------------------------------------------------------- /src/tabcontrollers/AudioTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/AudioTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/AudioTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/AudioTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/ChaperoneTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/ChaperoneTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/ChaperoneTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/ChaperoneTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/FixFloorTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/FixFloorTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/FixFloorTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/FixFloorTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/MoveCenterTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/MoveCenterTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/MoveCenterTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/MoveCenterTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/RotationTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/RotationTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/RotationTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/RotationTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/SettingsTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/SettingsTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/SettingsTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/SettingsTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/StatisticsTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/StatisticsTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/StatisticsTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/StatisticsTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/SteamVRTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/SteamVRTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/SteamVRTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/SteamVRTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/UtilitiesTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/UtilitiesTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/UtilitiesTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/UtilitiesTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/VideoTabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/VideoTabController.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/VideoTabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/VideoTabController.h -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManager.h -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerDummy.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerDummy.h -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerPulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerPulse.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerPulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerPulse.h -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerPulse_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerPulse_internal.h -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerWindows.cpp -------------------------------------------------------------------------------- /src/tabcontrollers/audiomanager/AudioManagerWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/tabcontrollers/audiomanager/AudioManagerWindows.h -------------------------------------------------------------------------------- /src/utils/ChaperoneUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/ChaperoneUtils.cpp -------------------------------------------------------------------------------- /src/utils/ChaperoneUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/ChaperoneUtils.h -------------------------------------------------------------------------------- /src/utils/FrameRateUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/FrameRateUtils.cpp -------------------------------------------------------------------------------- /src/utils/FrameRateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/FrameRateUtils.h -------------------------------------------------------------------------------- /src/utils/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/Matrix.h -------------------------------------------------------------------------------- /src/utils/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/paths.cpp -------------------------------------------------------------------------------- /src/utils/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/paths.h -------------------------------------------------------------------------------- /src/utils/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/setup.cpp -------------------------------------------------------------------------------- /src/utils/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/setup.h -------------------------------------------------------------------------------- /src/utils/update_rate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/update_rate.cpp -------------------------------------------------------------------------------- /src/utils/update_rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/src/utils/update_rate.h -------------------------------------------------------------------------------- /test/keyboard_input/keyboard_input.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/test/keyboard_input/keyboard_input.pro -------------------------------------------------------------------------------- /test/keyboard_input/tst_parsertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/test/keyboard_input/tst_parsertest.cpp -------------------------------------------------------------------------------- /third-party/easylogging++/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/easylogging++/LICENSE-MIT -------------------------------------------------------------------------------- /third-party/easylogging++/easylogging++.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/easylogging++/easylogging++.cc -------------------------------------------------------------------------------- /third-party/easylogging++/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/easylogging++/easylogging++.h -------------------------------------------------------------------------------- /third-party/nlhomann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/nlhomann/json.hpp -------------------------------------------------------------------------------- /third-party/openssl/LICENSE-OPENSSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openssl/LICENSE-OPENSSL -------------------------------------------------------------------------------- /third-party/openssl/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openssl/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /third-party/openssl/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openssl/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /third-party/openvr/LICENSE-VALVE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/LICENSE-VALVE -------------------------------------------------------------------------------- /third-party/openvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/README.md -------------------------------------------------------------------------------- /third-party/openvr/bin/linux32/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/linux32/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/bin/linux32/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/linux32/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /third-party/openvr/bin/linux64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/linux64/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/bin/linux64/libopenvr_api.so.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/linux64/libopenvr_api.so.dbg -------------------------------------------------------------------------------- /third-party/openvr/bin/osx32/libopenvr_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/osx32/libopenvr_api.dylib -------------------------------------------------------------------------------- /third-party/openvr/bin/osx32/libopenvr_api.dylib.dSYM/Contents/Resources/DWARF/libopenvr_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/osx32/libopenvr_api.dylib.dSYM/Contents/Resources/DWARF/libopenvr_api.dylib -------------------------------------------------------------------------------- /third-party/openvr/bin/win32/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/win32/openvr_api.dll -------------------------------------------------------------------------------- /third-party/openvr/bin/win32/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/win32/openvr_api.pdb -------------------------------------------------------------------------------- /third-party/openvr/bin/win64/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/win64/openvr_api.dll -------------------------------------------------------------------------------- /third-party/openvr/bin/win64/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/bin/win64/openvr_api.pdb -------------------------------------------------------------------------------- /third-party/openvr/headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/headers/openvr.h -------------------------------------------------------------------------------- /third-party/openvr/headers/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/headers/openvr_api.cs -------------------------------------------------------------------------------- /third-party/openvr/headers/openvr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/headers/openvr_api.json -------------------------------------------------------------------------------- /third-party/openvr/headers/openvr_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/headers/openvr_capi.h -------------------------------------------------------------------------------- /third-party/openvr/headers/openvr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/headers/openvr_driver.h -------------------------------------------------------------------------------- /third-party/openvr/lib/androidarm64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/androidarm64/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/lib/linux32/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/linux32/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/lib/linux64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/linux64/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/lib/linuxarm64/libopenvr_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/linuxarm64/libopenvr_api.so -------------------------------------------------------------------------------- /third-party/openvr/lib/linuxarm64/libopenvr_api_unity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/linuxarm64/libopenvr_api_unity.so -------------------------------------------------------------------------------- /third-party/openvr/lib/osx32/libopenvr_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/osx32/libopenvr_api.dylib -------------------------------------------------------------------------------- /third-party/openvr/lib/win32/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/win32/openvr_api.lib -------------------------------------------------------------------------------- /third-party/openvr/lib/win64/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/openvr/lib/win64/openvr_api.lib -------------------------------------------------------------------------------- /third-party/policyconfig/IPolicyConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/third-party/policyconfig/IPolicyConfig.h -------------------------------------------------------------------------------- /ver/versioncheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVR-Advanced-Settings/OpenVR-AdvancedSettings/HEAD/ver/versioncheck.json --------------------------------------------------------------------------------