Skip to content

Commit ac7a2c4

Browse files
authored
docs(pkg-r): Small pkgdown changes (#160)
* chore: update package authors * docs: temporarily disable pkgdown dev mode until release * chore: fix pkg links * chore: match python website styles * chore: re-org navbar
1 parent da67006 commit ac7a2c4

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

pkg-r/DESCRIPTION

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ Package: querychat
22
Title: Filter and Query Data Frames in 'shiny' Using an LLM Chat Interface
33
Version: 0.1.0.9000
44
Authors@R: c(
5-
person("Joe", "Cheng", , "joe@posit.co", role = c("aut", "cre")),
5+
person("Garrick", "Aden-Buie", , "garrick@posit.co", role = c("aut", "cre"),
6+
comment = c(ORCID = "0000-0002-7111-0077")),
7+
person("Joe", "Cheng", , "joe@posit.co", role = c("aut", "ccp")),
8+
person("Carson", "Sievert", , "carson@posit.co", role = "aut",
9+
comment = c(ORCID = "0000-0002-4958-2844")),
610
person("Posit Software, PBC", role = c("cph", "fnd"))
711
)
812
Description: Adds an LLM-powered chatbot to your 'shiny' app, that can
@@ -11,7 +15,9 @@ Description: Adds an LLM-powered chatbot to your 'shiny' app, that can
1115
it to drive reactive calculations, visualizations, downloads, etc.
1216
License: MIT + file LICENSE
1317
URL: https://posit-dev.github.io/querychat/pkg-r,
14-
https://posit-dev.github.io/querychat
18+
https://posit-dev.github.io/querychat,
19+
https://github.com/posit-dev/querychat
20+
BugReports: https://github.com/posit-dev/querychat/issues
1521
Depends:
1622
R (>= 4.1.0)
1723
Imports:

pkg-r/R/querychat-package.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ NULL
7878

7979
release_bullets <- function() {
8080
c(
81-
"Run `staticimports::import()` to update static imports"
81+
"Run `staticimports::import()` to update static imports",
82+
"Enable `development.mode: auto` in `_pkgdown.yml` and remove this release bullet."
8283
)
8384
}
8485

pkg-r/pkgdown/_brand.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
color:
22
palette:
33
blue: "#007bc2"
4+
navy: "#193D56"
45
indigo: "#4b00c1"
56
purple: "#74149c"
67
pink: "#bf007f"
@@ -28,11 +29,14 @@ typography:
2829
fonts:
2930
- family: Open Sans
3031
source: bunny
32+
- family: Hubot Sans
33+
source: bunny
3134
- family: Source Code Pro
3235
source: bunny
3336

3437
headings:
35-
family: Open Sans
38+
family: Hubot Sans
39+
color: navy
3640
weight: 400
3741
monospace: Source Code Pro
3842
monospace-inline:
@@ -43,5 +47,5 @@ typography:
4347
defaults:
4448
bootstrap:
4549
defaults:
46-
navbar-bg: $brand-blue
50+
navbar-bg: $brand-navy
4751
code-color-dark: "#fa88d4"

pkg-r/pkgdown/_pkgdown.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ url: https://posit-dev.github.io/querychat
22

33
destination: "../docs/r"
44

5-
development:
6-
mode: auto
5+
# development:
6+
# mode: auto
77

88
authors:
99
Posit Software, PBC:
@@ -29,6 +29,13 @@ template:
2929
bslib:
3030
brand: pkgdown/_brand.yml
3131

32+
navbar:
33+
structure:
34+
left: [get-started, articles, reference, news]
35+
right: [search, github, lightswitch]
36+
components:
37+
home: ~
38+
3239
reference:
3340
- title: Chat interfaces
3441
contents:

0 commit comments

Comments
 (0)