Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
54e7e132fb
2 changed files with 4 additions and 4 deletions
|
@ -136,11 +136,11 @@ jobs:
|
||||||
if [[ "${APP_VERSION}" = *"beta"* ]]; then
|
if [[ "${APP_VERSION}" = *"beta"* ]]; then
|
||||||
echo $'**Beta Release**\nA full changelog is unavailable, but you can view the branch comparison [here](https://github.com/ciderapp/cider/compare/stable...main).\nThese builds are considered bleeding edge, expect bugs and please do not use this as a representation of the fu ll app.\nOur full support disclaimer can be found [here](https://docs.cider.sh/support/disclaimer#support-nightly-beta-releases).' > release-notes.md
|
echo $'**Beta Release**\nA full changelog is unavailable, but you can view the branch comparison [here](https://github.com/ciderapp/cider/compare/stable...main).\nThese builds are considered bleeding edge, expect bugs and please do not use this as a representation of the fu ll app.\nOur full support disclaimer can be found [here](https://docs.cider.sh/support/disclaimer#support-nightly-beta-releases).' > release-notes.md
|
||||||
gh release create "v${APP_VERSION}" --prerelease --title "Cider Version ${APP_VERSION} (${CIRCLE_BRANCH})" --notes-file release-notes.md -R ciderapp/cider-releases ~/Cider/dist/artifacts/*.deb ~/Cider/dist/artifacts/*.AppImage ~/Cider/dist/artifacts/*.snap ~/Cider/dist/artifacts/*.exe ~/Cider/dist/artifacts/*.yml ~/Cider/dist/artifacts/*.blockmap
|
gh release create "v${APP_VERSION}" --prerelease --title "Cider Version ${APP_VERSION} (${CIRCLE_BRANCH})" --notes-file release-notes.md -R ciderapp/cider-releases ~/Cider/dist/artifacts/*.deb ~/Cider/dist/artifacts/*.AppImage ~/Cider/dist/artifacts/*.snap ~/Cider/dist/artifacts/*.exe ~/Cider/dist/artifacts/*.yml ~/Cider/dist/artifacts/*.blockmap
|
||||||
curl http://129.146.42.180/api/v1/github/sync/main
|
curl -s http://129.146.42.180/api/v1/github/sync/main
|
||||||
else
|
else
|
||||||
echo $'**Stable Release**\nA full changelog is unavailable, but you can view the branch comparison [here](https://github.com/ciderapp/cider/compare/stable...main).\nThese are the most stable builds we can provide. If you experience any issues, please report them [here](https://github.com/ciderapp/cider/issues/new).\nOur full support disclaimer can be found [here](https://docs.cider.sh/support/disclaimer#support-releases).' > release-notes.md
|
echo $'**Stable Release**\nA full changelog is unavailable, but you can view the branch comparison [here](https://github.com/ciderapp/cider/compare/stable...main).\nThese are the most stable builds we can provide. If you experience any issues, please report them [here](https://github.com/ciderapp/cider/issues/new).\nOur full support disclaimer can be found [here](https://docs.cider.sh/support/disclaimer#support-releases).' > release-notes.md
|
||||||
gh release create "v${APP_VERSION}" --title "Cider Version ${APP_VERSION} (${CIRCLE_BRANCH})" --notes-file release-notes.md -R ciderapp/cider-releases ~/Cider/dist/artifacts/*.deb ~/Cider/dist/artifacts/*.AppImage ~/Cider/dist/artifacts/*.snap ~/Cider/dist/artifacts/*.exe ~/Cider/dist/artifacts/*.yml ~/Cider/dist/artifacts/*.blockmap
|
gh release create "v${APP_VERSION}" --title "Cider Version ${APP_VERSION} (${CIRCLE_BRANCH})" --notes-file release-notes.md -R ciderapp/cider-releases ~/Cider/dist/artifacts/*.deb ~/Cider/dist/artifacts/*.AppImage ~/Cider/dist/artifacts/*.snap ~/Cider/dist/artifacts/*.exe ~/Cider/dist/artifacts/*.yml ~/Cider/dist/artifacts/*.blockmap
|
||||||
curl http://129.146.42.180/api/v1/github/sync/stable
|
curl -s http://129.146.42.180/api/v1/github/sync/stable
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
# Orchestrate our job run sequence
|
# Orchestrate our job run sequence
|
||||||
|
|
|
@ -972,8 +972,6 @@ const CiderAudio = {
|
||||||
MusicKit.getInstance().pause(); // Pause first
|
MusicKit.getInstance().pause(); // Pause first
|
||||||
}
|
}
|
||||||
|
|
||||||
CiderAudioRenderer.off(); // Clean up IMMEDIATELY
|
|
||||||
|
|
||||||
CiderAudio.audioNodes.optimizedNode = CiderAudio.context.createConvolver();
|
CiderAudio.audioNodes.optimizedNode = CiderAudio.context.createConvolver();
|
||||||
CiderAudio.audioNodes.optimizedNode.normalize = false;
|
CiderAudio.audioNodes.optimizedNode.normalize = false;
|
||||||
|
|
||||||
|
@ -981,6 +979,8 @@ const CiderAudio = {
|
||||||
CiderAudio.audioNodes.optimizedNode.buffer = res;
|
CiderAudio.audioNodes.optimizedNode.buffer = res;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
CiderAudioRenderer.off(); // Clean up IMMEDIATELY
|
||||||
|
|
||||||
// Load the sucker up
|
// Load the sucker up
|
||||||
|
|
||||||
CiderAudio.hierarchical_unloading();
|
CiderAudio.hierarchical_unloading();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue