From d918457b86fd5f7ac8ef5342527247e5c003ebc6 Mon Sep 17 00:00:00 2001 From: Veerle van Leemput Date: Wed, 29 May 2024 08:13:17 +0200 Subject: [PATCH] bump version and add NEWS entry --- DESCRIPTION | 2 +- NEWS.md | 5 +++++ man/progress.Rd | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4a87386e..1105e647 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: shinyMobile Type: Package Title: Mobile Ready 'shiny' Apps with Standalone Capabilities -Version: 2.0.0 +Version: 2.0.1 Authors@R: c( person("David", "Granjon", email = "dgranjon@ymail.com", role = c("aut", "cre")), person("Veerle", "van Leemput", email = "veerle@hypebright.nl", role = "aut"), diff --git a/NEWS.md b/NEWS.md index e865f536..26bdf940 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# shinyMobile 2.0.1 +## Bug fixes and improvements +- Change appearance of PWA install button: center text and add close button. +- Fix #262: add infinite class to `f7Progress` when value is `NULL`. + # shinyMobile 2.0.0 ## Major change - Update Framework7 from 5.7.14 to 8.3.3 diff --git a/man/progress.Rd b/man/progress.Rd index 52d2c074..77c6b337 100644 --- a/man/progress.Rd +++ b/man/progress.Rd @@ -34,6 +34,7 @@ app <- shinyApp( title = "Update Progress", f7SingleLayout( navbar = f7Navbar(title = "f7Progress"), + f7BlockTitle("Progress with value"), f7Block( f7Progress(id = "pg1", value = 10, color = "blue") ), @@ -44,6 +45,10 @@ app <- shinyApp( min = 0, value = 50, scale = TRUE + ), + f7BlockTitle("Infinite progress"), + f7Block( + f7Progress(id = "pg2", value = NULL, color = "red") ) ) ),