diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fffa79e..36992d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,9 @@ * Feature: Add a button for calculating more MOS sizes in Rank 2 modal [#832](https://github.com/xenharmonic-devs/scale-workshop/issues/832) * Feature: Linear MIDI output mode (uses the numbers in the "#" column and assumes you tune the target device yourself) [#834](https://github.com/xenharmonic-devs/scale-workshop/issues/834) * Feature: Display a warning when the user tries to create a scale larger than 1024 notes in *New scale -> Equal temperament* [#402](https://github.com/xenharmonic-devs/scale-workshop/issues/402) - * Bug fix: Fix a crash in Rank 2 caused by temperaments with a negative number of periods per equave [#837](https://github.com/xenharmonic-devs/scale-workshop/issues/837) * Feature: Add several L-system inharmonic timbres related to golden ratio, silver ratio, plastic number and supergolden ratio [#845](https://github.com/xenharmonic-devs/scale-workshop/issues/845) + * Bug fix: Fix a crash in Rank 2 caused by temperaments with a negative number of periods per equave [#837](https://github.com/xenharmonic-devs/scale-workshop/issues/837) + * Bug fix: Use maximum real precision when more than 12 fraction digits are used for cents [#843](https://github.com/xenharmonic-devs/scale-workshop/issues/843) ## 3.1.0 * Feature: Implement the missing size inequality operator `~<>` (i.e. the negation of `~=`) diff --git a/package-lock.json b/package-lock.json index 51d68a14..2271309a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "moment-of-symmetry": "^0.8.4", "pinia": "^2.3.0", "qs": "^6.13.1", - "sonic-weave": "^0.10.10", + "sonic-weave": "^0.11.0", "sw-synth": "^0.1.2", "values.js": "^2.1.1", "vue": "^3.3.4", @@ -5446,9 +5446,9 @@ } }, "node_modules/sonic-weave": { - "version": "0.10.10", - "resolved": "https://registry.npmjs.org/sonic-weave/-/sonic-weave-0.10.10.tgz", - "integrity": "sha512-dM1HgaXpuz3aSu1N2KtsEUaDEaE87O69b1liXYrbaeLc2YEYZjbcARM0Nv08GP4Z2V7C/jmXYoLu3Pyw+dTEfw==", + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/sonic-weave/-/sonic-weave-0.11.0.tgz", + "integrity": "sha512-EaCOtpBjloujxnK/IpLT0kZ0XfEOuqDZHyPlvT77Ys/R52a4S9P5/baMLivxBa1Gqej5FuFw/fUMI4tteF/ndQ==", "dependencies": { "moment-of-symmetry": "^0.8.4", "xen-dev-utils": "^0.11.1" diff --git a/package.json b/package.json index a4a3f39d..6c526c4d 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "moment-of-symmetry": "^0.8.4", "pinia": "^2.3.0", "qs": "^6.13.1", - "sonic-weave": "^0.10.10", + "sonic-weave": "^0.11.0", "sw-synth": "^0.1.2", "values.js": "^2.1.1", "vue": "^3.3.4",