Skip to content

Commit

Permalink
fix #109651: add hint at the download page when loading pre 0.9.6 scores
Browse files Browse the repository at this point in the history
specificially for MuseScore 2.0.4.
  • Loading branch information
Jojo-Schmitz committed May 3, 2016
1 parent 3bb79c3 commit 59de031
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mscore/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ static bool readScoreError(const QString& name, Score::FileError error, bool ask
case Score::FileError::FILE_TOO_OLD:
msg += QObject::tr("It was last saved with version 0.9.5 or older.\n"
"You can convert this score by opening and then\n"
"saving with MuseScore version 1.x");
"saving with MuseScore version 1.x.\n"
"Visit the %1MuseScore download page%2 to obtain such a 1.x version.")
.arg("<a href=\"http://musescore.org/download#older-versions\">")
.arg("</a>");
canIgnore = true;
break;
case Score::FileError::FILE_TOO_NEW:
Expand Down

0 comments on commit 59de031

Please sign in to comment.