2 Commits

Author SHA1 Message Date
renovate[bot]
bbcc94980b chore(deps): update ghcr.io/element-hq/matrix-authentication-service docker tag to v1.5.0
Some checks failed
Lock Threads / action (push) Has been cancelled
Matrix CI / yamllint (push) Has been cancelled
Matrix CI / ansible-lint (push) Has been cancelled
Matrix CI / Run pre-commit (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
2025-10-28 15:47:02 +02:00
Benjamin Blacher
f547e19dcc Add support for some matrix-steam presence tracking vars 2025-10-28 15:28:25 +02:00
3 changed files with 33 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ matrix_authentication_service_container_repo_version: "{{ 'main' if matrix_authe
matrix_authentication_service_container_src_files_path: "{{ matrix_base_data_path }}/matrix-authentication-service/container-src"
# renovate: datasource=docker depName=ghcr.io/element-hq/matrix-authentication-service
matrix_authentication_service_version: 1.4.1
matrix_authentication_service_version: 1.5.0
matrix_authentication_service_container_image_registry_prefix: "{{ 'localhost/' if matrix_authentication_service_container_image_self_build else matrix_authentication_service_container_image_registry_prefix_upstream }}"
matrix_authentication_service_container_image_registry_prefix_upstream: "{{ matrix_authentication_service_container_image_registry_prefix_upstream_default }}"
matrix_authentication_service_container_image_registry_prefix_upstream_default: "ghcr.io/"

View File

@@ -34,6 +34,12 @@ matrix_steam_bridge_appservice_port: "8080"
matrix_steam_bridge_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}"
matrix_steam_bridge_self_sign_enabled: "{{ matrix_bridges_self_sign_enabled }}"
# matrix -> steam presence
matrix_steam_bridge_network_presence_enabled: true
# Default inactivity state
# This is what the bridge sets it's status to after some time of no user interaction
matrix_steam_bridge_network_presence_inactivity_status: 'invisible'
# A public address that external services can use to reach this appservice
matrix_steam_bridge_appservice_public_address: "https://{{ matrix_server_fqn_matrix }}"

View File

@@ -17,6 +17,32 @@ network:
steam_bridge_auto_start: true
steam_bridge_startup_timeout: 30
# Presence synchronization settings
presence:
# Enable presence tracking from Matrix to Steam
# When enabled, your Steam status will automatically change based on
# your Matrix presence and activity
enabled: {{ matrix_steam_bridge_network_presence_enabled | to_json }}
# Inactivity timeout in minutes before changing Steam status
# This is used as a fallback when your Matrix server doesn't support
# presence tracking. After this many minutes without Matrix activity,
# your Steam status will change (see inactivity_status below)
# Set to 0 to disable automatic away
inactivity_timeout: 15
# Status to set after inactivity timeout
# Valid values: "snooze" (appear away/idle) or "invisible" (appear offline)
inactivity_status: {{ matrix_steam_bridge_network_presence_inactivity_status | to_json }}
# Whether typing events in Matrix should reset the inactivity timer
# When true, typing will count as activity and keep you marked as online
typing_resets_presence: true
# Whether sending read receipts in Matrix should reset the inactivity timer
# When true, reading messages will count as activity and keep you marked as online
read_receipts_reset_presence: false
# Config options that affect the central bridge module.
bridge:
# The prefix for commands. Only required in non-management rooms.