Skip to content

Commit

Permalink
v3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 16, 2024
1 parent 1b31e4d commit 8af5b15
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ list(GET QT_VERSION 0 QT_PREFIX)

set(SCORE_VERSION_MAJOR 3)
set(SCORE_VERSION_MINOR 3)
set(SCORE_VERSION_PATCH 0)
set(SCORE_VERSION_PATCH 1)
set(SCORE_VERSION_EXTRA "")
set(SCORE_CODENAME "Artachat")

Expand Down
21 changes: 21 additions & 0 deletions cmake/Deployment/Linux/ossia-score.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,27 @@
</screenshot>
</screenshots>
<releases>
<release version="3.3.1" date="2024-11-15">
<url type="details">https://github.com/ossia/score/releases/tag/v3.3.1</url>
<description>
<p>ossia score 3.3.0 is a minor hotfix release.</p>
<p>New features</p>
<ul>
<li>LED View process to display [r,g,b,r,g,b,...] triplets</li>
<li>Signal Display will now display multi-dimensional arrays in addition of single values</li>
</ul>
<p>Bugfixes</p>
<ul>
<li>Build: fix warnings coming from 3rdparty libraries</li>
<li>CI: multiple fixes</li>
<li>UI: do not center widgets in vertical layouts</li>
<li>UI: fix precision issue with xy / xyz spinboxes and large ranges</li>
<li>Signal Display: fix that it was stuck</li>
<li>Core: be more lenient with processes that have dynamic ports</li>
<li>Core: fix that a QThread was deleted after QCoreApplication leading to a macOS crash</li>
</ul>
</description>
</release>
<release version="3.3.0" date="2024-11-12">
<url type="details">https://github.com/ossia/score/releases/tag/v3.3.0</url>
<description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ QString MIDIInputProtocolFactory::category() const noexcept

QUrl MIDIInputProtocolFactory::manual() const noexcept
{
return QUrl("https://ossia.io/score-docs/devices/midi-device.html");
return QUrl("https://ossia.io/score-docs/devices/midiin-device.html");
}

Device::DeviceEnumerators
Expand Down Expand Up @@ -256,7 +256,7 @@ QString MIDIOutputProtocolFactory::category() const noexcept

QUrl MIDIOutputProtocolFactory::manual() const noexcept
{
return QUrl("https://ossia.io/score-docs/devices/midi-device.html");
return QUrl("https://ossia.io/score-docs/devices/midiout-device.html");
}

Device::DeviceEnumerators
Expand Down

0 comments on commit 8af5b15

Please sign in to comment.