Maj de HACS version 1.34, vers la version 2.0. procédure d'installation?

Une autre carte avec flex-table-card :

type: custom:auto-entities
filter:
  include:
    - entity_id: update.*
      state: 'on'
  exclude:
    - entity_id: update.*
      state: 'off'
    - entity_id: update.*
      attributes:
        device_class: firmware
    - entity_id: update.*
      attributes:
        supported_features: 25
    - entity_id: update.home_assistant_core_update
    - entity_id: update.home_assistant_operating_system_update
    - entity_id: update.home_assistant_supervisor_update
card:
  type: custom:flex-table-card
  sort_by: friendly_name+
  clickable: true
  columns:
    - data: friendly_name
      icon: hacs:hacs
      align: left
      name: ' Nom'
      modify: |-
        x = x.replace('update', '');
        x;
    - data: installed_version
      name: Installé
      align: center
    - data: latest_version
      name: Dernière
      align: center
  css:
    tbody tr td:nth-child(2): 'color: green; font-weight: bold;'
    tbody tr td:nth-child(3): 'color: red; font-weight: bold;'

Avec icone:

type: custom:auto-entities
filter:
  include:
    - entity_id: update.*
      state: 'on'
  exclude:
    - entity_id: update.*
      state: 'off'
    - entity_id: update.*
      attributes:
        device_class: firmware
    - entity_id: update.*
      attributes:
        supported_features: 25
    - entity_id: update.home_assistant_core_update
    - entity_id: update.home_assistant_operating_system_update
    - entity_id: update.home_assistant_supervisor_update
card:
  type: custom:flex-table-card
  sort_by: friendly_name+
  clickable: true
  columns:
    - data: entity_picture
      align: center
      name: icone
      modify: '''<img src="'' + x + ''"style="height: 30px;width:30px">'''
    - data: friendly_name
      icon: hacs:hacs
      align: left
      name: ' Nom'
      modify: |-
        x = x.replace('update', '');
        x;
    - data: installed_version
      name: Installé
      align: center
    - data: latest_version
      name: Dernière
      align: center
  css:
    tbody tr td:nth-child(3): 'color: green; font-weight: bold;'
    tbody tr td:nth-child(4): 'color: red; font-weight: bold;'

Avec url du changelog :

2 « J'aime »