Upgrade 420hz and credits

This commit is contained in:
metalex9
2020-02-18 21:59:15 -06:00
parent c3a63e3b3c
commit 744e4144c5
5 changed files with 25 additions and 10 deletions

View File

@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(none)
## [1.27.0] - 2020-02-18
### Fixed
- Upgrade "420hz Gammas Waves for Big Brain" to latest version that has a better crossfade
### Changed
- Update Patron list
## [1.26.1] - 2020-01-25
### Fixed
@@ -656,7 +666,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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.
[unreleased]: https://github.com/generative-music/generative.fm/compare/v1.26.1...HEAD
[unreleased]: https://github.com/generative-music/generative.fm/compare/v1.27.0...HEAD
[1.27.0]: https://github.com/generative-music/generative.fm/compare/v1.26.1...v1.27.0
[1.26.1]: https://github.com/generative-music/generative.fm/compare/v1.25.0...v1.26.1
[1.26.0]: https://github.com/generative-music/generative.fm/compare/v1.25.0...v1.26.0
[1.25.0]: https://github.com/generative-music/generative.fm/compare/v1.24.0...v1.25.0

6
package-lock.json generated
View File

@@ -1062,9 +1062,9 @@
}
},
"@generative-music/piece-420hz-gamma-waves-for-big-brain": {
"version": "2.36.1",
"resolved": "https://registry.npmjs.org/@generative-music/piece-420hz-gamma-waves-for-big-brain/-/piece-420hz-gamma-waves-for-big-brain-2.36.1.tgz",
"integrity": "sha512-yFXmfsH/9TwBlnelaG1HmP/wR0lMfwsRUh5QOdzVjvoAUARi3W3R3QrlnFJ5+XJzU3M+9f45DlQMzcfRWIof5w=="
"version": "2.36.2",
"resolved": "https://registry.npmjs.org/@generative-music/piece-420hz-gamma-waves-for-big-brain/-/piece-420hz-gamma-waves-for-big-brain-2.36.2.tgz",
"integrity": "sha512-8AeB6CZ2PtWWejyRrA3qLxQUCcRjsKhKM7B6Vyy19kwq9OXwd4zysX7RhcmDuiqahJXY4L8WD6h6L7y/wdlyTg=="
},
"@generative-music/piece-a-viable-system": {
"version": "2.36.0",

View File

@@ -8,7 +8,7 @@
"start": "webpack-dev-server",
"start-production": "cross-env NODE_ENV=production webpack-dev-server --config webpack.prod.config.js",
"build": "cross-env NODE_ENV=production webpack-cli --mode production --config webpack.prod.config.js",
"predeploy": "npm run lint && npm run build",
"predeploy": "npm run lint && env SAMPLE_FILE_HOST=//samples.alexbainter.com npm run build",
"deploy:staging": "npm run predeploy && node node_scripts/deploy.js",
"deploy:production": "npm run predeploy && node node_scripts/deploy.js -p",
"lint": "eslint . --ext .js,.jsx",
@@ -64,7 +64,7 @@
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@generative-music/piece-420hz-gamma-waves-for-big-brain": "^2.36.1",
"@generative-music/piece-420hz-gamma-waves-for-big-brain": "^2.36.2",
"@generative-music/piece-a-viable-system": "^2.36.0",
"@generative-music/piece-above-the-rain": "^2.36.0",
"@generative-music/piece-agua-ravine": "^2.36.0",

View File

@@ -4,7 +4,6 @@ import './credits.scss';
const supporters = [
'theunis',
'Lisa Sieverts',
'Casper Lourens',
'James',
'Anton Mironov',
'Price Comstock',

View File

@@ -6,6 +6,7 @@ const { R_OK } = require('fs').constants;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const { EnvironmentPlugin } = require('webpack');
const adjacentSamplePath = path.resolve('../samples.generative.fm/public');
@@ -80,6 +81,9 @@ const makeConfig = alias => ({
template: './index.template.html',
}),
new CleanWebpackPlugin(['dist']),
new EnvironmentPlugin({
SAMPLE_FILE_HOST: '//localhost:6969',
}),
],
});
@@ -107,8 +111,9 @@ const checkSamplesPromise = fs.access(adjacentSamplePath, R_OK).catch(() => {
log('Then, run this script again.');
});
const configPromise = Promise.all([aliasPromise, checkSamplesPromise]).then(
([alias]) => makeConfig(alias)
);
const configPromise = Promise.all([
aliasPromise,
checkSamplesPromise,
]).then(([alias]) => makeConfig(alias));
module.exports = configPromise;