Skip to content

Commit

Permalink
Merge pull request #180 from david-c14/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
david-c14 authored Dec 10, 2021
2 parents e0a4b18 + 7496dea commit d5f1c10
Show file tree
Hide file tree
Showing 11 changed files with 86 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildDevelop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
- develop
name: Develop
env:
RACK_SDK_VERSION: 2.0.0
RACK_SDK_VERSION: 2.0.3
jobs:
buildLinux:
name: Build Linux
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Release
env:
RACK_DIR: ${GITHUB_WORKSPACE}/Rack-SDK
RACK_USER_DIR: ${GITHUB_WORKSPACE}
RACK_SDK_VERSION: 2.0.0
RACK_SDK_VERSION: 2.0.3
jobs:
buildLinux:
name: Build Linux
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v2.0.2
- 06-Dec-2021 Fix bug #175 High CPU usage in SS-212
- 04-Dec-2021 Minor fixes in manual
- 04-Dec-2021 Fix bug #172 Visuals not updating on TD-410 and TD-510 in a timely manner

## v2.0.1
- 30-Nov-2021 Add LA-216 Polyphonic Logic Analyser

Expand Down
10 changes: 5 additions & 5 deletions manual/AO.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Arithmetic Operators
#### AO-106 6 Algorithm Arithmetic Operators
![View of the AO-106 - Arithmetic Operators](AO-106.png "Arithmetic Operators")
![View of the AO-106 - Arithmetic Operators](A0-106.png "Arithmetic Operators")
#### AO-112 12 Algorithm Arithmetic Operators
![View of the AO-112 - Arithmetic Operators](AO-112.png "Arithmetic Operators")
![View of the AO-112 - Arithmetic Operators](A0-112.png "Arithmetic Operators")
#### AO-118 18 Algorithm Arithmetic Operators
![View of the AO-118 - Arithmetic Operators](AO-118.png "Arithmetic Operators")
![View of the AO-118 - Arithmetic Operators](A0-118.png "Arithmetic Operators")
#### AO-124 24 Algorithm Arithmetic Operators
![View of the AO-124 - Arithmetic Operators](AO-124.png "Arithmetic Operators")
![View of the AO-124 - Arithmetic Operators](A0-124.png "Arithmetic Operators")
#### AO-136 36 Algorithm Arithmetic Operators
![View of the AO-136 - Arithmetic Operators](AO-136.png "Arithmetic Operators")
![View of the AO-136 - Arithmetic Operators](A0-136.png "Arithmetic Operators")

## Basic Operation

Expand Down
2 changes: 1 addition & 1 deletion manual/DO.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The DO-1xx providers 4 polyphonic inputs and 4 polyphonic outputs. Between the t
The scrollable display in the centre of the device presents between 5 and 20 selectable gates, according to the model of the device.
Each gate can be swapped out by clicking on the gate and dragging the mouse up/down as you would a knob.

[Details of the available gates](gates/index.md)
[Details of the available gates](gates.md)

## Routing

Expand Down
25 changes: 25 additions & 0 deletions manual/convert.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

#apt-get install -y markdown

git clone https://github.com/david-c14/Submarine.git

rm Submarine/Free/Manual/*.html
rm Submarine/Free/Manual/*.png
rm Submarine/Free/Manual/gates/*

for p in *.md
do
sed 's/\.md/\.html/g' ${p} | markdown > ${p%md}body
cat Submarine/Free/Manual/prefix ${p%md}body Submarine/Free/Manual/suffix > Submarine/Free/Manual/${p%md}html
done

cp *.png Submarine/Free/Manual
cp gates/* Submarine/Free/Manual/gates

rm *.body

cd Submarine
git add *
git commit -m 'Update SubmarineFree Manual'
git push
Loading

0 comments on commit d5f1c10

Please sign in to comment.