Skip to content

Commit 059de5d

Browse files
committed
Merge remote-tracking branch 'upstream/main' into midi-input
2 parents 46da17e + c07b74c commit 059de5d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+134
-134
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 John Nesky
3+
Copyright (c) 2012-2022 John Nesky and contributing authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

editor/ArrayBufferReader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
// Note: All methods are big endian.
44
export class ArrayBufferReader {

editor/ArrayBufferWriter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
function transfer(source: ArrayBuffer, length: number): ArrayBuffer {
44
const dest: ArrayBuffer = new ArrayBuffer(length);

editor/BarScrollBar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
import {SongDocument} from "./SongDocument";
44
import {HTML, SVG} from "imperative-html/dist/esm/elements-strict";

editor/BeatsPerBarPrompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
import {Config} from "../synth/SynthConfig";
44
import {HTML} from "imperative-html/dist/esm/elements-strict";

editor/Change.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
export class Change {
44
private _noop: boolean = true;

editor/ChangeNotifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
export class ChangeNotifier {
44
private _watchers: (()=>void)[] = [];

editor/ChannelSettingsPrompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
import {Config} from "../synth/SynthConfig";
44
import {HTML} from "imperative-html/dist/esm/elements-strict";

editor/ColorConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
import {BeepBoxOption, DictionaryArray, toNameMap} from "../synth/SynthConfig";
44
import {Song} from "../synth/synth";

editor/EditorConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2021 John Nesky, distributed under the MIT license.
1+
// Copyright (c) 2012-2022 John Nesky and contributing authors, distributed under the MIT license, see accompanying the LICENSE.md file.
22

33
import {DictionaryArray, BeepBoxOption, InstrumentType, toNameMap} from "../synth/SynthConfig";
44

0 commit comments

Comments
 (0)