musescore:3.3rc

Last commit made on 2019-10-02
Get this branch:
git clone -b 3.3rc https://git.launchpad.net/musescore

Branch merges

Branch information

Name:
3.3rc
Repository:
lp:musescore

Recent commits

d3bff12... by anatoly-os <email address hidden>

update translations

b2a7a44... by anatoly-os <email address hidden>

fix typo in the package label

c559c11... by anatoly-os <email address hidden>

Merge pull request #5327 from MarcSabatella/294126-navigate-measure-elements

fix #294126: cannot navigate to measure elements

b3574ad... by Marc Sabatella

fix #294121: navigation skips annotations entered out of order

Annotations are appended to the annotation list as they are entered.
This means they won't necessarily be sorted by track,
if you enter them onto staves in any order but top down.
The result is the navitgation code skips all annotations for a staff
after the first annotation it encounters on a different staff.

This commit fixes the issue by continuing to loop through the annotations,
looking for more on the same staff.

anatoly-os: rewrite the improvement from #5308 using `find_if`

anatoly-os: Did refactoring using `find_if` to make the code cleaner. Initial idea and implementation are authored by @MarcSabatella.

d01c5ff... by anatoly-os <email address hidden>

Merge pull request #5359 from Jojo-Schmitz/warnings

fix MSVC compiler warnings

5eacfa1... by anatoly-os <email address hidden>

fix #295121: crazy behaviour of the colorLabel

Rewrite ColorLabel to be a child of QPushButton instead of QFrame. The reason is that QFrame doesn't implement MouseClickEvent. That led to the issues when opening the colour picker widget on mousePressEvent.

I have to move `Awl::ColorLabel` `else if` statement checks above the `QPushButton` ones, because the latter set incorrect connects for the `ColorLabel` which inherits `QPushButton` now.

3f2c71a... by Dmitri Ovodok <email address hidden>

Fix mtest build

Fixup for db001c2d0afb6438d96cf8adc60eaff39e002ab9: exclude feature
on notifying plugins of score changes from mtest until it becomes
possible to include it there

4720f48... by Dmitri Ovodok <email address hidden>

Update MuseScore version in plugin docs

54c69af... by Dmitri Ovodok <email address hidden>

Minor palettes fixes

 - Display hidden custom palette cells for custom palettes correctly
 - Fix wording in the custom palette cell deletion dialog
 - Wrap navigation over palettes in "More" popup for custom palettes
 - Adjust styling

85c9bbf... by Dmitri Ovodok <email address hidden>

Plugin API: add experimental feature to notify plugins on score changes