Comparing version 0.9.4 to 0.9.5
{ | ||
"name": "midi", | ||
"version": "0.9.4", | ||
"version": "0.9.5", | ||
"scripts": { | ||
@@ -40,3 +40,3 @@ "test": "mocha test/unit-tests.js && node test/virtual-loopback-test-automated.js" | ||
"bindings": "~1.2.1", | ||
"nan": "~2.0.5" | ||
"nan": "^2.3.3" | ||
}, | ||
@@ -43,0 +43,0 @@ "devDependencies": { |
@@ -9,8 +9,6 @@ /*! \mainpage The RtMidi Tutorial | ||
<UL> | ||
<LI>object oriented C++ design</LI> | ||
<LI>simple, common API across all supported platforms</LI> | ||
<LI>only one header and one source file for easy inclusion in programming projects</LI> | ||
<LI>MIDI device enumeration</LI> | ||
</UL> | ||
- object oriented C++ design | ||
- simple, common API across all supported platforms | ||
- only one header and one source file for easy inclusion in programming projects | ||
- MIDI device enumeration | ||
@@ -21,9 +19,9 @@ Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. | ||
\section whatsnew What's New (Version 2.1) | ||
\section whatsnew What's New (Version 2.1.1) | ||
A minor API change was made. The RtError class was renamed RtMidiError and embedded directly in RtMidi.h. Thus, all references to RtError should be renamed to RtMidiError and the RtError.h file should be deleted. The Windows Kernel Streaming support was removed because it was uncompilable and incomplete. | ||
There were no API changes made in the current release. The primary changes involved updates to the build system and some small bug fixes. With respect to the previous release (2.1.0), a minor API change was made. The RtError class was renamed RtMidiError and embedded directly in RtMidi.h. Thus, all references to RtError should be renamed to RtMidiError and the RtError.h file should be deleted. The Windows Kernel Streaming code was moved to a separate branch because it was uncompilable and incomplete. | ||
\section download Download | ||
Latest Release (30 March 2014): <A href="http://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-2.1.0.tar.gz">Version 2.1.0</A> | ||
Latest Release (11 February 2016): <A href="http://www.music.mcgill.ca/~gary/rtmidi/release/rtmidi-2.1.1.tar.gz">Version 2.1.1</A> | ||
@@ -417,4 +415,2 @@ \section start Getting Started | ||
The \c configure script provides support for the MinGW compiler. | ||
\section acknowledge Development & Acknowledgements | ||
@@ -425,26 +421,27 @@ | ||
In years past, the following people provided bug fixes and improvements: | ||
<UL> | ||
<LI>Sebastien Alaiwan (JACK memory leaks, Windows kernel streaming)</LI> | ||
<LI>Jean-Baptiste Berruchon (Windows sysex code)</LI> | ||
<LI>Pedro Lopez-Cabanillas (ALSA sequencer API, client naming)</LI> | ||
<LI>Jason Champion (MSW project file for library build)</LI> | ||
<LI>Eduardo Coutinho (Windows device names)</LI> | ||
<LI>Paul Dean (increment optimization)</LI> | ||
<LI>Luc Deschenaux (sysex issues)</LI> | ||
<LI>John Dey (OS-X timestamps)</LI> | ||
<LI>Christoph Eckert (ALSA sysex fixes)</LI> | ||
<LI>Martin Koegler (various fixes)</LI> | ||
<LI>Immanuel Litzroth (OS-X sysex fix)</LI> | ||
<LI>Jon McCormack (Snow Leopard updates)</LI> | ||
<LI>Axel Schmidt (client naming)</LI> | ||
<LI>Alexander Svetalkin (JACK MIDI)</LI> | ||
<LI>Casey Tucker (OS-X driver information, sysex sending)</LI> | ||
<LI>Bastiaan Verreijt (Windows sysex multi-buffer code)</LI> | ||
<LI>Dan Wilcox</LI> | ||
</UL> | ||
- Stephen Sinclair (Git repo and build system) | ||
- Atsushi Eno (C API) | ||
- Sebastien Alaiwan (JACK memory leaks, Windows kernel streaming) | ||
- Jean-Baptiste Berruchon (Windows sysex code) | ||
- Pedro Lopez-Cabanillas (ALSA sequencer API, client naming) | ||
- Jason Champion (MSW project file for library build) | ||
- Eduardo Coutinho (Windows device names) | ||
- Paul Dean (increment optimization) | ||
- Luc Deschenaux (sysex issues) | ||
- John Dey (OS-X timestamps) | ||
- Christoph Eckert (ALSA sysex fixes) | ||
- Martin Koegler (various fixes) | ||
- Immanuel Litzroth (OS-X sysex fix) | ||
- Jon McCormack (Snow Leopard updates) | ||
- Axel Schmidt (client naming) | ||
- Alexander Svetalkin (JACK MIDI) | ||
- Casey Tucker (OS-X driver information, sysex sending) | ||
- Bastiaan Verreijt (Windows sysex multi-buffer code) | ||
- Dan Wilcox | ||
\section license License | ||
RtMidi: realtime MIDI i/o C++ classes<BR> | ||
Copyright (c) 2003-2014 Gary P. Scavone | ||
Copyright (c) 2003-2016 Gary P. Scavone | ||
@@ -451,0 +448,0 @@ Permission is hereby granted, free of charge, to any person |
@@ -1,5 +0,14 @@ | ||
RtMidi - a set of C++ classes that provides a common API for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMidi & JACK), and Windows (Multimedia, Kernel Streaming). | ||
RtMidi - a set of C++ classes that provides a common API for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMidi & JACK), and Windows (Multimedia Library). | ||
By Gary P. Scavone, 2003-2014 | ||
By Gary P. Scavone, 2003-2016 | ||
v2.1.1: (11 February 2016) | ||
- updates to automake routines | ||
- added C API (thanks to Atsushi Eno!) | ||
- JACK ringbuffer allocation change | ||
- OSX virtual port closing fix | ||
- OSX sysex sending fix | ||
- moved Windows kernel streaming code to other branch because it is incomplete | ||
- miscellaneous small fixes | ||
v2.1.0: (30 March 2014) | ||
@@ -6,0 +15,0 @@ - renamed RtError class to RtMidiError and embedded it in RtMidi.h (and deleted RtError.h) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
Found 1 instance in 1 package
0
100
521222
59
374
+ Addednan@2.22.0(transitive)
- Removednan@2.0.9(transitive)
Updatednan@^2.3.3