Skip to content

Commit

Permalink
Correct chaos-stratus export. Set version to 1.3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Feb 12, 2025
1 parent b560398 commit f5f110d
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 92 deletions.
178 changes: 89 additions & 89 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fausteditor",
"private": true,
"version": "1.3.4",
"version": "1.3.5",
"description": "A simple Faust editor for the web",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/exportUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function updateQrCode(sha, div) {
// Check the different possible targets
if (arch === "pwa" || arch === "pwa-poly") {
target = "index.html";
} else if (plat === "chaos-stratus") {
} else if (plat === "chaos-stratus" && arch === "effect-installer") {
target = "installer.sh"
} else if (plat === "android") {
target = "binary.apk";
Expand Down
2 changes: 1 addition & 1 deletion src/faustlive.js
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ window.addEventListener('touchstart', function () {

// Main entry point, called when libfaust.js has finished to load
function init() {
console.log('FaustEditor: version 1.3.4');
console.log('FaustEditor: version 1.3.5');

// Try to load code from current URL
configureEditorFromUrlParams();
Expand Down

0 comments on commit f5f110d

Please sign in to comment.