Skip to content

Commit

Permalink
Release v0.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Dec 14, 2024
1 parent 3e19be8 commit eed78a3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Flex Table

[![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration)
[![Version](https://img.shields.io/badge/version-0.7.7-green.svg?style=plastic)](#)
[![stable-release-0.7.7](https://img.shields.io/badge/stable-release_0.7.7-green.svg?style=plastic)](#)
[![Version](https://img.shields.io/badge/version-0.7.8-green.svg?style=plastic)](#)
[![stable-release-0.7.8](https://img.shields.io/badge/stable-release_0.7.8-green.svg?style=plastic)](#)

## Installation using HACS ([Home Assistant Community Store](https://hacs.xyz))

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.7
0.7.8
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.7.8

* Service call target should be empty if no entity is defined (#143)
* Feature: Optionally sort by unmodified values (#142)
* Support entity device and area (#144)
* Feature: Add support for footer row (#152)
* Fix dot notation with arrays (#155)
* Feature: Support action option for service calls (#156)

## 0.7.7

- service responses
Expand Down
2 changes: 1 addition & 1 deletion flex-table-card.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

// VERSION info
var VERSION = "0.7.7";
var VERSION = "0.7.8";

// typical [[1,2,3], [6,7,8]] to [[1, 6], [2, 7], [3, 8]] converter
var transpose = m => m[0].map((x, i) => m.map(x => x[i]));
Expand Down

0 comments on commit eed78a3

Please sign in to comment.