Skip to content

Commit

Permalink
Renamed triples to triplets.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnesky committed Aug 29, 2019
1 parent ec60e28 commit cfc7189
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tasks.txt
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ AUTHENTICATION:
- main website should break out of iframe for security: http://usablelayout.com/articles/automatically-break-out-iframe

MAYBE:
- new drum noise spectrums?
- @Gasparatus asked for a BPM display.
- do audio worker threads work yet? "AudioWorkerNode" vs "AudioWorkletNode"???
- custom cover art, color schemes in playlists and embed player.
Expand Down
2 changes: 1 addition & 1 deletion ts/SongEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module beepbox {
]),
]);
private readonly _playButton: HTMLButtonElement = button({style: "width: 34px; margin: 0px", type: "button"});
private readonly _volumeSlider: HTMLInputElement = input({style: "width: 9em; flex-shrink: 0; margin: 0px;", type: "range", min: "0", max: "100", value: "50", step: "1"});
private readonly _volumeSlider: HTMLInputElement = input({title: "main volume", style: "width: 9em; flex-shrink: 0; margin: 0px;", type: "range", min: "0", max: "100", value: "50", step: "1"});
private readonly _editButton: HTMLSelectElement = select({style: "width:100%;"}, [
option("", "Edit Menu", true, true),
option("undo", "Undo (Z)", false, false),
Expand Down
2 changes: 1 addition & 1 deletion ts/synth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module beepbox {
public static readonly patternsPerChannelMax: number = 64;
public static readonly instrumentsPerChannelMin: number = 1;
public static readonly instrumentsPerChannelMax: number = 10;
public static readonly partNames: ReadonlyArray<string> = ["÷3 (triples)", "÷4 (standard)", "÷6", "÷8"];
public static readonly partNames: ReadonlyArray<string> = ["÷3 (triplets)", "÷4 (standard)", "÷6", "÷8"];
public static readonly partCounts: ReadonlyArray<number> = [3, 4, 6, 8];
public static readonly waveNames: ReadonlyArray<string> = ["triangle", "square", "pulse wide", "pulse narrow", "sawtooth", "double saw", "double pulse", "spiky", "plateau"];
public static readonly waveVolumes: ReadonlyArray<number> = [1.0, 0.5, 0.5, 0.5, 0.65, 0.5, 0.4, 0.4, 0.94];
Expand Down

0 comments on commit cfc7189

Please sign in to comment.