snapshot
This commit is contained in:
14
libraries/audio-tools/.github/FUNDING.yml
vendored
Normal file
14
libraries/audio-tools/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||
polar: # Replace with a single Polar username
|
||||
buy_me_a_coffee: philschatzh
|
||||
custom: ['https://www.paypal.com/paypalme/pschatzmann?country.x=CH&locale.x=en_US']
|
||||
58
libraries/audio-tools/.github/ISSUE_TEMPLATE/Issue-report.yml
vendored
Normal file
58
libraries/audio-tools/.github/ISSUE_TEMPLATE/Issue-report.yml
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
name: Bug report
|
||||
description: Report only a bugs here!
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
* Before reporting a new bug please check and search the [list of existing issues](https://github.com/pschatzmann/arduino-audio-tools/issues?q=)
|
||||
* Please check [the Readme](https://github.com/pschatzmann/arduino-audio-tools) and [Wiki](https://github.com/pschatzmann/arduino-audio-tools/wiki)
|
||||
* Don't forget to check [the discusions](https://github.com/pschatzmann/arduino-audio-tools/discussions)
|
||||
* If still experiencing the issue, please provide as many details as possible below about your hardware, computer setup and code.
|
||||
- type: textarea
|
||||
id: Description
|
||||
attributes:
|
||||
label: Problem Description
|
||||
description: Please describe your problem here and expected behaviour
|
||||
placeholder: ex. Can't connect/weird behaviour/wrong function/missing parameter..
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: Board
|
||||
attributes:
|
||||
label: Device Description
|
||||
description: What development board are you using
|
||||
placeholder: e.g. ESP32 Wroom, Desktop Build, RP2040
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: sketch
|
||||
attributes:
|
||||
label: Sketch
|
||||
description: Please provide full minimal sketch/code which can be run to reproduce your issue
|
||||
placeholder: ex. Related part of the code to replicate the issue
|
||||
render: cpp
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: other-remarks
|
||||
attributes:
|
||||
label: Other Steps to Reproduce
|
||||
description: Is there any other information you can think of which will help us reproduce this problem? Any additional info can be added as well.
|
||||
placeholder: ex. I also tried on other OS, HW...it works correctly on that setup.
|
||||
|
||||
- type: textarea
|
||||
id: sceanario
|
||||
attributes:
|
||||
label: What is your development environment (incl. core version info)
|
||||
description: Please provide the information about your development/runtime environment
|
||||
placeholder: Arduino ESP 2.0.14, IDF 5.3.2, STM32-Cube MX, PlatformIO ESP32 6.10.0, JupyterLab, Desktop Build
|
||||
|
||||
- type: checkboxes
|
||||
id: confirmation
|
||||
attributes:
|
||||
label: I have checked existing issues, discussions and online documentation (incl. the Wiki)
|
||||
description: You agree to check all the resources above before opening a new issue.
|
||||
options:
|
||||
- label: I confirm I have checked existing issues, discussions and online documentation
|
||||
required: true
|
||||
1
libraries/audio-tools/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
1
libraries/audio-tools/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
blank_issues_enabled: false
|
||||
17
libraries/audio-tools/.github/workflows/doxygen-gh-pages.yml
vendored
Normal file
17
libraries/audio-tools/.github/workflows/doxygen-gh-pages.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Doxygen GitHub Pages Deploy Action
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: DenverCoder1/doxygen-github-pages-action@v1.2.0
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
folder: docs/html
|
||||
branch: doxygen
|
||||
|
||||
Reference in New Issue
Block a user