Skip to content

Commit c5bef1e

Browse files
authored
Merge pull request #67 from Swechhya/changes-for-0.4-release
Changes for 0.4.0 release
2 parents 6ad8c3c + f134c1b commit c5bef1e

22 files changed

+245
-45
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: excelR
22
Type: Package
33
Title: A Wrapper of the 'JavaScript' Library 'jExcel'
4-
Version: 0.3.1
4+
Version: 0.4.0
55
Authors@R: c(person("Swechhya", "Bista", email = "[email protected]",
66
role = c("aut", "cre")),
77
person("Kent", "Russell", role = c("ctb")),

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@
66

77
* remove parameter restriction for columns attribute
88

9-
* add feature to get selected data
9+
* add feature to get selected data and selected data boundary
1010

1111
* handle image url
1212

1313
* fix bug of numeric converting to factor after edit
1414

15+
* update jexcel and jsuites version
16+
17+
* fix test for latest R version breaking changes
18+
1519
# excelR 0.3.1
1620

1721
* fix bug when NA is present in data

R/comments.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
#' library(shiny)
1111
#' library(excelR)
1212
#' shinyApp(
13-
#' ui = fluidPage(excelOutput("table", height = 175), actionButton('comment', 'Set Comments to cell A1')),
13+
#' ui = fluidPage(excelOutput("table", height = 175),
14+
#' actionButton('comment', 'Set Comments to cell A1')),
1415
#' server = function(input, output, session) {
1516
#' output$table <- renderExcel(excelTable(data = head(iris)))
1617
#' observeEvent(input$comment,{
@@ -34,7 +35,8 @@ setComments <- function(tableId, cellId, comment) {
3435
#' library(shiny)
3536
#' library(excelR)
3637
#' shinyApp(
37-
#' ui = fluidPage(excelOutput("table", height = 175), actionButton('comment', 'Get Comments from cell A1')),
38+
#' ui = fluidPage(excelOutput("table", height = 175),
39+
#' actionButton('comment', 'Get Comments from cell A1')),
3840
#' server = function(input, output, session) {
3941
#' output$table <- renderExcel(excelTable(data = head(iris)))
4042
#' observeEvent(input$comment, {

docs/CODE_OF_CONDUCT.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/news/index.html

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/excelOutput.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/excelTable.html

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)