-
Notifications
You must be signed in to change notification settings - Fork 163
REFACTOR: Extension manager compatible with toolkits #6115
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
ecba9cd
Delete pip option
Samuelopez-ansys a0802d5
New extension manager
Samuelopez-ansys 55590ea
Documentation update
Samuelopez-ansys 53e0028
Add Troubleshooting.rst
Samuelopez-ansys 03daa73
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys 332b1c3
Fix Doc
Samuelopez-ansys d3017f6
chore: adding changelog file 6115.miscellaneous.md [dependabot-skip]
pyansys-ci-bot dce4486
Fix vale
Samuelopez-ansys 3586f18
Merge remote-tracking branch 'origin/refactor/installer_toolkits' int…
Samuelopez-ansys a5bca6b
Fix vale
Samuelopez-ansys 85afcb8
Remove icon
Samuelopez-ansys 814e8d4
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys ede547a
Add suggestions
Samuelopez-ansys a822d00
Apply suggestions from code review
Samuelopez-ansys 30784a5
Merge remote-tracking branch 'origin/refactor/installer_toolkits' int…
Samuelopez-ansys fc70ad8
Fix codacy
Samuelopez-ansys c724df2
Fix issue with Farfield Exporter when dependent variables are defined
Samuelopez-ansys 9f12ca6
Add test
Samuelopez-ansys bc2e019
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys 5fbe5b1
Update magnet toolkit
Samuelopez-ansys 14730ff
Fix export far field with variations
Samuelopez-ansys 113ab78
Fix contour far field plot
Samuelopez-ansys a2aef32
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys e70c97b
Fix doc
Samuelopez-ansys 86dce04
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys 988586a
Merge branch 'main' into refactor/installer_toolkits
Samuelopez-ansys 28b9ce4
Update link
Samuelopez-ansys 6a53366
Fix cloud extension
Samuelopez-ansys 443b42e
Merge branch 'refs/heads/main' into refactor/installer_toolkits
gmalinve ed1fd69
fix extension manager
gmalinve 4a00b74
Merge remote-tracking branch 'origin/main' into refactor/installer_to…
Samuelopez-ansys 69e08db
Merge remote-tracking branch 'origin/refactor/installer_toolkits' int…
Samuelopez-ansys File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Extension manager compatible with toolkits |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,27 @@ | ||
[AntennaWizard] | ||
name = "Antenna Wizard" | ||
script = "ansys/aedt/toolkits/antenna/run_toolkit.py" | ||
icon = "images/large/antenna.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "ansys-aedt-toolkits-antenna" | ||
package = "ansys.aedt.toolkits.antenna" | ||
name = "Antenna Toolkit" | ||
url = "https://aedt.antenna.toolkit.docs.pyansys.com/version/stable/getting_started/installation.html" | ||
|
||
[PushfromTransient] | ||
name = "Push Excitation from transient data" | ||
script = "push_excitation_from_file.py" | ||
icon = "images/large/push.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "" | ||
|
||
[PointCloudGenerator] | ||
name = "Point Cloud Generator" | ||
script = "points_cloud.py" | ||
icon = "images/large/cloud.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "" | ||
|
||
[ChokeDesigner] | ||
name = "Choke Designer" | ||
script = "choke_designer.py" | ||
icon = "images/large/choke.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "" | ||
|
||
[ShieldingEffectiveness] | ||
name = "Shielding Effectiveness" | ||
script = "shielding_effectiveness.py" | ||
icon = "images/large/shielding.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "" | ||
|
||
[MoveIt] | ||
name = "Move It" | ||
script = "move_it.py" | ||
icon = "images/large/move_it.png" | ||
template = "run_pyaedt_toolkit_script" | ||
pip = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.