Added option to disable rumble from the Apollo side

Added option to disable rumble from the Apollo side
This commit is contained in:
thesystemcoder168
2025-06-25 16:13:04 -07:00
parent c2bee29b88
commit 54cb7eceba
7 changed files with 23 additions and 0 deletions

View File

@@ -176,6 +176,7 @@
"high_resolution_scrolling": "enabled",
"native_pen_touch": "enabled",
"enable_input_only_mode": "disabled",
"enable_block_rumble_messages_to_controllers": "disabled",
"keybindings": "[0x10,0xA0,0x11,0xA2,0x12,0xA4]", // todo: add this to UI
},
},

View File

@@ -177,6 +177,17 @@ const config = ref(props.config)
v-model="config.enable_input_only_mode"
default="false"
></Checkbox>
<!-- Enable Block Rumble Messages to Controllers -->
<hr>
<Checkbox v-if="platform === 'windows'"
class="mb-3"
id="enable_block_rumble_messages_to_controllers"
locale-prefix="config"
v-model="config.enable_block_rumble_messages_to_controllers"
default="false"
></Checkbox>
</div>
</template>

View File

@@ -255,6 +255,8 @@
"enable_discovery_desc": "When disabled, you'll need to manually enter host IP on the client to pair.",
"enable_input_only_mode": "Enable Input Only Mode",
"enable_input_only_mode_desc": "Add an Input Only app entry. When enabled, the app list will only show the current running app and the Input Only entry when streaming. The Input Only entry will not receive any image or audio. Useful for operating the desktop on TV or connecting peripherals which the TV doesn't support with a phone.",
"enable_block_rumble_messages_to_controllers": "Block Rumble Messages to Controllers",
"enable_block_rumble_messages_to_controllers_desc": "Block Rumble Messages to Controllers",
"enable_pairing": "Enable Pairing",
"enable_pairing_desc": "Enable pairing for the Moonlight client. This allows the client to authenticate with the host and establish a secure connection.",
"encoder": "Force a Specific Encoder",