-
Notifications
You must be signed in to change notification settings - Fork 6
Add new store icon for aurora #550
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
Open
BenStarmerSmith
wants to merge
3
commits into
master
Choose a base branch
from
F#_SP-920_add_new_pack_position
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+111
−18
Open
Changes from all commits
Commits
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 |
|---|---|---|
|
|
@@ -72,8 +72,6 @@ | |
| - name: Make Close Right Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Close Right Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="right" | ||
|
|
@@ -111,8 +109,6 @@ | |
| - name: Make Close Left Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Close Left Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="left" | ||
|
|
@@ -150,8 +146,117 @@ | |
| - name: Make Close bimanual Hands desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Close Bimanual Hands.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool | ||
|
|
||
| - name: Install right hand store hand icon if bimanual is true or if hand_side="right" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have you updated the tests to test this icon creation (and the script) |
||
| block: | ||
| - name: Copy Store Right Hand desktop icon | ||
| copy: | ||
| src: ../../../common/resources/files/close-hand-icon-right.png | ||
| dest: "{{ shadow_hand_launcher_folder }}/close-hand-icon-right.png" | ||
| mode: '664' | ||
|
|
||
| - name: Create Store Right Hand executable launch script | ||
| template: | ||
| src: ../resources/templates/scripts/rosrun-script.j2 | ||
| dest: "{{ shadow_hand_launcher_folder }}/store_right_hand.sh" | ||
| mode: '755' | ||
| vars: | ||
| project_name: sr_demos | ||
| script_name: store.py --side right | ||
|
|
||
| - name: Create Store Right Hand desktop icon | ||
| template: | ||
| src: ../resources/templates/desktop-icons/standard-icon.j2 | ||
| dest: "{{ demo_icon_folder }}/Store Right Hand.desktop" | ||
| mode: '755' | ||
| vars: | ||
| desktop_shortcut_name: Store Right Hand | ||
| comment: "This icon runs a script to put the Hand into a position where it can be stored for transportation. Hand needs to be running." | ||
| folder: "{{ shadow_hand_launcher_folder }}" | ||
| shell_script_file_name: store_right_hand.sh | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the this file |
||
| icon_file_name: close-hand-icon-right.png | ||
| start_terminal: "false" | ||
|
|
||
| - name: Make Store Right Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Store Right Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="right" | ||
|
|
||
| - name: Install left hand store hand icon if bimanual is true or if hand_side="left" | ||
| block: | ||
| - name: Copy Store Left Hand desktop icon | ||
| copy: | ||
| src: ../../../common/resources/files/close-hand-icon-left.png | ||
| dest: "{{ shadow_hand_launcher_folder }}/close-hand-icon-left.png" | ||
| mode: '664' | ||
|
|
||
| - name: Create Store Left Hand executable launch script | ||
| template: | ||
| src: ../resources/templates/scripts/rosrun-script.j2 | ||
| dest: "{{ shadow_hand_launcher_folder }}/store_left_hand.sh" | ||
| mode: '755' | ||
| vars: | ||
| project_name: sr_demos | ||
| script_name: store.py --side left | ||
|
|
||
| - name: Create Store Left Hand desktop icon | ||
| template: | ||
| src: ../resources/templates/desktop-icons/standard-icon.j2 | ||
| dest: "{{ demo_icon_folder }}/Store Left Hand.desktop" | ||
| mode: '755' | ||
| vars: | ||
| desktop_shortcut_name: Store Left Hand | ||
| comment: "This icon runs a script to put the Hand into a position where it can be stored for transportation. Hand needs to be running." | ||
| folder: "{{ shadow_hand_launcher_folder }}" | ||
| shell_script_file_name: store_left_hand.sh | ||
| icon_file_name: close-hand-icon-left.png | ||
| start_terminal: "false" | ||
|
|
||
| - name: Make Store Left Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Store Left Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="left" | ||
|
|
||
| - name: Install bimanual hands store hand icon if bimanual is true | ||
| block: | ||
| - name: Copy Store Bimanual Hands desktop icon | ||
| copy: | ||
| src: ../../../common/resources/files/close-hand-icon-bimanual.png | ||
| dest: "{{ shadow_hand_launcher_folder }}/close-hand-icon-bimanual.png" | ||
| mode: '664' | ||
|
|
||
| - name: Create store bimanual Hands executable launch script | ||
| template: | ||
| src: ../resources/templates/scripts/rosrun-script.j2 | ||
| dest: "{{ shadow_hand_launcher_folder }}/store_bimanual_hands.sh" | ||
| mode: '755' | ||
| vars: | ||
| project_name: sr_demos | ||
| script_name: store.py --side both | ||
|
|
||
| - name: Create Store Bimanual Hands desktop icon | ||
| template: | ||
| src: ../resources/templates/desktop-icons/standard-icon.j2 | ||
| dest: "{{ demo_icon_folder }}/Store Bimanual Hands.desktop" | ||
| mode: '755' | ||
| vars: | ||
| desktop_shortcut_name: Store Bimanual Hands | ||
| comment: "This icon runs a script to put the Hand into a position where it can be stored for transportation. Hand needs to be running." | ||
| folder: "{{ shadow_hand_launcher_folder }}" | ||
| shell_script_file_name: store_bimanual_hands.sh | ||
| icon_file_name: close-hand-icon-bimanual.png | ||
| start_terminal: "false" | ||
|
|
||
| - name: Make Store bimanual Hands desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Store Bimanual Hands.desktop" "metadata::trusted" yes | ||
| when: | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool | ||
|
|
@@ -189,8 +294,6 @@ | |
| - name: Make Open Right Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}/Open Right Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="right" | ||
|
|
@@ -228,8 +331,6 @@ | |
| - name: Make Open Left Hand desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}//Open Left Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool or hand_side=="left" | ||
|
|
@@ -267,8 +368,6 @@ | |
| - name: Make Open Bimanual Hands desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}//Open Bimanual Hands.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: bimanual|bool == true | ||
|
|
@@ -307,8 +406,6 @@ | |
| - name: Make Standard Right Demo desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}//Demo Right Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: | ||
|
|
@@ -348,8 +445,6 @@ | |
| - name: Make Standard Left Demo desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}//Demo Left Hand.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: | ||
|
|
@@ -389,8 +484,6 @@ | |
| - name: Make Standard Bimanual Demo desktop icon Trusted | ||
| shell: gio set "{{ demo_icon_folder }}//Demo Bimanual Hands.desktop" "metadata::trusted" yes | ||
| when: | ||
| - ansible_distribution|string == 'Ubuntu' | ||
| - ansible_distribution_release|string == 'bionic' | ||
| - not skip_molecule_task|bool | ||
|
|
||
| when: | ||
|
|
||
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.