reuk
83e5264c86
Formatting: Remove double-dots from comments and other strings
2025-11-18 15:47:42 +00:00
reuk
fb4f04e4d1
MIDI: Add span getters for MidiMessage and MidiMessageMetadata
2025-09-17 12:50:06 +01:00
Anthony Nicholls
36d07a6ce3
Docs: Replace doxygen preprocessor conditionals with @cond and @endconds
2025-07-21 18:11:43 +02:00
Tom Poole
94d98a2b10
Update licensing information
2024-04-16 11:39:35 +01:00
reuk
8ebbc20311
MIDI-CI: Add module
2023-10-31 11:46:49 +00:00
Tom Poole
dea3fe60e4
Update copyright banners
2022-04-04 12:36:32 +01:00
ed
b9542ccc4c
Update code to use C++14 [[deprecated]] attribute
...
This commit removes the various compiler-specific JUCE_DEPRECATED macros and replaces them with C++14's deprecated attribute. It also removes the JUCE_CATCH_DEPRECATED_CODE_MISUSE flag as we can rely on the override specifier catching usage of these old virtual methods, and tidies up the DOXYGEN preprocessor checks as they were inconsistent across the codebase.
2021-09-29 16:14:00 +01:00
reuk
20bcee5047
MidiMessageSequence: Add tests for createControllerUpdatesForTime
2021-09-28 11:31:49 +01:00
ed
2fb3637e25
MidiMessage: Added VariableLengthValue::isValid() and removed assertion from MidiMessage::readVariableLengthValue()
2021-01-21 11:12:14 +00:00
reuk
0943291990
MidiFile: Make file-reading more robust
...
This commit adds tests and fixes some potential crashes caused by
out-of-bounds reads.
2020-10-23 15:50:47 +01:00
reuk
90664b42df
VST3: Fix issue where aftertouch messages from the host were incorrectly converted to LegacyMIDICCOut messages
2020-09-24 12:48:29 +01:00
Tom Poole
894e7d2bd2
Updated all license headers
2020-04-23 17:30:39 +01:00
Tom Poole
e1e3b42b4f
Fixed an invalid memory read when handling MIDI reset messages
2018-09-10 12:02:27 +01:00
ed
cdbc28c18b
Add documentation tags
2018-03-15 12:10:32 +00:00
ed
aa01a84ed5
Added MidiMessage::isResetAllControllers() method
2018-02-08 15:35:27 +00:00
jules
b5432c710a
Added a method MidiMessage::withTimeStamp, and some MidiMessageSequence unit-tests
2017-10-13 09:27:34 +01:00
jules
eda613c6db
Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools
2017-09-08 08:59:55 +01:00
hogliux
b5afccc37c
Updated file headers and the README with the JUCE 5 license
2017-04-27 14:43:04 +01:00
jules
e0698daaca
Tidied up a couple of comments, warnings and did a bit of code modernisation
2017-04-24 10:49:41 +01:00
jules
3a3f118fbb
A bit of code modernisation in MidiMessage, adding a variadic constructor to allow custom midi messages to be created more succinctly.
2017-04-20 15:31:24 +01:00
hogliux
2da1bc5f41
Replace include guards with "#pragma once"
2017-02-01 17:18:07 +00:00
hogliux
9f3fb1c0a6
Added a compiler error if your compiler is too old and removed numerous code checks for old compilers which are now deprecated
2017-02-01 17:18:06 +00:00
tpoole
2e84129479
Updated the juce_audio_basics, juce_audio_devices, juce_blocks_basics, juce_core and juce_events modules to a new ISC license
2016-12-14 10:07:26 +00:00
jules
dcf9246395
Reduced the footprint of MidiMessage, and added some move operators to MidiMessageSequence
2016-05-28 21:36:42 +01:00
Timur Doumler
07bc151ce3
MidiMessage: moved two useful helper functions into the public interface; minor cleanup of some member function declarations.
2016-05-25 15:54:07 +01:00
Timur Doumler
497f286b53
Added new helper function MidiMessage::getDescription(), replacing some code that was previously in the Juce Demo.
2016-03-02 16:53:23 +00:00
jules
b9261dd8a9
Fixed a typo in a comment.
2015-09-15 08:23:29 +01:00
jules
3f8b213525
Added a MidiMessage::noteOff method that takes a float velocity parameter.
2015-09-14 20:03:42 +01:00
hogliux
c7b8e77031
Update copyright notice
2015-07-22 15:59:34 +01:00
jules
93bc4b97be
Added a parameter to the MidiMessage constructor to optionally parse sysexes without embdedded lengths
2014-03-21 20:02:24 +00:00
jules
da5b67bd03
Minor clean-up.
2014-02-23 13:40:27 +00:00
jules
7786943593
Added MidiMessage::textMetaEvent method.
2014-02-19 20:37:15 +00:00
jules
c67c180b07
Added method MidiMessage::isMidiNoteBlack()
2014-02-07 11:41:06 +00:00
jules
705836d329
Fix for MidiMessage handling sysex messages <= 4 bytes.
2013-11-06 10:31:17 +00:00
jules
12a8dd3092
Avoided some pedantic GCC warnings.
2013-11-03 19:16:52 +00:00
jules
4d7323fe0d
Changed MidiMessage to avoid problems when moving them around in memory. Apart from being slightly cleaner code, this means that it can be used in Arrays.
2013-10-31 16:18:24 +00:00
jules
81435f8134
Made a few constant string arrays static to help compilers to optimise their initialisation.
2013-10-17 10:42:58 +01:00
jules
354b5d38ae
Added method MidiMessage::keySignatureMetaEvent
2013-09-27 19:43:43 +01:00
jules
f4bc1e033d
New methods MidiFile::findAllKeySigEvents() and MidiMessage::isKeySignatureMajorKey()
2013-09-18 19:23:28 +01:00
jules
5a1112ab94
Updated the format of the header include guard macros.
2013-07-17 16:26:35 +01:00
jules
03c2801f3f
Copyright header update in all module files. juce_core modules are now ISC licensed. All other modules are GPLv2/3/AGPLv3
2013-06-13 13:17:12 +01:00
jules
f68637f16b
Documentation fix and MidiMessage constness clean-up.
2013-03-05 18:37:18 +00:00
jules
bfd9350bed
Changed some types from int to size_t where appropriate. Fixed a CoreMidi build problem in 64-bit mode.
2013-02-24 15:49:06 +00:00
jules
9393c1bbc9
Avoided some minor compiler warnings.
2012-11-11 17:06:14 +00:00
Julian Storer
ffc2f5d40e
Created c++11 move constructors and operator= methods for a bunch of classes (only enabled for c++11 compilers, of course)
2011-08-21 21:20:28 +01:00
Julian Storer
b70e0a28d2
First check-in of the "jucequake": a major re-organisation of the library to break it up into modules. For more details about this, see the website forum..
2011-08-12 10:04:52 +01:00