Merge branch 'feature_list_actions' into feature_shader_midi

This commit is contained in:
Tristan Rowley
2019-12-24 14:10:36 +00:00
2 changed files with 159 additions and 171 deletions

View File

@@ -7,11 +7,15 @@ echo
echo
echo "===== Methods ====="
grep " def " actions.py | grep -v "^#" | sed -e 's/ def //' | sed -e 's/self//' | sed -e 's/(, /(/' | sed -e 's/()//' | sed -e 's/\(.*\)/ *\1/' | sort -n
grep " def " actions.py | grep -v "^#" | sed -e 's/ def //' | sed -e 's/self//' | sed -e 's/(, /(/' | sed -e 's/()//' | sed -e 's/\(.*\)/ *\1/' | sed -e 's/://' | sort -n \
| grep -v "check_if_should_start_openframeworks\|create_serial_port_process\|__init__\|persist_composite_setting\|receive_detour_info\|_refresh_frame_buffer\|refresh_frame_buffer_and_restart_openframeworks\|run_script\|setup_osc_server\|start_confirm_action\|stop_serial_port_process\|stop_openframeworks_process\|update_capture_settings\|update_config_settings\|update_video_settings"
echo
echo -e "\n\n===== Dynamic routes ====="
echo "===== Dynamic routes ====="
grep '( r"' actions.py | sed -e 's/\(.*\)"\(.*\)"\(.*\)/ * \2/p'
echo
echo -e "\n----\n"
echo "----"
echo
echo "Autogenerated by dotfiles/generate-list-actions.sh"