diff --git a/DESCRIPTION b/DESCRIPTION index 90d4fef7..4378896d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -64,7 +64,6 @@ Depends: Imports: assertthat, abind, - clisymbols, cli, fmesher, fishMod, diff --git a/R/mesh.R b/R/mesh.R index 0a071ed1..4b6086eb 100644 --- a/R/mesh.R +++ b/R/mesh.R @@ -207,12 +207,12 @@ binary_search_knots <- function(loc_xy, cat("cutoff =", pretty_cutoff, "| knots =", realized_knots) if (realized_knots > n_knots) { L <- m + 1 - cat(" |", clisymbols::symbol$arrow_down, "\n") + cat(" |", cli::symbol$arrow_down, "\n") } else if (realized_knots < n_knots) { R <- m - 1 - cat(" |", clisymbols::symbol$arrow_up, "\n") + cat(" |", cli::symbol$arrow_up, "\n") } else { - cat(" |", clisymbols::symbol$tick, "\n") + cat(" |", cli::symbol$tick, "\n") return(mesh) } } diff --git a/README.md b/README.md index 7147a42e..8e893844 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# sdmTMB +# sdmTMB > Spatial and spatiotemporal GLMMs with TMB diff --git a/header.md b/header.md index a2499511..d6766460 100644 --- a/header.md +++ b/header.md @@ -1,6 +1,6 @@ -# sdmTMB +# sdmTMB > Spatial and spatiotemporal GLMMs with TMB diff --git a/man/figures/logo-sdmTMB.png b/man/figures/logo.png similarity index 100% rename from man/figures/logo-sdmTMB.png rename to man/figures/logo.png diff --git a/pkgdown/favicon/apple-touch-icon.png b/pkgdown/favicon/apple-touch-icon.png new file mode 100644 index 00000000..6722bda1 Binary files /dev/null and b/pkgdown/favicon/apple-touch-icon.png differ diff --git a/pkgdown/favicon/favicon-96x96.png b/pkgdown/favicon/favicon-96x96.png new file mode 100644 index 00000000..dfc95836 Binary files /dev/null and b/pkgdown/favicon/favicon-96x96.png differ diff --git a/pkgdown/favicon/favicon.ico b/pkgdown/favicon/favicon.ico new file mode 100644 index 00000000..f0280701 Binary files /dev/null and b/pkgdown/favicon/favicon.ico differ diff --git a/pkgdown/favicon/favicon.svg b/pkgdown/favicon/favicon.svg new file mode 100644 index 00000000..23e20208 --- /dev/null +++ b/pkgdown/favicon/favicon.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/pkgdown/favicon/site.webmanifest b/pkgdown/favicon/site.webmanifest new file mode 100644 index 00000000..4ebda26b --- /dev/null +++ b/pkgdown/favicon/site.webmanifest @@ -0,0 +1,21 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file diff --git a/pkgdown/favicon/web-app-manifest-192x192.png b/pkgdown/favicon/web-app-manifest-192x192.png new file mode 100644 index 00000000..47b1e6b5 Binary files /dev/null and b/pkgdown/favicon/web-app-manifest-192x192.png differ diff --git a/pkgdown/favicon/web-app-manifest-512x512.png b/pkgdown/favicon/web-app-manifest-512x512.png new file mode 100644 index 00000000..18f90b4f Binary files /dev/null and b/pkgdown/favicon/web-app-manifest-512x512.png differ diff --git a/scratch/binary-search.R b/scratch/binary-search.R index f53ed20d..64ebf678 100644 --- a/scratch/binary-search.R +++ b/scratch/binary-search.R @@ -47,12 +47,12 @@ binary_search_knots <- function(x, y, cat("cutoff =", pretty_cutoff, "| knots =", realized_knots) if (realized_knots > n_knots) { L <- m + 1 - cat(" |", clisymbols::symbol$arrow_down, "\n") + cat(" |", cli::symbol$arrow_down, "\n") } else if (realized_knots < n_knots) { R <- m - 1 - cat(" |", clisymbols::symbol$arrow_up, "\n") + cat(" |", cli::symbol$arrow_up, "\n") } else { - cat(" |", clisymbols::symbol$tick, "\n") + cat(" |", cli::symbol$tick, "\n") return(mesh) } }