Skip to content

Commit

Permalink
Bump card version
Browse files Browse the repository at this point in the history
  • Loading branch information
kizza committed Mar 2, 2024
1 parent 19be9bd commit c6c1f1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from 'lit';
import { Colours } from './types';

export const CARD_VERSION = '0.1.3';
export const CARD_VERSION = '0.1.4';

export const RADIUS = css`0.8em`;

Expand Down
9 changes: 6 additions & 3 deletions src/magic-home-party-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ import { parseConfig } from './config/parse';
import { mdiDevices, mdiLightbulb, mdiSofa } from '@mdi/js'

console.info(
`%c MAGIC-HOME-PARTY-CARD \n%c Version ${CARD_VERSION} `,
'color: white; font-weight: bold; background: purple',
'color: white; font-weight: bold; background: dimgray'
`%c Magic %c Home %c Party %c Card %c ${CARD_VERSION} `,
'color: #222; font-weight: bold; background: #90f1ef',
'color: #222; font-weight: bold; background: #ffd6e0',
'color: #222; font-weight: bold; background: #ffef9f',
'color: #222; font-weight: bold; background: #c1fba4',
'color: #ff70a6; font-weight: bold;',
);

// Register to UI picker
Expand Down

0 comments on commit c6c1f1f

Please sign in to comment.