Skip to content

Commit b2eed43

Browse files
committed
Fix libreoffice and rstudio versions
1 parent b0ff6ce commit b2eed43

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/libreoffice.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ $ProgressPreference = 'SilentlyContinue' # Disable (slow) progress bar
33

44
Set-Location C:\Tools
55

6-
$LIBRE_VERSION = "24.2.3"
7-
$LIBRE_HASH = "12b988318452120d31a4c618bc6ac314ad3bf99157584d0c2bf6029801a4cf31"
6+
$LIBRE_VERSION = "24.2.5"
7+
$LIBRE_HASH = "cad625d119db4720df5270fa2d860e0ed56d6e374b878e19a3cab4af68f1f54f"
88

99
$LIBRE_URL = "https://mirrors.ukfast.co.uk/sites/documentfoundation.org/tdf/libreoffice/stable/${LIBRE_VERSION}/win/x86_64/LibreOffice_${LIBRE_VERSION}_Win_x86-64.msi"
1010

modules/rstudio.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ $ProgressPreference = "SilentlyContinue" # PS progress bar is slow
44
$ErrorActionPreference = "Stop"
55

66
# R environment
7-
Invoke-WebRequest -Uri "https://cloud.r-project.org/bin/windows/base/R-4.4.0-win.exe" -OutFile C:\Tools\R-installer.exe
7+
Invoke-WebRequest -Uri "https://cloud.r-project.org/bin/windows/base/R-4.4.1-win.exe" -OutFile C:\Tools\R-installer.exe
88
Start-Process C:\Tools\R-installer.exe -ArgumentList "/VERYSILENT","/NORESTART" -NoNewWindow -Wait -PassThru
99

10-
Invoke-WebRequest -Uri "https://download1.rstudio.org/electron/windows/RStudio-2024.04.1-748.exe" -OutFile C:\Tools\RStudio-installer.exe
10+
Invoke-WebRequest -Uri "https://download1.rstudio.org/electron/windows/RStudio-2024.04.2-764.exe" -OutFile C:\Tools\RStudio-installer.exe
1111
Start-Process C:\Tools\RStudio-installer.exe -ArgumentList "/S" -NoNewWindow -Wait -PassThru
1212

1313
Invoke-WebRequest -Uri "https://cran.r-project.org/bin/windows/Rtools/rtools44/files/rtools44-6104-6039.exe" -OutFile C:\Tools\RTools.exe
@@ -17,7 +17,7 @@ Start-Process C:\Tools\RTools.exe -ArgumentList "/VERYSILENT" -NoNewWindow -Wait
1717
$pkgs = "tidyverse","odbc","dbi","qqman","metafor","tidyr","ggplot2",`
1818
"hmisc","data.table","dplyr","lubridate","survival","survminer"
1919
foreach ($pkg in $pkgs) {
20-
& "C:\Program Files\R\R-4.4.0\bin\Rscript.exe" `
20+
& "C:\Program Files\R\R-4.4.1\bin\Rscript.exe" `
2121
-e "install.packages('$pkg', repos='http://cran.uk.r-project.org')"
2222
}
2323

@@ -34,5 +34,5 @@ local({r <- getOption("repos")
3434
# Set timezone
3535
Sys.setenv(TZ='Europe/London')
3636
"@
37-
Set-Content "C:\Program Files\R\R-4.4.0\etc\Rprofile.site" $RConfig
37+
Set-Content "C:\Program Files\R\R-4.4.1\etc\Rprofile.site" $RConfig
3838
Set-Content "C:\Users\Administrator\Documents\.Renviron" "RSTUDIO_DISABLE_SECURE_DOWNLOAD_WARNING=1"

0 commit comments

Comments
 (0)