-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from iluvcapra/pt-2024.6
PTSL 2024.6 Support
- Loading branch information
Showing
12 changed files
with
786 additions
and
383 deletions.
There are no files selected for viewing
This file contains 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 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 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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 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,77 @@ | ||
from ptsl.ops import Operation | ||
|
||
|
||
class GetMemoryLocationsManageMode(Operation): | ||
pass | ||
|
||
|
||
class SetMemoryLocationsManageMode(Operation): | ||
pass | ||
|
||
|
||
class SetMainCounterFormat(Operation): | ||
pass | ||
|
||
|
||
class SetSubCounterFormat(Operation): | ||
pass | ||
|
||
|
||
class GetMainCounterFormat(Operation): | ||
pass | ||
|
||
|
||
class GetSubCounterFormat(Operation): | ||
pass | ||
|
||
|
||
class Undo(Operation): | ||
pass | ||
|
||
|
||
class Redo(Operation): | ||
pass | ||
|
||
|
||
class UndoAll(Operation): | ||
pass | ||
|
||
|
||
class RedoAll(Operation): | ||
pass | ||
|
||
|
||
class ClearUndoQueue(Operation): | ||
pass | ||
|
||
|
||
class SetTrackDSPModeSafeState(Operation): | ||
pass | ||
|
||
|
||
class GetSessionSystemDelayInfo(Operation): | ||
pass | ||
|
||
|
||
class GroupClips(Operation): | ||
pass | ||
|
||
|
||
class UngroupClips(Operation): | ||
pass | ||
|
||
|
||
class UngroupAllClips(Operation): | ||
pass | ||
|
||
|
||
class RegroupClips(Operation): | ||
pass | ||
|
||
|
||
class RepeatSelection(Operation): | ||
pass | ||
|
||
|
||
class DuplicateSelection(Operation): | ||
pass |
This file contains 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