Skip to content

Commit

Permalink
prepare for cran
Browse files Browse the repository at this point in the history
  • Loading branch information
pvictor committed May 3, 2022
1 parent 8e7ef62 commit 3e0e72d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: esquisse
Type: Package
Title: Explore and Visualize Your Data Interactively
Version: 1.1.0.9200
Version: 1.1.1
Authors@R: c(person("Fanny", "Meyer", role = c("aut")),
person("Victor", "Perrier", email = "victor.perrier@dreamrs.fr", role = c("aut", "cre")),
person("Ian", "Carroll", comment = "Faceting support", role = "ctb"),
Expand Down
5 changes: 3 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# esquisse (unreleased)
# esquisse 1.1.1

* Play/Pause button is back: it allow to set reactivity in "pause" when doing multiple changes, and so avoiding to render intermediate plots.
* New translations added:
+ spanish, activate with `set_i18n("es")`, thanks to [@drdsdaniel](https://github.com/drdsdaniel)
+ spanish, activate with `set_i18n("es")`, thanks to [@dnldelarosa](https://github.com/dnldelarosa)
+ albanian (updated), activate with `set_i18n("al")`, thanks to [@EGjika](https://github.com/EGjika)
+ portuguese, activate with `set_i18n("pt")`, thanks to [@mribeirodantas](https://github.com/mribeirodantas)

### Bug fixes

Expand Down
8 changes: 4 additions & 4 deletions R/esquisse-ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ esquisse_ui <- function(id,
class = "pull-right",
actionButton(
inputId = ns("settings"),
label = ph("gear-six", height = "2em"),
label = ph("gear-six", height = "2em", title = i18n("Display settings")),
class = "btn-sm",
title = i18n("Display settings")
),
actionButton(
inputId = ns("close"),
label = ph("x", height = "2em"),
label = ph("x", height = "2em", title = i18n("Close Window")),
class = "btn-sm",
title = i18n("Close Window")
)
Expand All @@ -61,13 +61,13 @@ esquisse_ui <- function(id,
class = "pull-left",
actionButton(
inputId = ns("launch_import_data"),
label = ph("database", height = "2em"),
label = ph("database", height = "2em", title = i18n("Import data")),
class = "btn-sm",
title = i18n("Import data")
),
actionButton(
inputId = ns("show_data"),
label = ph("table", height = "2em"),
label = ph("table", height = "2em", title = i18n("Show data")),
class = "btn-sm",
title = i18n("Show data")
)
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Test environments
* local R installation, R 4.1.2
* ubuntu 20.04, Windows 10, macOS (on GitHub Actions), R 4.1.2
* ubuntu 20.04, Windows 10, macOS (on GitHub Actions), R 4.2.0
* win-builder (devel)

## R CMD check results
Expand Down

0 comments on commit 3e0e72d

Please sign in to comment.