├── .Rbuildignore ├── .github ├── .gitignore ├── FUNDING.yml └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── env.R ├── ntfy-package.R ├── ntfy.R └── tags.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── cran-comments.md ├── data-raw ├── emojis.js └── tags.R ├── data ├── emoji.rda └── tags.rda ├── man ├── emoji.Rd ├── figures │ ├── logo.png │ ├── notification1.png │ └── notification2.png ├── ntfy-package.Rd ├── ntfy_done.Rd ├── ntfy_history.Rd ├── ntfy_send.Rd ├── ntfy_topic.Rd ├── show_emoji.Rd └── tags.Rd └── tests ├── testthat.R └── testthat ├── _snaps ├── env.md └── ntfy.md ├── helpers.R ├── test-env.R └── test-ntfy.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: ntfy authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/R/env.R -------------------------------------------------------------------------------- /R/ntfy-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/R/ntfy-package.R -------------------------------------------------------------------------------- /R/ntfy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/R/ntfy.R -------------------------------------------------------------------------------- /R/tags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/R/tags.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/data-raw/emojis.js -------------------------------------------------------------------------------- /data-raw/tags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/data-raw/tags.R -------------------------------------------------------------------------------- /data/emoji.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/data/emoji.rda -------------------------------------------------------------------------------- /data/tags.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/data/tags.rda -------------------------------------------------------------------------------- /man/emoji.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/emoji.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/notification1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/figures/notification1.png -------------------------------------------------------------------------------- /man/figures/notification2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/figures/notification2.png -------------------------------------------------------------------------------- /man/ntfy-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/ntfy-package.Rd -------------------------------------------------------------------------------- /man/ntfy_done.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/ntfy_done.Rd -------------------------------------------------------------------------------- /man/ntfy_history.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/ntfy_history.Rd -------------------------------------------------------------------------------- /man/ntfy_send.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/ntfy_send.Rd -------------------------------------------------------------------------------- /man/ntfy_topic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/ntfy_topic.Rd -------------------------------------------------------------------------------- /man/show_emoji.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/show_emoji.Rd -------------------------------------------------------------------------------- /man/tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/man/tags.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat/_snaps/env.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ntfy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat/_snaps/ntfy.md -------------------------------------------------------------------------------- /tests/testthat/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat/helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat/test-env.R -------------------------------------------------------------------------------- /tests/testthat/test-ntfy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonocarroll/ntfy/HEAD/tests/testthat/test-ntfy.R --------------------------------------------------------------------------------