Skip to content

Commit

Permalink
update orinayo and conversejs. fix streaming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deleolajide committed Mar 11, 2025
1 parent 5d6e0c1 commit f97d70c
Show file tree
Hide file tree
Showing 108 changed files with 8,537 additions and 3,806 deletions.
2 changes: 1 addition & 1 deletion changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1>
Orin Ayo Plugin Changelog
</h1>

<p><b>1.0.0</b> -- January 31, 2025</p>
<p><b>1.0.0</b> -- March 31, 2025</p>

<ul>
<li>Initial release. </li>
Expand Down
Binary file added classes/jsp/assets/bass/afro-juju_128_7500_2.bass
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added classes/jsp/assets/riffs/afro-juju_128_7500.riff
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard23.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard25-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard25-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard25-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard25-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard25.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/dashboard26.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified classes/jsp/assets/screenshots/orinayo_chordpro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified classes/jsp/assets/screenshots/orinayo_pedalboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added classes/jsp/assets/screenshots/x-touch-mini.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 18 additions & 14 deletions classes/jsp/assets/src/pedals/drone.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const dronePedal = function(input, index) {
const samples = {}, sources = {};

const defaults = {
gain: 0.5,
gain: 0.25,
active: false
};

Expand Down Expand Up @@ -50,23 +50,27 @@ export const dronePedal = function(input, index) {
function rePlay(name, gainNode) {
const buffer = samples[name];
const source = sources[name];
console.debug("rePlay", defaults.active, name, buffer, source, gainNode);
console.debug("rePlay", droneOn, name, buffer, source, gainNode);

source.stop();
if (defaults.active) doPlay(name, gainNode);
}

function myToggle() {
console.debug("myToggle", defaults.active);
if (droneOn) doPlay(name, gainNode);
}

if (!defaults.active) {
window.droneOn = defaults.active;

const droneToggle = function() {
const checkbx = pedal.querySelector('[type="checkbox"]');
console.debug("droneToggle", checkbx.checked);

if (checkbx.checked) {
doPlay('root', root);
doPlay('fifth', fifth);
doPlay('diatonic', diatonic);
doPlay('high', high);
doPlay('reverse', reverse);
doPlay('shimmer', shimmer);
doPlay('trempicking', trempicking);
doPlay('trempicking', trempicking);

} else {
sources['root'].stop();
sources['fifth'].stop();
Expand All @@ -76,14 +80,14 @@ export const dronePedal = function(input, index) {
sources['shimmer'].stop();
sources['trempicking'].stop();
}
defaults.active = !defaults.active;

window.droneOn = checkbx.checked;
toggle();
}


// Create audio nodes
const [output, toggle] = createInputSwitch(input, sum, defaults.active);
const [output, toggle] = createInputSwitch(input, sum, droneOn);
root.gain.value = defaults.gain;
fifth.gain.value = defaults.gain;
diatonic.gain.value = defaults.gain;
Expand All @@ -106,8 +110,8 @@ export const dronePedal = function(input, index) {
const pedal = createPedal({
name: 'drone',
label: '',
toggle : myToggle,
active: defaults.active,
toggle : droneToggle,
active: droneOn,
index
});

Expand Down
1 change: 1 addition & 0 deletions classes/jsp/css/stackedit.css

Large diffs are not rendered by default.

Loading

0 comments on commit f97d70c

Please sign in to comment.