Skip to content

Commit

Permalink
DataEditR v0.0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
DillonHammill committed Aug 6, 2020
1 parent 6cd9f22 commit e4fe275
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 17 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: DataEditR
Title: An Interactive Editor for Viewing, Entering & Editing Data
Version: 0.0.4
Version: 0.0.5
Date: 2020-07-30
Authors@R:
person(given = "Dillon",
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# DataEditR 0.0.5

* Fix row indices when rows are added or removed.
* Improve handling of duplicate row indices in case of accidental editing.

# DataEditR 0.0.4

* Add `col_readonly` argument to prevent users from editing values or column names of certain columns.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ citation("DataEditR")
#> To cite package 'DataEditR' in publications use:
#>
#> Dillon Hammill (2020). DataEditR: An Interactive Editor for Viewing,
#> Entering & Editing Data. R package version 0.0.4.
#> Entering & Editing Data. R package version 0.0.5.
#> https://github.com/DillonHammill/DataEditR
#>
#> A BibTeX entry for LaTeX users is
Expand All @@ -112,7 +112,7 @@ citation("DataEditR")
#> title = {DataEditR: An Interactive Editor for Viewing, Entering & Editing Data},
#> author = {Dillon Hammill},
#> year = {2020},
#> note = {R package version 0.0.4},
#> note = {R package version 0.0.5},
#> url = {https://github.com/DillonHammill/DataEditR},
#> }
```
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/CODE_OF_CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/DataEditR.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 1.5.1
pkgdown_sha: ~
articles:
DataEditR: DataEditR.html
last_built: 2020-07-31T04:05Z
last_built: 2020-08-06T01:33Z

2 changes: 1 addition & 1 deletion docs/reference/data_edit.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/DataEditR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ mtcars_new <- data_edit(mtcars,

### 6.1 Checkboxes

Checkboxes can be used to obtain TRUE or FALSE value inputs from users. The resulting data will have a value of 1 where TRUE was selected and NA for all other values.
Checkboxes can be used to obtain TRUE or FALSE value inputs from users. The resulting data will have a value of TRUE or NA based on user input.

```{r, eval = FALSE}
data_edit(mtcars,
Expand Down

0 comments on commit e4fe275

Please sign in to comment.