Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Oct 5, 2020
1 parent a499e7d commit 5cac064
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 15 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [unreleased]
## [3.0.0] - 2020-10-05
* Support for buzz roll tremolos (@rettinghaus)
* Support for `Sprechgesang` stems (@rettinghaus)
* Support for `<phrase>`
Expand All @@ -14,9 +14,6 @@
## [2.7.2] - 2020-07-23
* Fix bug with memory in beams (@valeriyvan)

## [2.7.2] - 2020-07-23
* Fix bug with memory in beams (@valeriyvan)

## [2.7.1] - 2020-05-22
* Fix bug with mensural clefs not displaying

Expand Down
2 changes: 1 addition & 1 deletion Verovio.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Verovio'
s.version = '3.0.0-dev'
s.version = '3.0.0'
s.license = { :type => 'LGPL' }
s.homepage = 'https://www.verovio.org/index.xhtml'
s.authors = { 'Contributors List' => 'https://github.com/rism-ch/verovio/graphs/contributors' }
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.rism.verovio</groupId>
<artifactId>VerovioToolkit</artifactId>
<version>2.7.2</version>
<version>3.0.0</version>
<packaging>jar</packaging>

<name>VerovioToolkit</name>
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
)

setup(name='verovio',
version='2.7.2',
version='3.0.0',
url="www.verovio.org",
description="""A library and toolkit for engraving MEI music notation into SVG""",
ext_modules=[verovio_module],
Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"identifier": "Verovio",
"name": "Verovio",
"description": "Verovio is a fast, portable and lightweight open-source library for engraving Music Encoding Initiative (MEI) music scores into SVG.",
"softwareVersion": "2.7.2",
"datePublished": "2020-07-23",
"softwareVersion": "3.0.0",
"datePublished": "2020-10-05",
"license": "https://www.gnu.org/licenses/lgpl-3.0",
"programmingLanguage": [{
"@type": "ComputerLanguage",
Expand Down
2 changes: 1 addition & 1 deletion emscripten/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "verovio",
"version": "2.7.2",
"version": "3.0.0",
"description": "This is the stable version of the verovio package",
"main": "index.js",
"keywords": [
Expand Down
32 changes: 27 additions & 5 deletions include/vrv/vrvdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,25 @@ namespace vrv {
// Version
//----------------------------------------------------------------------------

#define VERSION_MAJOR 2
#define VERSION_MINOR 7
#define VERSION_REVISION 2
#define VERSION_MAJOR 3
#define VERSION_MINOR 0
#define VERSION_REVISION 0
// Adds "-dev" in the version number - should be set to false for releases
#define VERSION_DEV false

enum MEIVersion { MEI_UNDEFINED = 0, MEI_2013, MEI_3_0_0, MEI_4_0_0, MEI_4_0_1 };
enum MEIVersion { MEI_UNDEFINED = 0, MEI_2013, MEI_3_0_0, MEI_4_0_0, MEI_4_0_1, MEI_5_0_0_dev };

//----------------------------------------------------------------------------
// Cast redefinition
//----------------------------------------------------------------------------

// Can be changed between static and dynamic for debug purposes

// To be used for all cases where type is cheched through Object::m_type
#define vrv_cast static_cast

// To be used for all FunctorParams casts withi Functors
#define vrv_params_cast static_cast

//----------------------------------------------------------------------------
// Default midi values
Expand Down Expand Up @@ -144,13 +156,15 @@ enum ClassId {
DIR,
DYNAM,
FERMATA,
FING,
GLISS,
HAIRPIN,
HARM,
MORDENT,
MNUM,
OCTAVE,
PEDAL,
PHRASE,
REH,
SLUR,
TEMPO,
Expand Down Expand Up @@ -277,6 +291,8 @@ class TimeSpanningInterface;

typedef std::vector<Object *> ArrayOfObjects;

typedef std::list<Object *> ListOfObjects;

typedef std::vector<Comparison *> ArrayOfComparisons;

typedef std::vector<Note *> ChordCluster;
Expand All @@ -289,7 +305,7 @@ typedef std::vector<BeamElementCoord *> ArrayOfBeamElementCoords;

typedef std::vector<std::pair<int, int> > ArrayOfIntPairs;

typedef std::multimap<std::string, LinkingInterface *> ArrayOfLinkingInterfaceUuidPairs;
typedef std::multimap<std::string, LinkingInterface *> MapOfLinkingInterfaceUuidPairs;

typedef std::vector<std::pair<PlistInterface *, std::string> > ArrayOfPlistInterfaceUuidPairs;

Expand Down Expand Up @@ -526,6 +542,12 @@ enum {
LIGATURE_STACKED = 32
};

//----------------------------------------------------------------------------
// Analytical markup bitfields
//----------------------------------------------------------------------------

enum { MARKUP_DEFAULT = 0, MARKUP_ANALYTICAL_TIE = 1, MARKUP_ANALYTICAL_FERMATA = 2, MARKUP_GRACE_ATTRIBUTE = 4 };

//----------------------------------------------------------------------------
// Bounding box access
//----------------------------------------------------------------------------
Expand Down

0 comments on commit 5cac064

Please sign in to comment.