Skip to content

Commit

Permalink
release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Jul 7, 2023
1 parent 4e108d6 commit b9c3d08
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ project ( dmidiplayer
HOMEPAGE_URL "https://sourceforge.net/p/dmidiplayer/"
)

#set(PROJECT_RELEASE_DATE "Dec 6, 2022")
set(PROJECT_RELEASE_DATE "July 8, 2023")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-07-08
* Release 1.7.2

2023-07-02
* Fixed GH ticket #9: Retain Locked Patches when replaying Midi File
* Fixed SF ticket #17: Removed splash screen
Expand Down
14 changes: 14 additions & 0 deletions net.sourceforge.dmidiplayer.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@
</screenshot>
</screenshots>
<releases>
<release version="1.7.2" date="2023-07-08">
<description>
<p>This release includes the following changes</p>
<ul>
<li>Fixed SF ticket #17: splash screen removed.</li>
<li>Fixed GH ticket #9: retain Locked Patches when replaying Midi File.</li>
<li>Fixed GH ticket #8: crash when loading a song from File->Open Recent Files.</li>
<li>Fixed GH ticket #7: detect default language setting.</li>
<li>Upgraded: uchardet v0.0.8.</li>
<li>Upgraded: drumstick-2.8.</li>
</ul>
</description>
<url>https://sourceforge.net/p/dmidiplayer/blog/2022/12/drumstick-multiplatform-midi-file-player-171-released/</url>
</release>
<release version="1.7.1" date="2022-12-06">
<description>
<p>This release includes the following changes</p>
Expand Down
3 changes: 3 additions & 0 deletions seqplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,9 @@ QString SequencePlayer::currentBeatStr()
void SequencePlayer::setVolume(int channel, qreal value)
{
//qDebug() << Q_FUNC_INFO << channel << value;
if (m_port == nullptr) {
return;
}
if (channel >= 0 && channel < MIDI_STD_CHANNELS) {
m_volumeShift[channel] = value;
int volume = boundedFloor(m_volume[channel], value / 100.0);
Expand Down

0 comments on commit b9c3d08

Please sign in to comment.