Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

notepat-remote: silent bootstrap + noboot=1 live URL

Bootstrap HTML (offline-bundle's data: URI shell) switches to a
black background with the status <pre> hidden — no more green
'booting notepat-remote…' flash before jweb navigates online.

Live URL picks up \`&noboot=1\` which the boot-canvas shim in
netlify/functions/index.mjs already honors: when set it sets
c.style.display='none' and returns a no-op acBootCanvas. Removes the
VHS/spring boot animation that was jarring at M4L device size.

+6 -4
+6 -4
oven/bundler.mjs
··· 1028 1028 // `goonline` message); on failure it emits `ready` and lets the chunk 1029 1029 // messages reassemble the embedded offline bundle. 1030 1030 return `<!DOCTYPE html> 1031 - <html lang="en"><head><meta charset="utf-8"><title>${title} · loading</title> 1032 - <style>html,body{margin:0;padding:0;width:100%;height:100%;background:#0e1012;color:#4f9;font:12px -apple-system,monospace;overflow:hidden}pre{margin:0;padding:10px 12px;white-space:pre-wrap;word-break:break-all}</style> 1033 - </head><body><pre id="s">booting ${title}…</pre><script> 1031 + <html lang="en"><head><meta charset="utf-8"><title>${title}</title> 1032 + <style>html,body{margin:0;padding:0;width:100%;height:100%;background:#000;overflow:hidden}pre{display:none}</style> 1033 + </head><body><pre id="s"></pre><script> 1034 1034 (function(){ 1035 1035 var el=document.getElementById("s"); 1036 1036 function log(m){if(el)el.textContent=(el.textContent+"\\n"+m).slice(-3000);try{if(window.max&&window.max.outlet)window.max.outlet("log",String(m).slice(0,900));}catch(_){}} ··· 1069 1069 const W = 150, H = 169; 1070 1070 // Cache-bust the live URL with the git commit so jweb/service-worker 1071 1071 // caches can't keep an older piece pinned after a lith deploy. 1072 + // `noboot=1` hides the boot-canvas VHS animation entirely — tiny 1073 + // M4L device panel looks wrong with it running. 1072 1074 const liveUrl = "https://aesthetic.computer/" + pieceName + 1073 - "?daw=1&nogap=1&density=1&v=" + GIT_COMMIT; 1075 + "?daw=1&nogap=1&density=1&noboot=1&v=" + GIT_COMMIT; 1074 1076 // presentation_rect gets a +1 on each axis so jweb content bleeds 1075 1077 // 1px past the visible device rect — this is the well-known Max 1076 1078 // quirk fix (same as the generic instrument patcher) for hiding
system/public/m4l/notepat.com.amxd

This is a binary file and will not be displayed.