File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Package: rstudioapi
2
2
Title: Safely Access the RStudio API
3
3
Description: Access the RStudio API (if available) and provide informative error
4
4
messages when it's not.
5
- Version: 0.16.0.9000
5
+ Version: 0.17.0
6
6
Authors@R: c(
7
7
person("Kevin", "Ushey", role = c("aut", "cre"), email = "
[email protected] "),
8
8
person("JJ", "Allaire", role = c("aut"), email = "
[email protected] "),
Original file line number Diff line number Diff line change 1
1
2
- # rstudioapi (under development)
2
+ # rstudioapi 0.17.0
3
3
4
4
* Added ` getMode() ` , which can be used to differentiate between Desktop
5
5
and Server installations of RStudio. (#280 )
6
6
7
+
7
8
# rstudioapi 0.16.0
8
9
9
10
* ` restartSession() ` gains the ` clean ` argument, for RStudio 2024.04
10
11
and newer.
11
12
12
13
* Added ` setGhostText() ` for setting ghost text in the current editor.
13
14
15
+
14
16
# rstudioapi 0.15.0
15
17
16
18
* Added ` getDelegatedAzureToken ` for Posit Workbench users needing to expose
17
19
OAuth2 tokens for Azure services that have already had permissions configured
18
20
21
+
19
22
# rstudioapi 0.14
20
23
21
24
* ` documentPath() ` now marks the encoding of file paths as UTF-8. (#257 )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ getMode <- function() {
89
89
# use fallback if not
90
90
rstudio <- as.environment(" tools:rstudio" )
91
91
if (rstudio $ .rs.isDesktop()) " desktop" else " server"
92
-
92
+
93
93
}
94
94
95
95
You can’t perform that action at this time.
0 commit comments