Skip to content

Commit

Permalink
Merge pull request #255 from cuthbertLab/v0.16.1-release
Browse files Browse the repository at this point in the history
v0.16.1 release
  • Loading branch information
mscuthbert authored Jun 11, 2024
2 parents f6dc7d5 + 195f901 commit 67588f3
Show file tree
Hide file tree
Showing 14 changed files with 1,776 additions and 7,542 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "music21j",
"version": "0.16.0",
"version": "0.16.1",
"description": "A toolkit for computer-aided musicology, Javascript version",
"main": "releases/music21.debug.js",
"typings": "releases/src/main.d.ts",
Expand Down
9,265 changes: 1,740 additions & 7,525 deletions releases/music21.debug.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion releases/music21.debug.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion releases/src/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ import * as voiceLeading from './voiceLeading';
import * as webmidi from './webmidi';
import { debug } from './debug';
export { MIDI, Vex, exceptions21, base, prebase, common, debug, articulations, audioRecording, audioSearch, bar, beam, chord, chordTables, clef, converter, defaults, derivation, duration, dynamics, editorial, expressions, figuredBass, fromPython, harmony, instrument, interval, key, keyboard, layout, meter, miditools, musicxml, note, parseLoader, pitch, renderOptions, roman, scale, sites, stream, style, svgs, tempo, tie, tinyNotation, vfShims, vfShow, voiceLeading, webmidi, };
export declare const VERSION = "0.15.8";
export declare const VERSION = "0.16.0";
//# sourceMappingURL=main.d.ts.map
2 changes: 1 addition & 1 deletion releases/src/note.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion releases/src/pitch.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export declare class Accidental extends prebase.ProtoM21Object {
* @type {string}
* @readonly
*/
get vexflowModifier(): "n" | "#" | "##" | "###" | "bb" | "b" | "bbb";
get vexflowModifier(): "#" | "##" | "###" | "bb" | "b" | "n" | "bbb";
/**
* Returns the modifier in unicode or
* for double and triple accidentals, as a hex escape
Expand Down
8 changes: 5 additions & 3 deletions releases/src/stream.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,11 @@ export declare class Stream<ElementType extends base.Music21Object = base.Music2
mergeAttributes(other: Stream): this;
/**
* makeNotation does not do anything yet, but it is a placeholder
* so it can start to be called.
* so it can start to be called. NOTE: Currently assumes that
* it is being called on FLAT Stream!
*
* TODO: move call to makeBeams from renderVexflow to here.
* TODO: move call to makeBeams from renderVexflow to here once
* it works on recursive streams.
*/
makeNotation({ inPlace, overrideStatus }?: {
inPlace?: boolean;
Expand Down Expand Up @@ -543,7 +545,7 @@ export declare class Stream<ElementType extends base.Music21Object = base.Music2
*
* Will be moved to vfShow eventually when converter objects are enabled...maybe.
*
* Takes in a canvas or the div surrounding an SVG object
* Takes in the div surrounding an SVG object (or a canvas)
*/
renderVexflow(where?: HTMLDivElement | HTMLCanvasElement): vfShow.Renderer;
/**
Expand Down
Loading

0 comments on commit 67588f3

Please sign in to comment.