Tracks Module: Dictionary Registry + Most Methods and Properties#186
Open
PhotonicVelocity wants to merge 17 commits intoideoforms:masterfrom
Open
Tracks Module: Dictionary Registry + Most Methods and Properties#186PhotonicVelocity wants to merge 17 commits intoideoforms:masterfrom
PhotonicVelocity wants to merge 17 commits intoideoforms:masterfrom
Conversation
The Ableton API expects a Clip object, not a ClipSlot object. Changed from clip_slot to clip_slot.clip with null check. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Track Module Updates
Summary
Builds on the dictionary-based refactor from PR-182 (this PR should be reviewed/compared against PR-182 as the base). It expands the Track module surface area (track + mixer + routing + view), and updates tests for the new endpoints. This PR implements and supersedes the work previously proposed in PR-172 and PR-168.
Key Changes
track.pyto the dict-based registry (same pattern as PR-182) so method/property behavior is explicit per endpoint.mixer_device(params + props):track_activator,crossfade_assign,panning_mode,left_split_stereo,right_split_stereo(keeps existingvolume,panning,send).device_insert_modeandis_collapsed.Endpoints Added / Updated
Methods
create/audio_clip,create/midi_clip,delete/arrangement_clip,delete/clip,delete/device,duplicate/clip_to_arrangement,duplicate/clip_slot,stop/all_clips,jump_in_running_session_clipdelete_clip,delete_device,stop_all_clips,duplicate_clip_to_arrangementProperties
back_to_arranger,can_be_frozen,can_show_chains,implicit_arm,input_meter_left,input_meter_level,input_meter_right,is_frozen,is_part_of_selection,is_showing_chains,muted_via_solo,performance_impactcurrent_input_routing,current_input_sub_routing,current_output_routing,current_output_sub_routing,input_routings,input_sub_routings,output_routings,output_sub_routingsdevice_insert_mode,is_collapsedcrossfade_assign,left_split_stereo,right_split_stereo,panning_mode,track_activatorcan_be_armed,fold_state,is_foldable,is_grouped,is_visibleTests
Updated
tests/test_track.pyto cover:Notes / Known Exclusions
select_instrumentis not implemented yet.get_data/set_dataremain out of scope for now.Checklist