From dc3b6ec441a017f12c892993fe30dbc10daba6cd Mon Sep 17 00:00:00 2001 From: imoldovan Date: Thu, 23 May 2024 13:26:50 +0300 Subject: [PATCH] update --- index.md | 3 +++ releaseDocs.ps1 | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/index.md b/index.md index 650b6cfa0..5f2a3e528 100644 --- a/index.md +++ b/index.md @@ -20,6 +20,9 @@ Find more of our code samples on [GitHub](https://github.com/RWS/trados-studio-a ## API versions +### [ 2022 - API 17.1](http://developers.rws.com/studio-api-docs/17.1/index.html) + + ### [ 2022 - API 17.0](http://developers.rws.com/studio-api-docs/17.0/index.html) ### [ 2021 SR2 - API 16.2](http://developers.rws.com/studio-api-docs/16.2/index.html) diff --git a/releaseDocs.ps1 b/releaseDocs.ps1 index 93e076365..223de5893 100644 --- a/releaseDocs.ps1 +++ b/releaseDocs.ps1 @@ -24,9 +24,9 @@ if($checkBranch){ } git checkout -b gh-pages_temp -$items = ls +$items = Get-ChildItem foreach ($item in $items){ - if (($item.Name -ne "15.2") -and ($item.Name -ne "16.1") -and ($item.Name -ne "16.2") -and ($item.Name -ne "17.0")){ + if (($item.Name -ne "15.2") -and ($item.Name -ne "16.1") -and ($item.Name -ne "16.2") -and ($item.Name -ne "17.0") -and ($item.Name -ne "17.1")){ git rm $item -r } }