Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Merged
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
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug-report.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/epic-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,6 @@ body:
validations:
required: true

- type: textarea
id: related_epics
attributes:
label: Related Epics
description: List any related epics if applicable. Add each related epic as a link or reference number on a new line.
placeholder: |
- [ ] #
validations:
required: false

- type: markdown
attributes:
value: |
Expand Down
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/external-contribution-bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: "Bug report \U0001F41E"
about: Create a bug report
labels: bug

---

## Describe the bug
A clear and concise description of what the bug is.

### Steps to reproduce
Steps to reproduce the behavior.

### Expected behavior
A clear and concise description of what you expected to happen.

### Environment
- OS: [e.g. Arch Linux]
- Other details that you think may affect.

### Additional context
Add any other context about the problem here.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/external-contribution-feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: "Feature request \U0001F680"
about: Suggest an idea
labels: enhancement

---

## Summary
Brief explanation of the feature.

### Basic example
Include a basic example or links here.

### Motivation
Why are we doing this? What use cases does it support? What is the expected outcome?
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/feature-request.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/story-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@ body:
validations:
required: true

- type: textarea
id: epic_reference
attributes:
label: Epic Reference
description: Link to the associated Epic that this story belongs to.
placeholder: |
#
validations:
required: false

- type: dropdown
id: priority
attributes:
Expand Down
11 changes: 0 additions & 11 deletions .github/ISSUE_TEMPLATE/task-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,6 @@ body:
validations:
required: true


- type: textarea
id: story_reference
attributes:
label: Story Reference
description: Link to the associated Story.
placeholder: |
#
validations:
required: false

- type: markdown
attributes:
value: |
Expand Down
33 changes: 4 additions & 29 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,5 @@
# Pull Request Overview
<!--
Please refer to the Copilot PR overview. Create this PR using the Copilot function.
Provide any additional field related to the pull request that you might find useful to describe :)
-->

## Description
<!-- Provide a concise summary of the changes introduced in this PR, focusing on the purpose and outcomes. -->

## Type of Change
- [ ] 🐞 Bugfix (fixes an issue)
- [ ] ✨ New Feature (introduces new functionality)
- [ ] 📄 Documentation (adds or updates documentation)
- [ ] 🔧 Configuration (adjusts project configuration or tooling)

## Checklist
- [ ] Code is thoroughly tested and operates as expected
- [ ] Documentation has been updated to reflect these changes (if applicable)
- [ ] No breaking changes introduced

## Related Issues
<!-- Link any relevant issues or tickets here, e.g., "Closes #123" or "Related to #456". -->

## Additional Context
<!-- Provide any additional context, screenshots, or details that reviewers may find helpful. -->

---

### Reviewer Checklist
- [ ] Code follows project style and naming conventions.
- [ ] No functionality is broken; code is well-tested.
- [ ] Documentation and comments are clear.
- [ ] No security vulnerabilities or performance issues are introduced.
<!-- Provide any additional field related to the pull request that you might find useful to describe. -->
34 changes: 25 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,33 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)

include_directories(include)

# include_directories(Clusters/include)
include_directories(Clusters/HandCluster/include)
# Add Resource File (QML and Other Resources)
qt_add_resources(QT_RESOURCES ./ui/resources.qrc)
# qt_add_resources(QT_RESOURCES_ICA ./Clusters/InstrumentCluster/ui/resources.qrc)
qt_add_resources(QT_RESOURCES_HCA ./Clusters/HandCluster/ui/resources.qrc)

# Define Executable Target
add_executable(InstrumentClusterApp
${QT_RESOURCES}
./src/main.cpp
./src/InstrumentCluster.cpp
./include/InstrumentCluster.hpp
# add_executable(InstrumentClusterApp
# ${QT_RESOURCES_ICA}
# ./Clusters/InstrumentCluster/src/main.cpp
# ./Clusters/InstrumentCluster/src/InstrumentCluster.cpp
# ./Clusters/InstrumentCluster/include/InstrumentCluster.hpp
# )

add_executable(HandClusterB
${QT_RESOURCES_HCA}
./Clusters/HandCluster/src/main.cpp
./Clusters/HandCluster/src/InstrumentCluster.cpp
./Clusters/HandCluster/include/InstrumentCluster.hpp
)

add_executable(MiddleWareApp
./MiddleWare/src/main.cpp
)

target_link_libraries(InstrumentClusterApp zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)
# target_link_libraries(InstrumentClusterApp zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)

target_link_libraries(HandClusterB zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)
target_link_libraries(MiddleWareApp PRIVATE zenohcxx::zenohc)
target_compile_definitions(HandClusterTests PRIVATE UNIT_TEST)
Binary file added Clusters/HandCluster/assets/fonts/electrolize.ttf
Binary file not shown.
Binary file added Clusters/HandCluster/assets/fonts/orbitron.ttf
Binary file not shown.
Binary file added Clusters/HandCluster/assets/fonts/tektur.ttf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Clusters/HandCluster/assets/icons/raio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Clusters/HandCluster/assets/icons/warning.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Clusters/HandCluster/assets/images/car.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading