aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorneauoire <[email protected]>2020-04-16 07:56:46 +0900
committerneauoire <[email protected]>2020-04-16 07:56:46 +0900
commit15f3d69c14812f918711bc38f267cf7270a4656b (patch)
tree83d670696a06f32ed11a2661505cd907c6f2c099
parent2390227dd5b93c9da0093a598bcbf77b65ca5412 (diff)
downloadOrca-15f3d69c14812f918711bc38f267cf7270a4656b.tar.gz
Orca-15f3d69c14812f918711bc38f267cf7270a4656b.zip
Updated name for b operator
-rw-r--r--README.md2
-rw-r--r--desktop/sources/scripts/client.js2
-rw-r--r--desktop/sources/scripts/core/library.js2
-rw-r--r--sw.js2
4 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b7391b0..2785859 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ npm start
To display the list of operators inside of Orca, use `CmdOrCtrl+G`.
- `A` **add**(*a* b): Outputs sum of inputs.
-- `B` **bounce**(*a* b): Outputs difference of inputs.
+- `B` **subtract**(*a* b): Outputs difference of inputs.
- `C` **clock**(*rate* mod): Outputs modulo of frame.
- `D` **delay**(*rate* mod): Bangs on modulo of frame.
- `E` **east**: Moves eastward, or bangs.
diff --git a/desktop/sources/scripts/client.js b/desktop/sources/scripts/client.js
index f30677d..792a684 100644
--- a/desktop/sources/scripts/client.js
+++ b/desktop/sources/scripts/client.js
@@ -12,7 +12,7 @@
/* global Theme */
function Client () {
- this.version = 173
+ this.version = 174
this.library = library
this.theme = new Theme(this)
diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js
index 1cf7453..0171da4 100644
--- a/desktop/sources/scripts/core/library.js
+++ b/desktop/sources/scripts/core/library.js
@@ -25,7 +25,7 @@ library.a = function OperatorA (orca, x, y, passive) {
library.b = function OperatorL (orca, x, y, passive) {
Operator.call(this, orca, x, y, 'b', passive)
- this.name = 'between'
+ this.name = 'subtract'
this.info = 'Outputs subtraction of inputs'
this.ports.a = { x: -1, y: 0 }
diff --git a/sw.js b/sw.js
index 0862dde..432214a 100644
--- a/sw.js
+++ b/sw.js
@@ -1,4 +1,4 @@
-// 173
+// 174
const assets = [
'./',