Skip to content

Commit

Permalink
Tidy up and remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Apr 8, 2024
1 parent 5f2f6d7 commit 4804583
Show file tree
Hide file tree
Showing 93 changed files with 259 additions and 4,253 deletions.
12 changes: 0 additions & 12 deletions .vscode/launch.json

This file was deleted.

14 changes: 0 additions & 14 deletions Release Checklist.md

This file was deleted.

12 changes: 7 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
site_name: FL Studio API Documentation
site_description: Documentation for the FL Studio API
repo_name: FL-Studio-API-Stubs
repo_url: https://github.com/MiguelGuthridge/FL-Studio-API-Stubs
copyright: API Stub by <a href="https://github.com/MiguelGuthridge">Miguel Guthridge</a>. Online documentation by <a href="https://github.com/abbydiode">Abigail de Joode</a>. Not affiliated with Image-Line.
repo_url: https://github.com/IL-Group/FL-Studio-API-Stubs
copyright: (c) 2024 Image Line Software

# Build to a temporary directory
site_dir: temp_site

theme:
name: material
palette:
- media: '(prefers-color-scheme: dark)'
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb
Expand All @@ -34,9 +34,11 @@ plugins:
handlers:
python:
paths:
- transdoc_build
- build_lib
options:
show_source: false
## Not using mkdocs scripts since we need to do a ton of pre-build stuff
## Maybe I'll try and get this working some point
# - gen-files:
# scripts:
# - scripts/generate_pages.py
Expand Down
6 changes: 0 additions & 6 deletions src/channels/__notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
Function definitions for managing notes on channels
"""
from fl_model.decorators import since
from fl_model.channels import checkGlobalIndex, checkGroupIndex


def midiNoteOn(
Expand Down Expand Up @@ -40,11 +38,8 @@ def midiNoteOn(
Included since API version 1.
"""
checkGlobalIndex(indexGlobal)
# TODO: Maintain list of note ons for each channel


@since(9)
def quickQuantize(
index: int,
startOnly: int = 1,
Expand All @@ -68,4 +63,3 @@ def quickQuantize(
* v33: add `useGlobalIndex` flag.
"""
checkGroupIndex(index)
Loading

0 comments on commit 4804583

Please sign in to comment.