├── .devcontainer ├── configuration.yaml ├── devcontainer.json └── ui-lovelace.yaml ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── .releaserc ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── hacs.json ├── package.json ├── rollup.config.dev.js ├── rollup.config.js ├── screenshots ├── cartoons-watched.png ├── example_screenshot_1.png ├── game-time-left-editor-1.png ├── game-time-left-editor-2.png ├── game-time-left.png └── time-cards-and-history-example.png ├── src ├── const.ts ├── editor.ts ├── elapsed-time-card.ts ├── localize │ ├── languages │ │ ├── en.json │ │ └── nb.json │ └── localize.ts └── types.ts ├── tsconfig.json └── yarn.lock /.devcontainer/configuration.yaml: -------------------------------------------------------------------------------- 1 | default_config: 2 | lovelace: 3 | mode: yaml 4 | demo: -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.devcontainer/ui-lovelace.yaml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [kirbo] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /.rpt2_cache/ 3 | package-lock.json 4 | /dist 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.releaserc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/README.md -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/hacs.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/rollup.config.dev.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/rollup.config.js -------------------------------------------------------------------------------- /screenshots/cartoons-watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/cartoons-watched.png -------------------------------------------------------------------------------- /screenshots/example_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/example_screenshot_1.png -------------------------------------------------------------------------------- /screenshots/game-time-left-editor-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/game-time-left-editor-1.png -------------------------------------------------------------------------------- /screenshots/game-time-left-editor-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/game-time-left-editor-2.png -------------------------------------------------------------------------------- /screenshots/game-time-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/game-time-left.png -------------------------------------------------------------------------------- /screenshots/time-cards-and-history-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/screenshots/time-cards-and-history-example.png -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- 1 | export const CARD_VERSION = '1.3.2'; 2 | -------------------------------------------------------------------------------- /src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/editor.ts -------------------------------------------------------------------------------- /src/elapsed-time-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/elapsed-time-card.ts -------------------------------------------------------------------------------- /src/localize/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/localize/languages/en.json -------------------------------------------------------------------------------- /src/localize/languages/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/localize/languages/nb.json -------------------------------------------------------------------------------- /src/localize/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/localize/localize.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirbo/ha-lovelace-elapsed-time-card/HEAD/yarn.lock --------------------------------------------------------------------------------