Skip to content

Commit

Permalink
refactor: user vars parsing and substitution
Browse files Browse the repository at this point in the history
feat: make midi args case-insensitive
refactor: more decoupling between adapters
refactor: map clip note actions with mixin methods
  • Loading branch information
nuno-andre committed Feb 24, 2021
1 parent 81bbcf1 commit 182e562
Show file tree
Hide file tree
Showing 47 changed files with 1,880 additions and 1,618 deletions.
10 changes: 3 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
* text=auto eol=lf

# Git
.gitattributes text
.gitignore text

# Code
*.py text diff=python
*.txt text
*.pyc binary
*.ps1 text encoding=utf-16le eol=crlf
*.json text
*.sh text diff=bash

# Docs
*.html text diff=html
*.md text diff=markdown
*.pdf binary

# Samples
Expand All @@ -24,5 +20,5 @@ docs export-ignore
tools export-ignore
.gitattributes export-ignore
.gitignore export-ignore
README.md export-ignore
*.md export-ignore
setup.* export-ignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ __pycache__/
.bin/
.env
.vscode/settings.json
tests/fixtures/testproj/
File renamed without changes.
15 changes: 13 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Contributing to ClyphX

## Vendorized packages
## Gotchas
- Live API objects must not be checked using `is None` since this would treat
lost weakrefs as valid.
```
# True both if obj represents a lost weakref or is None
obj == None
```
- Lists and dicts should be created with `list()` and `dict()`, as oppossed to
`[]` and `{}`, to make use of the `future` lib optimizations.


## Vendored packages

| package | version | description |
| ----------------- | ------- | ----------- |
Expand All @@ -14,7 +25,7 @@

## VSCode

Rename `.vscode/.settings.json` to `.vscode/settings.json`.
Rename `.vscode/.settings.jsonc` to `.vscode/settings.json`.

### VSCode Tasks

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OVER
A more complex _Action List_ might mute Tracks 1-2, unmute and arm Track 4, turn
the 2nd Device on Track 4 on, and launch the selected Clip on track 4:
```
1/MUTE ON; 2/MUTE ON; 4/MUTE OFF; 4/ARM ON; 4/DEV2 ON; 4/PLAY
1-2/MUTE ON; 4/MUTE OFF; 4/ARM ON; 4/DEV2 ON; 4/PLAY
```

**ClyphX** also includes:
Expand Down
Loading

0 comments on commit 182e562

Please sign in to comment.