diff --git a/.Rbuildignore b/.Rbuildignore index 612e172..5d53a3b 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -18,3 +18,4 @@ ^pixi\.lock$ ^pixi\.toml$ ^pkg\.lock$ +^.Rd2pdf\d+$ diff --git a/.Rprofile b/.Rprofile index 8f96b59..250d7ef 100644 --- a/.Rprofile +++ b/.Rprofile @@ -28,7 +28,7 @@ if (interactive()) { build_docs <- \() {devtools::document()} local_check <- \() {devtools::check()} multi_check <- \() { - ch <<- "soon" + ch <<- rhub::rhub_check() ch } print_cran_comments <- \(ch) { diff --git a/.gitignore b/.gitignore index 2a9b3b5..19108cc 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ temp.* temp/ # pixi environments .pixi - +.Rd2pdf* # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/DESCRIPTION b/DESCRIPTION index 5d4a3e8..4d122ad 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: settingsSync Title: Rstudio Addin to Sync Settings and Keymaps -Version: 2.0.0-11 +Version: 2.0.0 Description: Rstudio Addin to sync settings, keymaps and keyboard shortcuts, using Google Drive. License: Apache License (== 2) diff --git a/NEWS.md b/NEWS.md index 3693bbf..78247d9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,3 @@ -# settingsSync 1.0.0 +# settingsSync 2.0.0 * Initial CRAN submission. diff --git a/cran-comments.md b/cran-comments.md index b26c6b7..858617d 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,70 +1,5 @@ -## Test environments -- R-hub windows-x86_64-devel (r-devel) -- R-hub ubuntu-gcc-release (r-release) -- R-hub fedora-clang-devel (r-devel) - ## R CMD check results -❯ On windows-x86_64-devel (r-devel) - checking CRAN incoming feasibility ... NOTE - Maintainer: 'notPlancha ' - - New submission - - Possibly misspelled words in DESCRIPTION: - Addin (3:16, 9:22) - Keymaps (3:43) - Rstudio (3:8, 9:14) - keymaps (9:46) - -> dev note: not misspelled - -❯ On windows-x86_64-devel (r-devel) - checking for non-standard things in the check directory ... NOTE - Found the following files/directories: - ''NULL'' - -> dev note: rhub thing https://github.com/r-hub/rhub/issues/560 - -❯ On windows-x86_64-devel (r-devel) - checking for detritus in the temp directory ... NOTE - Found the following files/directories: - 'lastMiKTeXException' - -> dev note: rhub bug https://github.com/r-hub/rhub/issues/503 - -❯ On ubuntu-gcc-release (r-release) - checking CRAN incoming feasibility ... [6s/27s] NOTE - Maintainer: ‘notPlancha ’ - - New submission - - Possibly misspelled words in DESCRIPTION: - Addin (3:16, 9:22) - keymaps (9:46) - Keymaps (3:43) - Rstudio (3:8, 9:14) - -> dev note: not misspelled - - -❯ On ubuntu-gcc-release (r-release), fedora-clang-devel (r-devel) - checking HTML version of manual ... NOTE - Skipping checking HTML validation: no command 'tidy' found - -> dev note: rhub bug https://github.com/r-hub/rhub/issues/548 - -❯ On fedora-clang-devel (r-devel) - checking CRAN incoming feasibility ... [6s/34s] NOTE - Maintainer: ‘notPlancha ’ - - New submission - - Possibly misspelled words in DESCRIPTION: - Addin (3:16, 9:22) - Keymaps (3:43) - Rstudio (3:8, 9:14) - keymaps (9:46) -> dev note: not misspelled +0 errors | 0 warnings | 1 note -0 errors ✔ | 0 warnings ✔ | 6 notes ✖ +* This is a new release. diff --git a/pixi.toml b/pixi.toml index 4b6ca5c..09a1d90 100644 --- a/pixi.toml +++ b/pixi.toml @@ -10,6 +10,7 @@ radian = "radian" up-dev = "python hook_scripts/up-dev-version.py" hook-test = "pre-commit run" push-no-hook = "git push --no-verify" +build-pdf = "R CMD Rd2pdf ./ --no-clean" [dependencies] pre-commit = ">=3.6.0,<3.7"