Skip to content

Commit

Permalink
bump to v0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Jun 3, 2024
1 parent dc02a59 commit 84e082e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +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.5-green.svg?style=plastic)](#)
[![stable-release-0.7.5](https://img.shields.io/badge/stable-release_0.7.5-green.svg?style=plastic)](#)
<a href="https://www.buymeacoffee.com/daringer" target="_blank"> <img src="https://cdn.buymeacoffee.com/buttons/lato-green.png" alt="Buy Me A Coffee Or Beer" height=18></a>
[![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)](#)

## 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.5
0.7.7
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.7.7

- service responses
- disable runtime sort
- first auto-format feature

## 0.7.5

- properly set version inside sources
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.5";
var VERSION = "0.7.7";

// 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 84e082e

Please sign in to comment.