Changelog
Source:NEWS.md
shinylive 0.3.0
Updated default shinylive assets to v0.9.1. (#120, #129, #135)
Resources are now built relative to Quarto project root. (#130)
In CI and other automated workflow settings the
SHINYLIVE_WASM_PACKAGESenvironment variable can now be used to control whether WebAssembly R package binaries are bundled with the exported shinylive app, in addition to thewasm_packagesargument of theexport()function. (#116)shinylive now avoids bundling WebAssembly R package dependencies listed only in the
LinkingTosection of required packages. With this change dependencies that are only required at build time are no longer included as part of the exported WebAssembly asset bundle. This reduces the total static asset size and improves the loading time of affected shinylive apps. (#115)shinylive now supports adding files in virtual subdirectories in
shinylive-rapps embedded in Quarto documents. For example,## file: R/load_data.Rin ashinylive-rchunk followed by theload_data.Rcode will create a fileload_data.Rin theRsubdirectory of the exported app. (#119)
shinylive 0.2.0
CRAN release: 2024-07-19
shinylive now uses shinylive web assets v0.5.0 by default, which bundles webR 0.4.0 with R 4.4.1. This update brings improved keyboard shortcuts for R users in the Shinylive editor, the ability to export a custom library of R packages with the exported app, and a few improvements to the Quarto integration. (#108)
export()gains anassets_versionargument to choose the version of the Shinylive web assets to be used with the exported app. This is primarily useful for testing new versions of the Shinylive assets before they’re officially released via a package update. In CI and other automated workflow settings, theSHINYLIVE_ASSETS_VERSIONenvironment variable can be used to set the assets version. (#91)-
export()gainstemplate_paramsandtemplate_dirarguments to control the template HTML files used in the export, allowing users to partially or completely customize the exported HTML. The export template is provided by the shinylive assets and may change from release-to-release. Useassets_info()to locate installed shinylive assets; the template files for a given release are in theexport_templatedirectory of the release. (#96)-
template_paramstakes a list of parameters to be interpolated into the template. The default template includetitle(the title for the page with the exported app),include_in_head(HTML added to the<head>of the page), andinclude_before_body(HTML added just after<body>) andinclude_after_body(HTML added just after</body>). -
template_diris the directory containing the template files. The default is theexport_templatedirectory of the shinylive assets being used for the export. Useassets_info()to locate installed shinylive assets where you can find the default template files.
-
shinylive now uses cli for console printing. Console output can be suppressed via the global R option by calling
options(shinylive.quiet = TRUE). (#104)export()andassets_info()gain aquietargument. Inexport(),quietreplaces the now-deprecatedverboseoption, which continues to work with a warning. (#104)