Skip to content

Commit

Permalink
Merge branch 'master' into logOptimiz
Browse files Browse the repository at this point in the history
  • Loading branch information
agav99 committed Jan 3, 2025
2 parents b5cb521 + e000b42 commit 9a713c6
Show file tree
Hide file tree
Showing 14 changed files with 348 additions and 613 deletions.
67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/Device_support_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Device Support request
description: Create a issue to support a device which is not currently supported in the zigbee adapter. Unsupported devices are reported as `supported:false` during pairing.
labels: [devicesupport]
body:
- type: markdown
attributes:
value: |
**IMPORTANT:**
- check whether your [device](https://www.zigbee2mqtt.io/supported-devices/) is listed as supported at zigbee2mqtt.io. Any device without a link to zigbee2mqtt.io will be assumed not supported - integration of these devices requires physical access to the device, so it is unlikely that any work will be done on it in this project.
- ensure that both the manufacturer and the model match between your device and the listed device.
- lack of testing with the current github version will result in no action taken. Please ensure to test if a device works in the current github version before submitting a report.
- type: input
id: zigbee_version
attributes:
label: Tested with adapter version
placeholder: '1.10.13'
validations:
required: true
- type: input
id: model_zigbee
attributes:
label: modelZigbee
description: Can be found on the info-panel accessible from the backside of the device tile in the Admin GUI / Zigbee Tab
placeholder: 'TS0601'
validations:
required: true
- type: input
id: manufacturer
attributes:
label: manufacturer
description: Can be found on the info-panel accessible from the backside of the device tile in the Admin GUI / Zigbee Tab
placeholder: '_TZ3000_upgcbody'
validations:
required: true
- type: input
id: Link_to_device
attributes:
label: Link to device
description: Post the link of the device listing on zigbee2mqtt.io
placeholder: 'https://www.zigbee2mqtt.io/supported-devices/'
validations:
required: false
- type: input
id: coordinator_type_a
attributes:
label: Coordinator type selected in adapter setting
description: The selection made for the coordinator-type in the adapters settings.
placeholder: 'TI Z-Stack/CCxxxx'
validations:
required: false
- type: input
id: coordinator_type
attributes:
label: Coordinator
description: Hardware Coordinator
placeholder: Electrolama zig-a-zig-ah! (zzh!), Slaeshs CC2652RB stick, SONOFF Zigbee 3.0 USB Dongle Plus ...
validations:
required: false
- type: input
id: coordinator_fwversion
attributes:
label: Coordinator firmware version and revision
description: Both firmware version and revision are shown on the Device tile for the coordinator in the Admin GUI / Zigbee Tab
placeholder: 'version 2-1.2.7.1., revision 20191106'
validations:
required: false

58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/problem.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Problem
description: Create a generic issue
labels: [problem]
body:
- type: markdown
attributes:
value: |
**IMPORTANT:** Before submitting:
- check whether the issue is linked to a single device or a group of devices
- verify that you can recreate the issue by executing a limited number of steps
- do **not** use this issue template to request support for new devices.
- type: textarea
id: what_problem
attributes:
label: describe the problem in Detail. What do you expect to happen ? What does happen ?
validations:
required: true
- type: input
id: adapter_version
attributes:
label: Adapter version
description: Can be found in the Admin GUI
placeholder: '1.10.3'
validations:
required: true
- type: input
id: coordinator_fwversion
attributes:
label: Coordinator firmware version
description: Can be found in the Adapter settings
placeholder: '20230921'
validations:
required: true
- type: input
id: coordinator_type
attributes:
label: Coordinator
description: Hardware Coordinator
placeholder: Electrolama zig-a-zig-ah! (zzh!), Slaeshs CC2652RB stick, SONOFF Zigbee 3.0 USB Dongle Plus ...
validations:
required: true
- type: input
id: setup
attributes:
label: Setup
description: How do you run the adapter
placeholder: Add-on on Intel NUC, Docker container, RaspberryPi...
validations:
required: true
- type: textarea
id: log
attributes:
label: Protocol of the error (as text, encapsulated in multiline code tags <>). Separate different occurrances into clearly split log sections
description: At least 50 lines from the iobroker protocol, run in INFO mode. Ensure to include a number of lines before and after the actual error message
placeholder: Click here and drag the file into it or click on "Attach files by.." below
validations:
required: false

8 changes: 4 additions & 4 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ jobs:
# The body may be multiline, therefore newlines and % need to be escaped
run: |
VERSION="${{ github.ref }}"
VERSION=${VERSION##*/v}
echo "::set-output name=VERSION::$VERSION"
VERSION=${VERSION##*/v}
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
BODY=$(git show -s --format=%b)
BODY="${BODY//'%'/'%25'}"
BODY="${BODY//$'\n'/'%0A'}"
BODY="${BODY//$'\r'/'%0D'}"
echo "::set-output name=BODY::$BODY"
echo "BODY=$BODY" >> $GITHUB_OUTPUT
# If you like, activate automated version publish to NPM
# Only if commit contains a version, see : https://github.com/AlCalzone/release-script

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018-2024 Kirov Ilya <[email protected]>
Copyright (c) 2018-2025 Kirov Ilya <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 9a713c6

Please sign in to comment.