From d043d75d2bf77580dfcdd8448c36949bd1454f07 Mon Sep 17 00:00:00 2001 From: Christophe Dervieux Date: Sat, 14 Jan 2017 19:24:54 +0100 Subject: [PATCH 1/2] make NEWS.md for compatibility with pkgdown --- NEWS | 35 ----------------------------------- NEWS.md | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 35 deletions(-) delete mode 100644 NEWS create mode 100644 NEWS.md diff --git a/NEWS b/NEWS deleted file mode 100644 index 75cd817..0000000 --- a/NEWS +++ /dev/null @@ -1,35 +0,0 @@ -Copyright © 2016 RTE Réseau de transport d’électricité - -Changes in version 0.5 (2017-XX-XX) - -NEW FEATURES: -* manipulateWidget can now be used in a R Markdown document with shiny runtime. Input controls are included in the final document so end users can play with their values directly. (contribution by JJ. Allaire) -* manipulateWidget has two new arguments .compare and .compareLayout to create a comparison interface. When .compare is set, two charts are outputed with some common and some individual input controls (see vignette). - - -Changes in version 0.4 (2016-12-16) - -BREAKING CHANGES: -* Function combineWidgets has been entirely rewritten and now produces a htmlwidget that can be included as is in documents or shiny applications. The general behavior is the same, but some parameters have changed - -NEW FEATURES: -* manipulateWidget() can now update an already rendered widget instead of overwriting it each time the user changes an input. This leads to better performance and user experience. Look at the documentation of manipulateWidget for further information. - -BUGFIXES: -* manipulateWidgets() now preserves the order of the initial value of select inputs. -* manipulateWidgets() now automatically finds the correct render and output functions. This solves in particular sizing problems. - -Changes in version 0.3 (2016-10-06) - -BREAKING CHANGES: -* add a file LICENSE and copyright to sources files - - -Changes in version 0.2 (2016-09-27) - -NEW FEATURES -* New functions mwUI and mwControlsUI have been added to let the user easily reuse the user interface generated by the package but with different server logic. -* User can now easily create group of inputs in function manipulate widget. In the UI, these inputs are grouped in a panel that can be collapsed/opened by clicking on its name. - -BUGFIXES: -* Many useless but worrying warning messages have been removed. diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..c038f48 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,37 @@ + + +# manipulateWidget 0.5.0.9000 (2017-XX-XX) + +## New Feature + +* `manipulateWidget()` can now be used in a R Markdown document with shiny runtime. Input controls are included in the final document so end users can play with their values directly. (contribution by JJ. Allaire) +* `manipulateWidget()` has two new arguments `.compare` and `.compareLayout` to create a comparison interface. When `.compare` is set, two charts are outputed with some common and some individual input controls (see vignette). + +# manipulateWidget 0.4 (2016-12-16) + +## Breaking changes + +* Function `combineWidgets()` has been entirely rewritten and now produces a htmlwidget that can be included as is in documents or shiny applications. The general behavior is the same, but some parameters have changed + +## New features + +* `manipulateWidget()` can now update an already rendered widget instead of overwriting it each time the user changes an input. This leads to better performance and user experience. Look at the documentation of manipulateWidget for further information. + +## Bug fixes +* `manipulateWidget()` now preserves the order of the initial value of select inputs. +* `manipulateWidget()` now automatically finds the correct render and output functions. This solves in particular sizing problems. + +# manipulateWidget 0.3 (2016-10-06) + +* add a file LICENSE and copyright to sources files + +# manipulateWidget 0.2 (2016-09-27) + +## New features + +* New functions `mwUI()` and `mwControlsUI()` have been added to let the user easily reuse the user interface generated by the package but with different server logic. +* User can now easily create group of inputs in function manipulate widget. In the UI, these inputs are grouped in a panel that can be collapsed/opened by clicking on its name. + +## Bug fixes + +* Many useless but worrying warning messages have been removed. From c9b2f758470ecaf5e4f1164b4bc76ff3a9c4a4ae Mon Sep 17 00:00:00 2001 From: Christophe Dervieux Date: Sat, 14 Jan 2017 19:29:39 +0100 Subject: [PATCH 2/2] typo --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index c038f48..df07edf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,7 +2,7 @@ # manipulateWidget 0.5.0.9000 (2017-XX-XX) -## New Feature +## New Features * `manipulateWidget()` can now be used in a R Markdown document with shiny runtime. Input controls are included in the final document so end users can play with their values directly. (contribution by JJ. Allaire) * `manipulateWidget()` has two new arguments `.compare` and `.compareLayout` to create a comparison interface. When `.compare` is set, two charts are outputed with some common and some individual input controls (see vignette).