From dff0abcdf17cf1b083c76d16e21af8e24aaadb69 Mon Sep 17 00:00:00 2001 From: Darryn Capes-Davis Date: Wed, 5 Nov 2025 12:11:33 +0000 Subject: [PATCH 1/5] chore: Setup Issue templates --- .github/ISSUE_TEMPLATE/bug-report.yml | 77 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature-request.md | 7 +++ 3 files changed, 85 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..baae8b4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,77 @@ +name: Bug Report +description: For reporting bugs or unexpected behavior +title: "[Bug]: " +body: + - type: textarea + id: ha_version + attributes: + label: My Home Assistant Version + description: You can view your Home Assistant Version in _Settings > About_ + placeholder: | + Core: 2025.10.3 + Frontend: 20251001.2 + Flipdown-timer-card: 1.0.1 + validations: + required: true + - type: dropdown + id: lovelace + attributes: + label: My lovelace configuration method + multiple: false + options: + - GUI + - YAML + validations: + required: true + - type: textarea + id: what_i_am_doing + attributes: + label: What I am doing + - type: textarea + id: what_i_expect_to_happen + attributes: + label: What I expect to happen + - type: textarea + id: what_happened_instead + attributes: + label: What happened instead + - type: textarea + id: minimal_steps_to_reproduce + attributes: + label: Minimal steps to reproduce + value: | + 1. + 2. + 3. + ... + - type: textarea + id: minimal_code + attributes: + label: Include any yaml code here + placeholder: Paste YAML code + render: YAML + - type: textarea + id: console_errors + attributes: + label: Error messages from the browser console + description: Select everything from the browser console and copy and paste below + placeholder: Paste console errors + render: console + - type: markdown + attributes: + value: '---' + - type: checkboxes + id: checks + attributes: + label: By checking each box below I indicate that I ... + options: + - label: Understand that this is a channel for reporting bugs, not a support forum (https://community.home-assistant.io/). + required: true + - label: Have made sure I am using the latest version of the plugin. + required: true + - label: Have followed the troubleshooting steps of the "Common Problems" section of https://github.com/thomasloven/hass-config/wiki/Lovelace-Plugins. + required: true + - label: Understand that failure to follow the template above may increase the time required to handle my bug-report, or cause it to be closed without further action. + required: true + + diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..5b95deb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,7 @@ +--- +name: Feature request +about: For suggesting new features +title: '' +labels: '' +assignees: '' +--- From 623a838008470aedca20043cde91f13c1a19ba47 Mon Sep 17 00:00:00 2001 From: dcapslock Date: Wed, 5 Nov 2025 23:14:09 +1100 Subject: [PATCH 2/5] Update feature request template title and labels --- .github/ISSUE_TEMPLATE/feature-request.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index 5b95deb..510eb00 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -1,7 +1,7 @@ --- name: Feature request about: For suggesting new features -title: '' -labels: '' +title: '[FR]: ' +labels: 'feature request' assignees: '' --- From 1b855fcb36118726fef40cfe2f679b7c54e1bf31 Mon Sep 17 00:00:00 2001 From: Darryn Capes-Davis Date: Wed, 5 Nov 2025 20:32:43 +0000 Subject: [PATCH 3/5] docs: Add credit to button-card and @romrider --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b51ae0..4f815bb 100644 --- a/README.md +++ b/README.md @@ -138,3 +138,4 @@ styles: - Original Flipdown Timer Card by [pmongloid](https://github.com/pmongloid/flipdown-timer-card) - This card is based on the work of [@PButcher/flipdown](https://github.com/PButcher/flipdown) and [@iantrich](https://github.com/iantrich)'s boilerplate card +- This repository uses Build, CI and Release configuration based on [button-card](https://github.com/custom-cards/button-card) by [@RomRider](https://github.com/RomRider) From 2965f204e0c535eaea571fe0e17b09cc0cfe4b8d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 7 Nov 2025 08:18:05 +0000 Subject: [PATCH 4/5] chore(release): 1.1.0 [skip ci] ## [1.1.0](https://github.com/dcapslock/flipdown-timer-card/compare/v1.0.1...v1.1.0) (2025-11-07) ### Features * Add Flipdown CSS vars for theming ([#8](https://github.com/dcapslock/flipdown-timer-card/issues/8)) ([a7ed5b1](https://github.com/dcapslock/flipdown-timer-card/commit/a7ed5b15e5589c1cf9ccbeb190e27028d0023dc7)) * Modern GUI Editor ([#6](https://github.com/dcapslock/flipdown-timer-card/issues/6)) ([bfe3fea](https://github.com/dcapslock/flipdown-timer-card/commit/bfe3fea202ae9eef3b904d715269fb8dd042a46c)) ### Bug Fixes * Apply header text shadow for light and dark thems to allow text to be shown even if theme out of place. ([#9](https://github.com/dcapslock/flipdown-timer-card/issues/9)) ([17226e4](https://github.com/dcapslock/flipdown-timer-card/commit/17226e4f3328cb8830e2b50abd5a44271bdc68e1)) ### Documentation * Add credit to button-card and [@romrider](https://github.com/romrider) ([1b855fc](https://github.com/dcapslock/flipdown-timer-card/commit/1b855fcb36118726fef40cfe2f679b7c54e1bf31)) * Change duration type from string to object ([7b7b9f6](https://github.com/dcapslock/flipdown-timer-card/commit/7b7b9f67e337094977a2d58587e01fcdfdf95c62)) * Flipdown CSS variable added to README ([#10](https://github.com/dcapslock/flipdown-timer-card/issues/10)) ([2c1236d](https://github.com/dcapslock/flipdown-timer-card/commit/2c1236d94d399cf895cd7471fb43025debda40ec)) --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ce1634..ffca234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [1.1.0](https://github.com/dcapslock/flipdown-timer-card/compare/v1.0.1...v1.1.0) (2025-11-07) + +### Features + +* Add Flipdown CSS vars for theming ([#8](https://github.com/dcapslock/flipdown-timer-card/issues/8)) ([a7ed5b1](https://github.com/dcapslock/flipdown-timer-card/commit/a7ed5b15e5589c1cf9ccbeb190e27028d0023dc7)) +* Modern GUI Editor ([#6](https://github.com/dcapslock/flipdown-timer-card/issues/6)) ([bfe3fea](https://github.com/dcapslock/flipdown-timer-card/commit/bfe3fea202ae9eef3b904d715269fb8dd042a46c)) + +### Bug Fixes + +* Apply header text shadow for light and dark thems to allow text to be shown even if theme out of place. ([#9](https://github.com/dcapslock/flipdown-timer-card/issues/9)) ([17226e4](https://github.com/dcapslock/flipdown-timer-card/commit/17226e4f3328cb8830e2b50abd5a44271bdc68e1)) + +### Documentation + +* Add credit to button-card and [@romrider](https://github.com/romrider) ([1b855fc](https://github.com/dcapslock/flipdown-timer-card/commit/1b855fcb36118726fef40cfe2f679b7c54e1bf31)) +* Change duration type from string to object ([7b7b9f6](https://github.com/dcapslock/flipdown-timer-card/commit/7b7b9f67e337094977a2d58587e01fcdfdf95c62)) +* Flipdown CSS variable added to README ([#10](https://github.com/dcapslock/flipdown-timer-card/issues/10)) ([2c1236d](https://github.com/dcapslock/flipdown-timer-card/commit/2c1236d94d399cf895cd7471fb43025debda40ec)) + ## [1.1.0-dev.2](https://github.com/dcapslock/flipdown-timer-card/compare/v1.1.0-dev.1...v1.1.0-dev.2) (2025-11-07) ### Features diff --git a/package.json b/package.json index c8a1bfe..679d8be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flipdown-timer-card", - "version": "1.1.0-dev.2", + "version": "1.1.0", "description": "Flipdown timer card for lovelace", "main": "dist/flipdown-timer-card.js", "type": "module", From b79645b8b38be47a52961815b560111fc91c00b0 Mon Sep 17 00:00:00 2001 From: Darryn Capes-Davis Date: Wed, 11 Feb 2026 14:35:25 +1100 Subject: [PATCH 5/5] Update copyright information in LICENSE Updated copyright year and owner in LICENSE file. --- LICENSE | 1 + 1 file changed, 1 insertion(+) diff --git a/LICENSE b/LICENSE index ca875bd..a37514d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ MIT License Copyright (c) 2020 Custom cards for Home Assistant +Copyright (c) 2025 Darryn Capes-Davis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal