SHA256
1
0
forked from pool/musescore
musescore/0001-Increase-file-version-number-to-430.patch
Cor Blom 363e070744 Accepting request 1176990 from home:darix:playground
- Add patch series that was included in the usptream binaries but
  not in the 4.3.0 tag:
  https://github.com/musescore/MuseScore/issues/22984
  0001-Increase-file-version-number-to-430.patch
  0002-Fix-utests-1.patch
  0003-Fix-utests-2.patch
  0004-Fix-utests-3.patch
  0005-Fix-utests-4.patch
  0006-Fix-utests-5.patch

OBS-URL: https://build.opensuse.org/request/show/1176990
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/musescore?expand=0&rev=160
2024-05-27 07:05:12 +00:00

39 lines
1.2 KiB
Diff

From 16f358cd23e0e30a8e6dd9a514a0f8f9dbf96f5a Mon Sep 17 00:00:00 2001
From: Michele Spagnolo <m.spagnolo@mu.se>
Date: Thu, 2 May 2024 15:37:37 +0200
Subject: [PATCH 1/6] Increase file version number to 430
---
src/engraving/types/constants.h | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/engraving/types/constants.h b/src/engraving/types/constants.h
index 6f155be2a4..34e10d8dd2 100644
--- a/src/engraving/types/constants.h
+++ b/src/engraving/types/constants.h
@@ -28,8 +28,8 @@
namespace mu::engraving {
struct Constants
{
- static constexpr int MSC_VERSION = 420;
- static constexpr const char* MSC_VERSION_STR = "4.20";
+ static constexpr int MSC_VERSION = 430;
+ static constexpr const char* MSC_VERSION_STR = "4.30";
// History:
// 1.3 added staff->_barLineSpan
@@ -90,6 +90,10 @@ struct Constants
// - Corrections to key signature and transposition (#18998)
// - New inside/outside style for ties
+// 4.30 (Version 4.3)
+// - New styles for tab notation
+// - Sound flags
+
constexpr static int DIVISION = 480;
constexpr static BeatsPerSecond DEFAULT_TEMPO = 2.0; //default tempo is equal 120 bpm
};
--
2.45.1