# rstudioapi 0.11
* `rstudioapi::launcherResourceLimit()` now properly delegates the type
and memory arguments. (#164)
* `rstudioapi` gains the function `highlightUi()`, used to highlight UI
elements in newer versions of RStudio.
* Paths returned from `selectFile()` are now properly marked with
UTF-8 encoding.
* It is now possible for `rstudioapi` to communicate with a parent RStudio
session, for R sessions launched as RStudio jobs. Use
`rstudioapi::isAvailable(child_ok = TRUE)` to assert that it's okay to check
that `rstudioapi` is available and is running within an RStudio job.
* Added `bugReport()`, a helper function for reporting RStudio bugs
on the GitHub issue tracker with an issue template pre-populated
with some helpful diagnostic information.
* Added `userIdentity` and `systemUsername`, used to retrieve information about
the current user.
The canonical form [1] of an R package Makefile includes the
following:
- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
needed), and CATEGORIES.
- HOMEPAGE is not present but defined in math/R/Makefile.extension to
refer to the CRAN web page describing the package. Other relevant
web pages are often linked from there via the URL field.
This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.
[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html