Skip to content

Commit

Permalink
Merge pull request #119 from Maboroshy/master
Browse files Browse the repository at this point in the history
Implemented getter for session_record_status
  • Loading branch information
ideoforms authored Sep 23, 2024
2 parents c9f0a2b + 3d02b31 commit cdf5d6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ for [Live Object Model - Song](https://docs.cycling74.com/max8/vignettes/live_ob
| /live/song/get/punch_out | | punch_out | Query punch out |
| /live/song/get/record_mode | | record_mode | Query the current record mode |
| /live/song/get/session_record | | session_record | Query whether session record is enabled |
| /live/song/get/session_record_status | | session_record_status | Query the current session record status |
| /live/song/get/signature_denominator | | denominator | Query the current time signature's denominator |
| /live/song/get/signature_numerator | | numerator | Query the current time signature's numerator |
| /live/song/get/song_length | | song_length | Query the song arrangement length, in beats |
Expand Down
3 changes: 2 additions & 1 deletion abletonosc/song.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@ def init_api(self):
]

#--------------------------------------------------------------------------------
# Callbacks for Songi: properties (read-only)
# Callbacks for Song: properties (read-only)
#--------------------------------------------------------------------------------
properties_r = [
"can_redo",
"can_undo",
"is_playing",
"song_length",
"session_record_status"
]

for prop in properties_r + properties_rw:
Expand Down

0 comments on commit cdf5d6c

Please sign in to comment.