Skip to content

Commit 71d73a0

Browse files
committed
Change version number to 0.1.0
1 parent 429a913 commit 71d73a0

File tree

6 files changed

+22
-31
lines changed

6 files changed

+22
-31
lines changed

DESCRIPTION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Package: fieldactivity
22
Title: An app for keeping track of field activity
3-
Version: 0.0.0.9000
3+
Version: 0.1.0
44
Authors@R: person('Otto', 'Kuusela', email = 'otto.kuusela@helsinki.fi', role = c('cre', 'aut'))
55
Description: An app for keeping track of field activity in the Field
66
Observatory project. Built using Shiny, the application allows farmers to
77
enter information about common farming events like tillage, sowing and
8-
harvest. These event data are stored in json files, which mostly follow the
8+
harvest. These event data are stored in .json files, which mostly follow the
99
ICASA standards for agricultural data.
1010
License: MIT + file LICENSE
1111
Imports:
@@ -23,14 +23,14 @@ Imports:
2323
processx,
2424
shiny (>= 1.6.0),
2525
shinyjs,
26-
shinymanager,
26+
shinymanager (>= 1.0.400),
2727
stringr,
2828
tools
2929
Encoding: UTF-8
3030
LazyData: true
3131
RoxygenNote: 7.1.1
32-
URL: https://github.com/Ottis1/fo_management_data_input/
33-
BugReports: https://github.com/Ottis1/fo_management_data_input/issues
32+
URL: https://github.com/Ottis1/fieldactivity
33+
BugReports: https://github.com/Ottis1/fieldactivity/issues
3434
Suggests:
3535
spelling,
3636
testthat (>= 3.0.0)

README.Rmd

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@ knitr::opts_chunk$set(
1818
<!-- badges: start -->
1919
<!-- badges: end -->
2020

21-
This is an application with the purpose of allowing farmers to enter information about management events. This information could be harvest yields or type of tillage performed, for example. The app is a part of the [Field Observatory](https://www.fieldobservatory.org) project.
22-
23-
The app produces a .json file based on the given data. These files largely
24-
follow the ICASA standard for variables.
25-
26-
This app employs the excellent [Shiny](http://shiny.rstudio.com/) package and the [Golem](https://thinkr-open.github.io/golem/) framework for developing Shiny applications.
21+
An app for keeping track of field activity in the [Field Observatory](https://www.fieldobservatory.org) project. Built using [Shiny](http://shiny.rstudio.com/) and [Golem](https://thinkr-open.github.io/golem/), the application allows farmers to enter information about common farming events like tillage, sowing and harvest. These event data are stored in .json files, which mostly follow the ICASA standards for agricultural data.
2722

2823
## Installation
2924

@@ -38,14 +33,14 @@ You can install the app from [GitHub](https://github.com/) with:
3833

3934
``` r
4035
# install.packages("devtools")
41-
devtools::install_github("Ottis1/fo_management_data_input")
36+
devtools::install_github("Ottis1/fieldactivity")
4237
```
4338
## Example
4439

4540
To run the app, call run_app with a named argument to supply the folder to store the generated files:
46-
```{r example}
41+
```{r example, eval=FALSE}
4742
library(fieldactivity)
48-
#run_app(json_file_path = "~/my_json_file_folder")
43+
run_app(json_file_path = "~/my_json_file_folder")
4944
```
5045

5146
<!-- What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so:

README.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,14 @@
77

88
<!-- badges: end -->
99

10-
This is an application with the purpose of allowing farmers to enter
11-
information about management events. This information could be harvest
12-
yields or type of tillage performed, for example. The app is a part of
13-
the [Field Observatory](https://www.fieldobservatory.org) project.
14-
15-
The app produces a .json file based on the given data. These files
16-
largely follow the ICASA standard for variables.
17-
18-
This app employs the excellent [Shiny](http://shiny.rstudio.com/)
19-
package and the [Golem](https://thinkr-open.github.io/golem/) framework
20-
for developing Shiny
21-
applications.
10+
An app for keeping track of field activity in the [Field
11+
Observatory](https://www.fieldobservatory.org) project. Built using
12+
[Shiny](http://shiny.rstudio.com/) and
13+
[Golem](https://thinkr-open.github.io/golem/), the application allows
14+
farmers to enter information about common farming events like tillage,
15+
sowing and harvest. These event data are stored in .json files, which
16+
mostly follow the ICASA standards for agricultural
17+
data.
2218

2319
## Installation
2420

@@ -33,7 +29,7 @@ You can install the app from [GitHub](https://github.com/) with:
3329

3430
``` r
3531
# install.packages("devtools")
36-
devtools::install_github("Ottis1/fo_management_data_input")
32+
devtools::install_github("Ottis1/fieldactivity")
3733
```
3834

3935
## Example

dev/01_start.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ golem::fill_desc(
2424
pkg_description = "An app for keeping track of field activity in the Field
2525
Observatory project. Built using Shiny, the application allows farmers to
2626
enter information about common farming events like tillage, sowing and
27-
harvest. These event data are stored in json files, which mostly follow the
27+
harvest. These event data are stored in .json files, which mostly follow the
2828
ICASA standards for agricultural data.", # The Description of the package containing the App
2929
author_first_name = "Otto", # Your First Name
3030
author_last_name = "Kuusela", # Your Last Name
3131
author_email = "otto.kuusela@helsinki.fi", # Your Email
32-
repo_url = "https://github.com/Ottis1/fo_management_data_input/" # The URL of the GitHub Repo (optional)
32+
repo_url = "https://github.com/Ottis1/fieldactivity" # The URL of the GitHub Repo (optional)
3333
)
3434

3535
## Set {golem} options ----

dev/02_dev.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
## Dependencies ----
1717
## Add one line by package you want to add as dependency
18-
usethis::use_package("shinymanager")
18+
usethis::use_package("shinymanager", min_version = TRUE)
1919
usethis::use_package("bslib")
2020
usethis::use_package("jsonlite")
2121
usethis::use_package("shinyjs")

inst/golem-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default:
22
golem_name: fieldactivity
3-
golem_version: 0.0.0.9000
3+
golem_version: 0.1.0
44
app_prod: no
55
production:
66
app_prod: yes

0 commit comments

Comments
 (0)