Skip to content

Commit

Permalink
release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Sep 18, 2021
1 parent b8e9427 commit 7f7147a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ Some key features:
* Change MIDI volume level (using MIDI CC7)
* Scale song speed between half and double tempo
* Lyrics, Piano Player and MIDI Channels views
* Supports MID/KAR (Standard MIDI Files) and WRK (Cakewalk) file formats
* Supports MID/KAR/RMI (Standard MIDI Files) and WRK (Cakewalk) file formats

New in v1.5.1:

* GH ticket #6: The dependency target "update_helpfiles" of target "dmidiplayer" does not exist
* Error checking for DwmGetWindowAttribute() call. This caused a problem in Windows 7 running the "Windows Classic" theme
* Support for RIFF MIDI files, provided by Drumstick 2.4.0

New in v1.5.0:

Expand Down
4 changes: 3 additions & 1 deletion sequence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ Sequence::Sequence(QObject *parent) : QObject(parent),
m_duration(0),
m_lastBeat(0),
m_beatLength(0),
m_tick(0)
m_tick(0),
m_codec(nullptr)
{
m_rmid = new Rmidi(this);
connect(m_rmid, &Rmidi::signalRiffData, this, &Sequence::dataHandler);
Expand Down Expand Up @@ -286,6 +287,7 @@ void Sequence::clear()
m_lowestMidiNote = 127;
m_highestMidiNote = 0;
m_curTrack = 0;
m_codec = nullptr;
m_infoMap.clear();
for(int i=0; i<MIDI_STD_CHANNELS; ++i) {
m_channelUsed[i] = false;
Expand Down

0 comments on commit 7f7147a

Please sign in to comment.