v3.5.0 #73
svdC1
announced in
Announcements
v3.5.0
#73
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This release makes the launcher run the container images that match the
installed version instead of always pulling
latest, so an install runs theimages built for it and any published version can be pinned. It also makes the
live demo installable as a PWA, adds an in-app cache reset, and fixes a set of
mobile, caching, and Modal deploy issues. It has no breaking changes
Added
Launcher→ From this release on, the launcher pulls and composes the<version>-tagged images matching the installed package rather thanlatest,so a
pip install mirumoji==X(forX >= 3.5.0) runs the images built forXand the launcher never drifts onto an incompatible
latest. AMIRUMOJI_VERSIONconfig variable and a
--versionflag onup/pull/render/modal deploypin any published version, checked against Docker Hub first so aversion with no published images fails early with a clear message (older,
pre-3.5.0 installs still pull
latest, since the version-pinning code onlyships from here on)
Launcher→mirumoji --versionprints the installed versionFrontend→ The live demo is now an installable PWA, so a visitor can addit to their home screen and see how the app behaves once installed. The app
also gained a
Reset App Dataaction (Dashboard → Advanced) thatunregisters the service worker and clears its caches, to recover from a stale
cached build
Fixed
Launcher→MODAL_FORCE_BUILDhad no effect onmirumoji modal deploy.The Modal SDK reads it from the local process environment when it builds the
derived host image, but the deploy exported only the Modal tokens, so setting
the variable never forced a rebuild and the host stayed on a stale cached image.
It is now exported for the deploy, so
mirumoji config set MODAL_FORCE_BUILD 1rebuilds the host image
Frontend→ Toasts were rendered under the notch on notched phones. Theynow inset off the safe area and clear it
Frontend→ The player's volume slider did nothing on iOS, where the mediavolume is read-only and owned by the hardware buttons, so it looked broken. It
is now hidden on iOS, leaving the mute toggle, which still works
Frontend→ The PWA could not be installed behind the Modal host's HTTPBasic Auth. The manifest link was fetched without credentials, so it and its
icons returned 401 and the browser saw no installable manifest, leaving no app
icon or install prompt. The manifest is now requested with credentials
Frontend→ A new build could be hidden behind a stale cached shell.Neither Nginx nor the Modal host set
Cache-Control, soindex.html, theservice worker, and the manifest could be served stale from the HTTP cache,
pinning old hashed assets. They are now served
no-cache(with hashed assetsmarked immutable), so a new version is picked up on the next load
This discussion was created from the release v3.5.0.
All reactions