浏览代码

Merge branch 'release/0.1.0' into develop

Oliver 8 年之前
父节点
当前提交
dfcb34f933
共有 3 个文件被更改,包括 14 次插入5 次删除
  1. 11 0
      CHANGELOG.md
  2. 1 1
      package.json
  3. 2 4
      test/Common/FileIO/Xml_Test.ts

+ 11 - 0
CHANGELOG.md

@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 ### Changed
 ### Bugfixes
 
+## [0.1.0] - 2016-09-23
+### Added
+- Added Reset button for cursor for demo
+- Added more xml files for demo and testing
+- Added unit tests for reading and calculating the xml files
+- Added logo as favicon and as img for demo site
+### Changed
+- html site layout of demo
+### Bugfixes
+- Fixed cursor functionality in demo
+
 ## [0.1.0-beta.5] - 2016-09-21
 ### Changed
 - Updated Github pages deployment ([645c428](https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/commit/645c42874ea1c43f62d163203d2b96aa6667accf))

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "opensheetmusicdisplay",
-  "version": "0.1.0-beta.5",
+  "version": "0.1.0",
   "description": "An open source JavaScript engine for displaying MusicXML based on VexFlow.",
   "main": "dist/src/OSMD/OSMD.js",
   "typings": "dist/src/OSMD/OSMD",

+ 2 - 4
test/Common/FileIO/Xml_Test.ts

@@ -17,7 +17,7 @@ describe("XML interface", () => {
 
 
     // Test all the following xml files:
-    let scores: string[] = [
+    let xmlTestset: string[] = [
         "an chloe - mozart.xml",
         "AnDieFerneGeliebte_Beethoven.xml",
         "CharlesGounod_Meditation.xml",
@@ -27,8 +27,6 @@ describe("XML interface", () => {
         "JohannSebastianBach_PraeludiumInCDur_BWV846_1.xml",
         "JosephHaydn_ConcertanteCello.xml",
         "mandoline - debussy.xml",
-        "MozartTrio.mxl",
-        "MozartTrio.mxl.base64",
         "MuzioClementi_SonatinaOpus36No1_Part1.xml",
         "MuzioClementi_SonatinaOpus36No1_Part2.xml",
         "MuzioClementi_SonatinaOpus36No3_Part1.xml",
@@ -38,7 +36,7 @@ describe("XML interface", () => {
         "TelemannWV40.102_Sonate-Nr.1.1-Dolce.xml",
         "TelemannWV40.102_Sonate-Nr.1.2-Allegro-F-Dur.xml",
         "ActorPreludeSample.xml"];
-    for (let score of scores) {
+    for (let score of xmlTestset) {
         testFile(score);
     }