From 4a90f5a4941294bb380ffd35f38db4f37b7f4768 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Tue, 17 Feb 2026 13:49:29 +0900 Subject: [PATCH] Remove mentions to SchildiChat Web Signed-off-by: Suguru Hirahara --- README.md | 1 - group_vars/matrix_servers | 60 ---------------------- roles/custom/matrix-base/defaults/main.yml | 3 -- setup.yml | 1 - 4 files changed, 65 deletions(-) diff --git a/README.md b/README.md index f7006a791..3c0d46b8b 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,6 @@ Web clients for Matrix that you can host on your own domains. | [Element Web](https://github.com/element-hq/element-web) | ✅ | Default Matrix web client, configured to connect to your own Synapse server | [Link](docs/configuring-playbook-client-element-web.md) | | [Hydrogen](https://github.com/element-hq/hydrogen-web) | ❌ | Lightweight Matrix client with legacy and mobile browser support | [Link](docs/configuring-playbook-client-hydrogen.md) | | [Cinny](https://github.com/ajbura/cinny) | ❌ | Simple, elegant and secure web client | [Link](docs/configuring-playbook-client-cinny.md) | -| [SchildiChat Web](https://schildi.chat/) | ❌ | Based on Element Web, with a more traditional instant messaging experience | [Link](docs/configuring-playbook-client-schildichat-web.md) | | [FluffyChat Web](https://fluffychat.im/) | ❌ | The cutest messenger in Matrix | [Link](docs/configuring-playbook-client-fluffychat-web.md) | ### Server Components diff --git a/group_vars/matrix_servers b/group_vars/matrix_servers index 225d95c1d..e7a7fe96d 100755 --- a/group_vars/matrix_servers +++ b/group_vars/matrix_servers @@ -591,13 +591,6 @@ devture_systemd_service_manager_services_list_auto: | 'groups': ['matrix', 'clients', 'hydrogen', 'client-hydrogen'], }] if hydrogen_enabled else []) + - ([{ - 'name': 'matrix-client-schildichat.service', - 'priority': 2000, - 'restart_necessary': (matrix_client_schildichat_restart_necessary | bool), - 'groups': ['matrix', 'clients', 'schildichat', 'client-schildichat'], - }] if matrix_client_schildichat_enabled else []) - + ([{ 'name': 'matrix-client-fluffychat.service', 'priority': 2000, @@ -4527,59 +4520,6 @@ cinny_hostname: "{{ matrix_server_fqn_cinny }}" # ###################################################################### -###################################################################### -# -# matrix-client-schildichat -# -###################################################################### - -matrix_client_schildichat_enabled: false - -matrix_client_schildichat_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}" - -matrix_client_schildichat_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_client_schildichat_docker_image_registry_prefix_upstream_default }}" - -matrix_client_schildichat_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}" - -matrix_client_schildichat_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8765') if matrix_playbook_service_host_bind_interface_prefix else '' }}" - -matrix_client_schildichat_container_network: "{{ matrix_addons_container_network }}" - -matrix_client_schildichat_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_client_schildichat_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}" - -matrix_client_schildichat_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}" -matrix_client_schildichat_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}" -matrix_client_schildichat_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}" -matrix_client_schildichat_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}" - -matrix_client_schildichat_default_hs_url: "{{ matrix_homeserver_url }}" -matrix_client_schildichat_default_is_url: "{{ matrix_identity_server_url }}" - -# Use Scalar by default -matrix_client_schildichat_integrations_ui_url: "https://scalar.vector.im/" -matrix_client_schildichat_integrations_rest_url: "https://scalar.vector.im/api" -matrix_client_schildichat_integrations_widgets_urls: "{{ ['https://scalar.vector.im/api'] }}" -matrix_client_schildichat_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html" - -matrix_client_schildichat_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}" - -matrix_client_schildichat_registration_enabled: "{{ matrix_synapse_enable_registration }}" - -matrix_client_schildichat_enable_presence_by_hs_url: |- - {{ - none - if matrix_synapse_presence_enabled - else {matrix_client_schildichat_default_hs_url: false} - }} - -matrix_client_schildichat_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}" - -###################################################################### -# -# /matrix-client-schildichat -# -###################################################################### - ###################################################################### # # matrix-client-fluffychat diff --git a/roles/custom/matrix-base/defaults/main.yml b/roles/custom/matrix-base/defaults/main.yml index 49b3c89f3..e349fce2c 100644 --- a/roles/custom/matrix-base/defaults/main.yml +++ b/roles/custom/matrix-base/defaults/main.yml @@ -112,9 +112,6 @@ matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}" # This is where you access the Cinny web client from (if enabled via cinny_enabled; disabled by default). matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}" -# This is where you access the SchildiChat Web from (if enabled via matrix_client_schildichat_enabled; disabled by default). -matrix_server_fqn_schildichat: "schildichat.{{ matrix_domain }}" - # This is where you access the FluffyChat Web from (if enabled via matrix_client_fluffychat_enabled; disabled by default). matrix_server_fqn_fluffychat: "fluffychat.{{ matrix_domain }}" diff --git a/setup.yml b/setup.yml index c64dc0e21..8d4090ac9 100644 --- a/setup.yml +++ b/setup.yml @@ -109,7 +109,6 @@ - custom/matrix-client-element - galaxy/hydrogen - galaxy/cinny - - custom/matrix-client-schildichat - custom/matrix-client-fluffychat - galaxy/jitsi - custom/matrix-user-verification-service