From 09361dc46254bc4cbd4028102a0bc94a423b86c4 Mon Sep 17 00:00:00 2001 From: David Watson Date: Fri, 13 Feb 2026 16:30:48 +0000 Subject: [PATCH 1/2] update for 2026 --- .github/workflows/release.yml | 16 ++++++++-------- index.md | 2 ++ releaseDocs.ps1 | 3 ++- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d17c90bfb..f8baba127 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,15 +22,15 @@ jobs: env: ProductName: 'Trados Studio' - ProductNameWithEdition: 'Trados Studio 2024 SR1' - ProductVersion: Studio18 - VersionNumber: 18 + ProductNameWithEdition: 'Trados Studio 2026 Relase' + ProductVersion: Studio19 + VersionNumber: 19 VisualStudioEdition: 'Microsoft Visual Studio 2022' - PluginPackedPath : '%AppData%\Trados\Trados Studio\18\Plugins\Packages\' - PluginUnpackedPath: '%AppData%\Trados\Trados Studio\18\Plugins\Unpacked\' - InstallationFolder: 'C:\Program Files (x86)\Trados\Trados Studio\Studio18' - DefaultProjectsFolder: 'C:\Users\UserName\Documents\Studio 2024\Projects' - StudioDocumentsFolderName: 'Studio 2024' + PluginPackedPath : '%AppData%\Trados\Trados Studio\19\Plugins\Packages\' + PluginUnpackedPath: '%AppData%\Trados\Trados Studio\19\Plugins\Unpacked\' + InstallationFolder: 'C:\Program Files (x86)\Trados\Trados Studio\Studio19' + DefaultProjectsFolder: 'C:\Users\UserName\Documents\Studio 2026 Release\Projects' + StudioDocumentsFolderName: 'Studio 2026 Release' AppSigningEmail : app-signing@sdl.com ServerProductName: Trados GroupShare ServerProductNameWithVersion: Trados GroupShare 2020 SR1 diff --git a/index.md b/index.md index 893264e25..0ac0850ec 100644 --- a/index.md +++ b/index.md @@ -20,6 +20,8 @@ Join our community-driven repository of Var:ProductName plugins on [RWS Communit ## Var:ProductName API versions +### [Var:ProductName 2024 SR1 - API 18.1](http://developers.rws.com/studio-api-docs/18.1/index.html) + ### [Var:ProductName 2024 - API 18.0](http://developers.rws.com/studio-api-docs/18.0/index.html) ### [Var:ProductName 2022 - API 17.2](http://developers.rws.com/studio-api-docs/17.2/index.html) diff --git a/releaseDocs.ps1 b/releaseDocs.ps1 index eda880f50..48412686c 100644 --- a/releaseDocs.ps1 +++ b/releaseDocs.ps1 @@ -25,8 +25,9 @@ if($checkBranch){ git checkout -b gh-pages_temp $items = Get-ChildItem +$keepVersions = @("15.2", "16.1", "16.2", "17.0", "17.1", "17.2", "18.0", "18.1") 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") -and ($item.Name -ne "17.1") -and ($item.Name -ne "17.2")-and ($item.Name -ne "18.0")){ + if ($item.Name -notin $keepVersions){ git rm $item -r } } From f27df09f1e25275222280aa8d4af04505e614498 Mon Sep 17 00:00:00 2001 From: David Watson Date: Fri, 13 Feb 2026 16:33:18 +0000 Subject: [PATCH 2/2] spelling error --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8baba127..ae90886ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: env: ProductName: 'Trados Studio' - ProductNameWithEdition: 'Trados Studio 2026 Relase' + ProductNameWithEdition: 'Trados Studio 2026 Release' ProductVersion: Studio19 VersionNumber: 19 VisualStudioEdition: 'Microsoft Visual Studio 2022'