Skip to content

Commit 7fa0c50

Browse files
authored
Merge pull request #269 from RWS/pat/m/2026-api-prep
update for 2026
2 parents 3f35264 + f27df09 commit 7fa0c50

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222

2323
env:
2424
ProductName: 'Trados Studio'
25-
ProductNameWithEdition: 'Trados Studio 2024 SR1'
26-
ProductVersion: Studio18
27-
VersionNumber: 18
25+
ProductNameWithEdition: 'Trados Studio 2026 Release'
26+
ProductVersion: Studio19
27+
VersionNumber: 19
2828
VisualStudioEdition: 'Microsoft Visual Studio 2022'
29-
PluginPackedPath : '%AppData%\Trados\Trados Studio\18\Plugins\Packages\'
30-
PluginUnpackedPath: '%AppData%\Trados\Trados Studio\18\Plugins\Unpacked\'
31-
InstallationFolder: 'C:\Program Files (x86)\Trados\Trados Studio\Studio18'
32-
DefaultProjectsFolder: 'C:\Users\UserName\Documents\Studio 2024\Projects'
33-
StudioDocumentsFolderName: 'Studio 2024'
29+
PluginPackedPath : '%AppData%\Trados\Trados Studio\19\Plugins\Packages\'
30+
PluginUnpackedPath: '%AppData%\Trados\Trados Studio\19\Plugins\Unpacked\'
31+
InstallationFolder: 'C:\Program Files (x86)\Trados\Trados Studio\Studio19'
32+
DefaultProjectsFolder: 'C:\Users\UserName\Documents\Studio 2026 Release\Projects'
33+
StudioDocumentsFolderName: 'Studio 2026 Release'
3434
AppSigningEmail : app-signing@sdl.com
3535
ServerProductName: Trados GroupShare
3636
ServerProductNameWithVersion: Trados GroupShare 2020 SR1

index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Join our community-driven repository of Var:ProductName plugins on [RWS Communit
2020

2121
## Var:ProductName API versions
2222

23+
### [Var:ProductName 2024 SR1 - API 18.1](http://developers.rws.com/studio-api-docs/18.1/index.html)
24+
2325
### [Var:ProductName 2024 - API 18.0](http://developers.rws.com/studio-api-docs/18.0/index.html)
2426

2527
### [Var:ProductName 2022 - API 17.2](http://developers.rws.com/studio-api-docs/17.2/index.html)

releaseDocs.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ if($checkBranch){
2525

2626
git checkout -b gh-pages_temp
2727
$items = Get-ChildItem
28+
$keepVersions = @("15.2", "16.1", "16.2", "17.0", "17.1", "17.2", "18.0", "18.1")
2829
foreach ($item in $items){
29-
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")){
30+
if ($item.Name -notin $keepVersions){
3031
git rm $item -r
3132
}
3233
}

0 commit comments

Comments
 (0)