Skip to content
This repository was archived by the owner on Feb 13, 2021. It is now read-only.

Commit 6dbe4bb

Browse files
committed
Add new piece, fix Above the Rain, and update patron list
1 parent 9043154 commit 6dbe4bb

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

docs/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
(none)
1111

12+
## [1.23.0] - 2019-12-01
13+
14+
### Fixed
15+
16+
- "Above the Rain" releases all resources when stopped
17+
18+
### Changed
19+
20+
- Update Patron list
21+
22+
### Added
23+
24+
- New piece: "Beneath Waves"
25+
1226
## [1.22.0] - 2019-11-24
1327

1428
### Added
@@ -613,7 +627,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
613627

614628
- Sound files will no longer be fetched and cached during service worker installation. They'll be cached once they are fetched for the first time. This significantly reduces cache usage since only one audio format is used per client.
615629

616-
[unreleased]: https://github.com/generative-music/generative.fm/compare/v1.22.0...HEAD
630+
[unreleased]: https://github.com/generative-music/generative.fm/compare/v1.23.0...HEAD
631+
[1.23.0]: https://github.com/generative-music/generative.fm/compare/v1.22.0...v1.23.0
617632
[1.22.0]: https://github.com/generative-music/generative.fm/compare/v1.21.0...v1.22.0
618633
[1.21.0]: https://github.com/generative-music/generative.fm/compare/v1.20.0...v1.21.0
619634
[1.20.0]: https://github.com/generative-music/generative.fm/compare/v1.19.0...v1.20.0

package-lock.json

Lines changed: 8 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,14 @@
6565
"@fortawesome/free-solid-svg-icons": "^5.7.2",
6666
"@fortawesome/react-fontawesome": "^0.1.4",
6767
"@generative-music/piece-a-viable-system": "^2.13.0",
68-
"@generative-music/piece-above-the-rain": "^2.25.0",
68+
"@generative-music/piece-above-the-rain": "^2.35.0",
6969
"@generative-music/piece-agua-ravine": "^2.23.0",
7070
"@generative-music/piece-aisatsana": "^2.13.2",
7171
"@generative-music/piece-animalia-chordata": "^2.24.0",
7272
"@generative-music/piece-apoapsis": "^2.13.0",
7373
"@generative-music/piece-at-sunrise": "^2.21.0",
7474
"@generative-music/piece-awash": "^2.13.0",
75+
"@generative-music/piece-beneath-waves": "^2.35.0",
7576
"@generative-music/piece-bhairav": "^2.18.0",
7677
"@generative-music/piece-buttafingers": "^2.13.0",
7778
"@generative-music/piece-day-dream": "^2.13.1",

src/components/app/about-tab/credits/index.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ const supporters = [
2525
'John',
2626
'Fred - FLQ',
2727
'Eric Turner',
28+
'Emily M Kaplan',
2829
];
2930
const majorSupporters = [
3031
'Brian Fountain',
3132
'Mike Smith',
3233
'Christian DeWolf',
3334
'Sam Roelants',
34-
'Papuna Gagnidze',
35+
// 'Papuna Gagnidze',
3536
"Anthony O'Neill",
3637
'Russ Creech',
3738
];

src/pieces/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ import uun from '@generative-music/piece-uun';
4848
import ritual from '@generative-music/piece-ritual';
4949
import transmission from '@generative-music/piece-transmission';
5050
import documentaryFilms from '@generative-music/piece-documentary-films';
51+
import beneathWaves from '@generative-music/piece-beneath-waves';
5152

5253
const pieces = [
5354
enoMachine,
@@ -100,6 +101,7 @@ const pieces = [
100101
ritual,
101102
transmission,
102103
documentaryFilms,
104+
beneathWaves,
103105
].reverse();
104106

105107
export default pieces;

0 commit comments

Comments
 (0)