Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Feature request 🧭
description: Suggest an idea for this project.
labels: "feature_request"
body:
- type: markdown
attributes:
value: |
# Welcome 👋

Thanks for taking the time to fill out this feature request module.
Please fill out each section below. This info allows Stereolabs developers to correctly evaluate your request.

Useful Links:
- Documentation: https://www.stereolabs.com/docs/
- Stereolabs support: https://support.stereolabs.com/hc/en-us/
- type: checkboxes
attributes:
label: Preliminary Checks
description: Please make sure that you verify each checkbox and follow the instructions for them.
options:
- label: "This issue is not a duplicate. Before opening a new issue, please search existing issues."
required: true
- label: "This issue is not a question, bug report, or anything other than a feature request directly related to this project."
required: true
- type: textarea
attributes:
label: Proposal
description: "What would you like to have as a new feature?"
placeholder: "A clear and concise description of what you want to happen."
validations:
required: true
- type: textarea
attributes:
label: Use-Case
description: "How would this help you?"
placeholder: "Tell us more what you'd like to achieve."
validations:
required: false
- type: textarea
id: anything-else
attributes:
label: Anything else?
description: "Let us know if you have anything else to share"
87 changes: 87 additions & 0 deletions src/lib/zed-ros2-wrapper/.github/ISSUE_TEMPLATE/2_bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: Bug Report 🐛
description: Something isn't working as expected? Report your bugs here.
labels: "bug"
body:
- type: markdown
attributes:
value: |
# Welcome 👋

Thanks for taking the time to fill out this bug report.
Please fill out each section below. This info allows Stereolabs developers to diagnose (and fix!) your issue as quickly as possible. Otherwise we might need to close the issue without e.g. clear reproduction steps.

Bug reports also shoulnd't be used for generic questions, please use the [Stereolabs Community forum](https://community.stereolabs.com/) instead.

Useful Links:
- Documentation: https://www.stereolabs.com/docs/
- Stereolabs support: https://support.stereolabs.com/hc/en-us/
- type: checkboxes
attributes:
label: Preliminary Checks
description: Please make sure that you verify each checkbox and follow the instructions for them.
options:
- label: "This issue is not a duplicate. Before opening a new issue, please search existing issues."
required: true
- label: "This issue is not a question, feature request, or anything other than a bug report directly related to this project."
required: true
- type: textarea
attributes:
label: Description
description: Describe the issue that you're seeing.
placeholder: Be as precise as you can. Feel free to share screenshots, videos, or data. The more information you provide the easier will be to provide you with a fast solution.
validations:
required: true
- type: textarea
attributes:
label: Steps to Reproduce
description: Clear steps describing how to reproduce the issue.
value: |
1.
2.
3.
...
validations:
required: true
- type: textarea
attributes:
label: Expected Result
description: Describe what you expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Actual Result
description: Describe what actually happened.
validations:
required: true
- type: dropdown
attributes:
label: ZED Camera model
description: What model of ZED camera are you using?
options:
- "ZED"
- "ZED Mini"
- "ZED2"
- "ZED2i"
validations:
required: true
- type: textarea
attributes:
label: Environment
render: shell
description: Useful information about your system.
placeholder: |
OS: Operating System
CPU: e.g. ARM
GPU: Nvidia Jetson Xavier NX
ZED SDK version: e.g. v3.5.3
Other info: e.g. ROS Melodic
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: Please add any other information or comment that you think may be useful for solving the problem
placeholder:
validations:
required: false
12 changes: 12 additions & 0 deletions src/lib/zed-ros2-wrapper/.github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
blank_issues_enabled: false
contact_links:
- name: Online Documentation
url: https://www.stereolabs.com/docs/
about: Check out the Stereolabs documentation for answers to common questions.
- name: Stereolabs Community
url: https://community.stereolabs.com/
about: Ask questions, request features & discuss with other users and developers.
- name: Stereolabs Twitter
url: https://twitter.com/Stereolabs3D
about: The official Stereolabs Twitter account to ask questions, comment our products and share your projects with the ZED community.

23 changes: 23 additions & 0 deletions src/lib/zed-ros2-wrapper/.github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Stale issue handler'
on:
workflow_dispatch:
schedule:
- cron: '00 00 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@main
id: stale
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise it will be automatically closed in 5 days'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise it will be automatically closed in 5 days'
days-before-stale: 30
days-before-close: 5
operations-per-run: 1500
exempt-issue-labels: 'feature_request'
exempt-pr-labels: 'feature_request'
enable-statistics: 'true'
close-issue-label: 'closed_for_stale'
close-pr-label: 'closed_for_stale'
98 changes: 98 additions & 0 deletions src/lib/zed-ros2-wrapper/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
devel/
logs/
build/
log/
install/
bin/
lib/
msg_gen/
srv_gen/
msg/*Action.msg
msg/*ActionFeedback.msg
msg/*ActionGoal.msg
msg/*ActionResult.msg
msg/*Feedback.msg
msg/*Goal.msg
msg/*Result.msg
msg/_*.py
build_isolated/
devel_isolated/

# Generated by dynamic reconfigure
*.cfgc
/cfg/cpp/
/cfg/*.py

# Ignore generated docs
*.dox
*.wikidoc

# eclipse stuff
.project
.cproject

# qcreator stuff
CMakeLists.txt.user

srv/_*.py
*.pcd
*.pyc
qtcreator-*
*.user

/planning/cfg
/planning/docs
/planning/src

*~

# Emacs
.#*

# Catkin custom files
CATKIN_IGNORE

# C++ objects and libs

*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib

# Qt-es

/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
Makefile*
*build-*

# QtCreator

*.autosave

# QtCtreator Qml
*.qmlproject.user
*.qmlproject.user.*

# QtCtreator CMake
CMakeLists.txt.user*

# VSCode
.vscode

# TMP folders
docker/tmp_sources
12 changes: 12 additions & 0 deletions src/lib/zed-ros2-wrapper/.gitrepo
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/ingydotnet/git-subrepo#readme
;
[subrepo]
remote = git@github.com:stereolabs/zed-ros2-wrapper.git
branch = master
commit = b47c72779add6d58a4dba9c888b9ea529f6ae448
parent = b16d3e70bda13036769caabb9e53982d75a89785
method = merge
cmdver = 0.4.9
Loading
Loading