Skip to content

Commit e434642

Browse files
committed
v1.5.2
1 parent 9b28110 commit e434642

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: datamods
22
Title: Modules to Import and Manipulate Data in 'Shiny'
3-
Version: 1.5.1.9100
3+
Version: 1.5.2
44
Authors@R:
55
c(person(given = "Victor",
66
family = "Perrier",

NEWS.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# datamods 1.5.2
22

33
* `import_file_ui`: back to old parameters layout inside a dropdown button and new argument to switch to inline layout.
4+
* `edit_data_server`: allow to use reactive function for reactable_options.
5+
* cut variable module (`cut_variable_ui`/`cut_variable_server`): allow to select fixed breaks.
46

57

68
# datamods 1.5.1

README.Rmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ knitr::opts_chunk$set(
1818
> Shiny modules to import and manipulate data into an application or addin.
1919
2020
<!-- badges: start -->
21-
[![version](http://www.r-pkg.org/badges/version/datamods)](https://CRAN.R-project.org/package=datamods)
22-
[![codecov](https://app.codecov.io/gh/dreamRs/datamods/branch/master/graphs/badge.svg)](https://app.codecov.io/gh/dreamRs/datamods)
21+
[![CRAN status](https://www.r-pkg.org/badges/version/datamods)](https://CRAN.R-project.org/package=datamods)
2322
[![cranlogs](https://cranlogs.r-pkg.org/badges/datamods)](https://cran.r-project.org/package=datamods)
2423
[![R-CMD-check](https://github.com/dreamRs/datamods/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/dreamRs/datamods/actions/workflows/R-CMD-check.yaml)
2524
<!-- badges: end -->

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
99
<!-- badges: start -->
1010

11-
[![version](http://www.r-pkg.org/badges/version/datamods)](https://CRAN.R-project.org/package=datamods)
12-
[![codecov](https://app.codecov.io/gh/dreamRs/datamods/branch/master/graphs/badge.svg)](https://app.codecov.io/gh/dreamRs/datamods)
11+
[![CRAN
12+
status](https://www.r-pkg.org/badges/version/datamods)](https://CRAN.R-project.org/package=datamods)
1313
[![cranlogs](https://cranlogs.r-pkg.org/badges/datamods)](https://cran.r-project.org/package=datamods)
1414
[![R-CMD-check](https://github.com/dreamRs/datamods/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/dreamRs/datamods/actions/workflows/R-CMD-check.yaml)
1515
<!-- badges: end -->

cran-comments.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Test environments
2-
* local R installation, R 4.3.2
3-
* ubuntu 20.04, Windows 10, macOS (on GitHub Actions), R 4.3.2
2+
* local R installation, R 4.4.1
3+
* ubuntu 22.04, Windows 10, macOS (on GitHub Actions), R 4.4.1
44
* win-builder (devel)
55

66
## R CMD check results

examples/from-file.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ui <- fluidPage(
1313
import_file_ui(
1414
id = "myid",
1515
file_extensions = c(".csv", ".txt", ".xls", ".xlsx", ".json"),
16-
layout_params = "inline" # or "dropdown"s
16+
layout_params = "inline" # or "dropdown"
1717
)
1818
),
1919
column(

man/import-file.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)