Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hrbrmstr committed Aug 5, 2015
1 parent caf2a22 commit 882a905
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: taucharts
Title: Create Interactive Charts with the JavaScript 'TauCharts' Library
Version: 0.3.0
Version: 0.3.1
Authors@R: c(
person("Bob", "Rudis", email = "[email protected]", role = c("aut", "cre")),
person("Kent", "Russell", email = "[email protected]", role = c("aut", "ctb")),
Expand All @@ -11,7 +11,7 @@ Authors@R: c(
)
Maintainer: Bob Rudis <[email protected]>
Description: taucharts is an R htmlwidget interface to the TauCharts javascript library
Depends: R (>= 3.2.0)
Depends: R (>= 3.0.0)
License: MIT + file LICENSE
Suggests: testthat, ggplot2, dplyr, tidyr, shiny
Imports: htmlwidgets, htmltools, magrittr, RColorBrewer, ggthemes
2 changes: 1 addition & 1 deletion R/shiny.r
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ run_tau_app <- function(app_name=NULL) {
} else {

app_dir <- sprintf("%s/shinyapps/%s", pkg_dir, app_name)
if (dir.exists(app_dir)) {
if (file.exists(app_dir)) {
message(paste0("Running shiny app [", app_name, "] from:\n ", app_dir))
shiny::runApp(app_dir)
} else {
Expand Down
1 change: 1 addition & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ The following datasets are included:

### News

- Version 0.3.1 released : removed R 3.2.0 dependency (removed the dependent code)
- Version 0.3.0 released : color palettes galore!
- Version 0.3.0.9000 released : `?tau_add_css_rule` (add CSS rules to a chart)
- Version 0.2.6.9000 released : `?tau_tasks` (add JavaScript to a chart)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The following datasets are included:

### News

- Version 0.3.1 released : removed R 3.2.0 dependency (removed the dependent code)
- Version 0.3.0 released : color palettes galore!
- Version 0.3.0.9000 released : `?tau_add_css_rule` (add CSS rules to a chart)
- Version 0.2.6.9000 released : `?tau_tasks` (add JavaScript to a chart)
Expand All @@ -74,7 +75,7 @@ library(taucharts)

# current verison
packageVersion("taucharts")
#> [1] '0.3.0'
#> [1] '0.3.1'
```

### Test Results
Expand All @@ -84,7 +85,7 @@ library(taucharts)
library(testthat)

date()
#> [1] "Wed Aug 5 15:13:17 2015"
#> [1] "Wed Aug 5 16:03:17 2015"

test_dir("tests/")
#> testthat results ========================================================================================================
Expand Down

0 comments on commit 882a905

Please sign in to comment.