Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

Bust try-page mobile asset cache

+18 -7
+10 -2
system/public/aesthetic.computer/lib/try/shared-page.css
··· 303 303 color: var(--try-ink-soft); 304 304 } 305 305 306 - @media (max-width: 820px) { 306 + @media (max-width: 960px) { 307 307 .try-playground { 308 - grid-template-columns: minmax(0, 1fr); 308 + grid-template-columns: minmax(0, 1fr) !important; 309 + grid-auto-flow: row; 309 310 min-height: 0; 310 311 } 311 312 ··· 317 318 318 319 .try-preview-shell { 319 320 min-height: 0; 321 + } 322 + 323 + .try-editor-shell, 324 + .try-preview-shell, 325 + .try-doc-panel { 326 + grid-column: 1; 327 + width: 100%; 320 328 } 321 329 322 330 .try-editor-head,
+4 -1
system/public/aesthetic.computer/lib/try/shared-page.mjs
··· 1 1 const DEFAULT_MONACO_LOADER = 2 2 "https://cdn.jsdelivr.net/npm/monaco-editor@0.52.0/min/vs/loader.min.js"; 3 3 const DEFAULT_MONACO_BASE = "https://cdn.jsdelivr.net/npm/monaco-editor@0.52.0/min/vs"; 4 + const SHARED_TRY_ASSET_VERSION = "20260330-mobile-stack"; 4 5 5 6 const DEFAULT_THEME_VARS = { 6 7 light: { ··· 87 88 const link = document.createElement("link"); 88 89 link.id = "ac-try-shared-css"; 89 90 link.rel = "stylesheet"; 90 - link.href = new URL("./shared-page.css", import.meta.url).href; 91 + const cssUrl = new URL("./shared-page.css", import.meta.url); 92 + cssUrl.searchParams.set("v", SHARED_TRY_ASSET_VERSION); 93 + link.href = cssUrl.href; 91 94 document.head.appendChild(link); 92 95 } 93 96
+1 -1
system/public/l5.aesthetic.computer/app.mjs
··· 1 - import { createTryPage } from "../aesthetic.computer/lib/try/shared-page.mjs"; 1 + import { createTryPage } from "../aesthetic.computer/lib/try/shared-page.mjs?v=20260330-mobile-stack"; 2 2 3 3 const AC_ORIGIN = "https://aesthetic.computer"; 4 4
+1 -1
system/public/l5.aesthetic.computer/index.html
··· 10 10 </head> 11 11 <body> 12 12 <div id="try-page-root"></div> 13 - <script type="module" src="./app.mjs"></script> 13 + <script type="module" src="./app.mjs?v=20260330-mobile-stack"></script> 14 14 </body> 15 15 </html>
+1 -1
system/public/processing.aesthetic.computer/app.mjs
··· 1 - import { createTryPage } from "../aesthetic.computer/lib/try/shared-page.mjs"; 1 + import { createTryPage } from "../aesthetic.computer/lib/try/shared-page.mjs?v=20260330-mobile-stack"; 2 2 import { compileProcessingSourceForRuntime } from "../aesthetic.computer/lib/try/processing-transpile.mjs"; 3 3 4 4 const AC_ORIGIN = "https://aesthetic.computer";
+1 -1
system/public/processing.aesthetic.computer/index.html
··· 10 10 </head> 11 11 <body> 12 12 <div id="try-page-root"></div> 13 - <script type="module" src="./app.mjs"></script> 13 + <script type="module" src="./app.mjs?v=20260330-mobile-stack"></script> 14 14 </body> 15 15 </html>