Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.0 #136

Merged
merged 10 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@
^CRAN-SUBMISSION$
^examples$
^\.Rproj\.user$
^venv$
^.venv$
^_dev$
^node_modules$
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ local/quarto/*_files/
local/quarto/*.js
local/quarto/_extensions/
.Rproj.user
venv/
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: shinylive
Title: Run 'shiny' Applications in the Browser
Version: 0.2.0.9000
Version: 0.3.0
Authors@R: c(
person("Barret", "Schloerke", , "barret@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9986-114X")),
Expand Down
8 changes: 5 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# shinylive (development version)
# shinylive 0.3.0

* Updated default shinylive assets to [v0.9.0](https://github.com/posit-dev/shinylive/releases/tag/v0.9.0). (#120, #129, #135)
* Updated default shinylive assets to [v0.9.1](https://github.com/posit-dev/shinylive/releases/tag/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_PACKAGES` environment variable can now be used to control whether WebAssembly R package binaries are bundled with the exported shinylive app, in addition to the `wasm_packages` argument of the `export()` function. (#116)

* shinylive now avoids bundling WebAssembly R package dependencies listed only in the `LinkingTo` section 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-r` apps emebedded in Quarto documents. For example, `## file: R/load_data.R` in a `shinylive-r` chunk followed by the `load_data.R` code will create a file `load_data.R` in the `R` subdirectory of the exported app. (#119)
* shinylive now supports adding files in virtual subdirectories in `shinylive-r` apps embedded in Quarto documents. For example, `## file: R/load_data.R` in a `shinylive-r` chunk followed by the `load_data.R` code will create a file `load_data.R` in the `R` subdirectory of the exported app. (#119)

# shinylive 0.2.0

Expand All @@ -27,7 +27,9 @@
# shinylive 0.1.1

* Bump shinylive assets dependency to 0.2.3. (#38)

* Use `{httpuv}` to serve static folder instead of plumber. (#40)

* Use `{httr2}` to download assets from GitHub releases. (@dgkf #30, #39)

# shinylive 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion R/version.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is the version of the Shinylive assets to use.
SHINYLIVE_ASSETS_VERSION <- "0.9.0"
SHINYLIVE_ASSETS_VERSION <- "0.9.1"
SHINYLIVE_R_VERSION <- as.character(utils::packageVersion("shinylive"))
WEBR_R_VERSION <- "4.4.1"
10 changes: 0 additions & 10 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
## Comments

#### 2024-07-19

Some bug fixes and new features.

Please let me know if I can provide any more information.

Thank you,
Barret


## R CMD check results

0 errors | 0 warnings | 0 notes
Expand Down