Skip to content

Tags: KNiranjani/rstudio

Tags

v1.1.463

Toggle v1.1.463's commit message
avoid nullptr

v1.1.462

Toggle v1.1.462's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request rstudio#3737 from rstudio/bugfix/rstudio-v11-macos…

…-locale

port locale fix to v1.1

v1.1.461

Toggle v1.1.461's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request rstudio#3730 from rstudio/bugfix/regex-replace-c++…

…98-compatible

use functor instead of lambda

v1.1.460

Toggle v1.1.460's commit message
use 'query' variable

v1.1.459

Toggle v1.1.459's commit message
use 'query' variable

v1.1.458

Toggle v1.1.458's commit message
remove unused include

v1.1.456

Toggle v1.1.456's commit message

Verified

This commit was signed with the committer’s verified signature.
jmcphers Jonathan
work around strange R 3.5.1 encoding issue

v1.2.679

Toggle v1.2.679's commit message
Open source companion commit for rstudio/rstudio-pro#479

v1.1.455

Toggle v1.1.455's commit message

Verified

This commit was signed with the committer’s verified signature.
jmcphers Jonathan
remove C++11-isms

v1.1.454

Toggle v1.1.454's commit message
Fix some issues with running terminal on 64-bit rsession (Windows)

Fixes rstudio#2817

This has been somewhat non-deterministic. I'm seeing cases where
Win32 `executablePath()` returns an empty string, leading to mistakes
in locating the winpty.dll (and presumably other problems).
Also problems running terminal with 64-bit rsession build in dev
environment; hadn't tried that before, always used 32-bit.

Found some mention online that using `_pgmptr` for getting at
full path of current executable can have issues if used early in
startup, but it is safe to use `GetModuleFileName` early. So switched
to that approach.

Added an error log if there is a failure to find winpty.dll.

Made the decision on using 32-bit or 64-bit winpty.dll a compile-time
thing instead of runtime, since it's already known by virtue of which
rsession.exe is being built.