Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Composition GUIs, Type Hints and Intersphinx Updates #43

Merged
merged 48 commits into from
Feb 15, 2025

Conversation

chrizzFTD
Copy link
Collaborator

@chrizzFTD chrizzFTD commented Dec 15, 2024

  • For PrimComposition:
    • Add "Expanded Prim Index" and "Inert Nodes" options
    • Colorized and add search capability to the Nodes Text Browser
    • Add stats summary to the upper right corner of the widget
    • Fix Tree widget to have rows added to their correct parents
  • Add relocates color to Layer Contents Browser
  • Theme updates for:
    • No right bar navigation
    • Reduced multiline-signature spacing
  • Intersphinx updates for OpenUSD and Networkx
  • Updated images for prim and layerstack composition views
  • Added sphinx glossary
  • Fail spawn_many with a clear message when the current edit target can not find a spec on a parent path to set model kind

Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
@chrizzFTD chrizzFTD changed the base branch from main to develop December 15, 2024 11:28
Copy link

codecov bot commented Dec 15, 2024

Codecov Report

Attention: Patch coverage is 97.69231% with 3 lines in your changes missing coverage. Please review.

Project coverage is 92.86%. Comparing base (3e519a5) to head (2ea14ca).
Report is 1 commits behind head on develop.

Files with missing lines Patch % Lines
grill/views/description.py 96.42% 3 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff             @@
##           develop      #43      +/-   ##
===========================================
+ Coverage    92.73%   92.86%   +0.12%     
===========================================
  Files           17       17              
  Lines         3717     3796      +79     
===========================================
+ Hits          3447     3525      +78     
- Misses         270      271       +1     
Files with missing lines Coverage Δ
grill/cook/__init__.py 100.00% <100.00%> (ø)
grill/usd/__init__.py 100.00% <100.00%> (ø)
tests/test_cook.py 100.00% <100.00%> (ø)
tests/test_views.py 100.00% <100.00%> (ø)
grill/views/description.py 92.84% <96.42%> (+0.29%) ⬆️

... and 1 file with indirect coverage changes

Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
use abc
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
… relocates is not provided by the query api. limited since get source layer is not available through pcp

Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
This reverts commit 59e2f73.
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
@chrizzFTD chrizzFTD marked this pull request as ready for review January 18, 2025 08:39
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
Signed-off-by: Christian López Barrón <chris.gfz@gmail.com>
@chrizzFTD chrizzFTD changed the title Type Hints and Intersphinx Updates Composition GUIs, Type Hints and Intersphinx Updates Feb 15, 2025
@chrizzFTD chrizzFTD merged commit c9f598b into develop Feb 15, 2025
6 checks passed
@chrizzFTD chrizzFTD deleted the feature/doc_updates branch February 15, 2025 00:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant