Skip to content

Commit

Permalink
Merge branch 'master' into improvements21
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandotonon authored Jun 4, 2024
2 parents 78314ea + ef15a99 commit b147d11
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,20 @@ plugins:
standard: "cpp17"
library: googletest
exclude_patterns:
- "src/OgreXML/"
- "src/OgreXML/*.*"
- "src/dependencies/ogre-procedural/library/src/*.*"
- "src/UnitTests_autogen/**/*.cpp"
- "*_autogen*"
- "src/dependencies/"
- "src/dependencies/**/*.*"
- "**/CMakeFiles/*"
- "_deps/"
- "_deps/**/*.*"
- "ui_files/"
- "moc_*"
- "media/"
- "lib/"
- "bin/"
- "cfg/"
- "*.cc"
- "*.md"
- "*.in"
- "*.yml"
Expand Down
19 changes: 18 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,24 @@ jobs:
run: |
sudo apt install lcov
lcov --capture --directory . --output-file coverage.info
lcov --remove coverage.info '/usr/*' '/home/runner/work/QtMeshEditor/Qt/*' -o filtered_coverage.info
lcov --remove coverage.info '/usr/*' \
'/home/runner/work/QtMeshEditor/Qt/*' \
'/home/runner/work/QtMeshEditor/QtMeshEditor/src/OgreXML/*' \
'/home/runner/work/QtMeshEditor/QtMeshEditor/src/dependencies/*' \
'src/OgreXML/*.*' \
'src/dependencies/ogre-procedural/library/src/*.*' \
'src/UnitTests_autogen/**/*.cpp' \
'*_autogen*' \
'src/dependencies/*' \
'**/CMakeFiles/*' \
'_deps/**/*.h' \
'_deps/**/*.cpp' \
'_deps/**/*.cc' \
'/home/runner/work/QtMeshEditor/QtMeshEditor/_deps/*' \
'ui_files/*' \
'moc_*' \
'*_test.cpp' \
-o filtered_coverage.info
- run: |
cd ${{github.workspace}}
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A graphical editor for Ogre3D mesh and material made with Qt Framework

[![Github All Releases](https://img.shields.io/github/downloads/fernandotonon/QtMeshEditor/total.svg)]()
[![Deploy](https://github.com/fernandotonon/QtMeshEditor/actions/workflows/deploy.yml/badge.svg)](https://github.com/fernandotonon/QtMeshEditor/actions/workflows/deploy.yml)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=fernandotonon_QtMeshEditor&metric=coverage)](https://sonarcloud.io/summary/new_code?id=fernandotonon_QtMeshEditor)
[![Coverage](https://api.codeclimate.com/v1/badges/946bc0c606302904a589/test_coverage)](https://codeclimate.com/github/fernandotonon/QtMeshEditor/test_coverage)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=fernandotonon_QtMeshEditor&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=fernandotonon_QtMeshEditor)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=fernandotonon_QtMeshEditor&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=fernandotonon_QtMeshEditor)
[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=fernandotonon_QtMeshEditor&metric=sqale_index)](https://sonarcloud.io/summary/new_code?id=fernandotonon_QtMeshEditor)
Expand All @@ -32,10 +32,11 @@ A graphical editor for Ogre3D mesh and material made with Qt Framework
- View the bones
- Animation Preview - Shows a list of animations and allows the animation preview.
- Renaming Animation
- View keyframes positions and values
- View keyframe positions and values
* Import/Export
- Export mesh in older versions
- Other 3D Format Importer - Can convert any 3D format provided by ASSIMP to Ogre Mesh, Material and Skeleton
- Other 3D Format Importer - Can convert any 3D format provided by ASSIMP to Ogre Mesh, Material, and Skeleton
- Other 3D Format Exporter - Can export the mesh to any other format supported by ASSIMP.

### :computer: Install from release binaries
#### :apple: macOS
Expand Down

0 comments on commit b147d11

Please sign in to comment.