Skip to content

Commit

Permalink
Merge branch 'release/1.10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
rvanbekkum committed Jan 10, 2025
2 parents d4ee2de + f8553b2 commit 8f8bed7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.10.0] 10-01-2025

* Changed severity of the "There are no target translation files" message in `Test-BcAppXliffTranslations` to be based on the `-AzureDevOps` parameter.

### Thank You (for 1.10.0)

* [Christian Hovenbitzer](https://github.com/ChristianHovenbitzer) for your [Pull Request #42 "Change severity of "There are no target translation files" message in Test-BcAppXliffTranslations to be based on -AzureDevOps parameter"](https://github.com/rvanbekkum/ps-xliff-sync/pull/42)

## [1.9.0] 19-05-2023

* Added `-useSelfClosingTags` parameter to the `Sync-XliffTranslations` command (GitHub issue [#38](https://github.com/rvanbekkum/ps-xliff-sync/issues/38))
Expand Down
4 changes: 2 additions & 2 deletions XliffSync/Public/bc/Test-BcAppXliffTranslations.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ function Test-BcAppXliffTranslations {
}
}

if ($targetXliffFiles.Count -eq 0) {
Write-Host "##vso[task.logissue type=warning]There are no target translation files for $($baseXliffFile.Name)"
if (@("error","warning").Contains($AzureDevOps) -and ($targetXliffFiles.Count -eq 0)) {
Write-Host "##vso[task.logissue type=$AzureDevOps]There are no target translation files for $($baseXliffFile.Name)"
}
Write-Host "##[endgroup]"

Expand Down
4 changes: 2 additions & 2 deletions XliffSync/XliffSync.psd1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@{
RootModule = 'XliffSync.psm1'
ModuleVersion = '1.9.0.0'
ModuleVersion = '1.10.0.0'
GUID = 'a7614fd7-ce84-44db-9475-bc1f5fa4f0e5'
Author = 'Rob van Bekkum'
CompanyName = 'WSB Solutions B.V.'
Copyright = '(c) 2023 Rob van Bekkum. All rights reserved.'
Copyright = '(c) 2025 Rob van Bekkum. All rights reserved.'
Description = 'Keep XLIFF translation files easily in sync with a generated base-XLIFF file.'
PowerShellVersion = '5.0'
FunctionsToExport = @('Get-XliffTranslationsDiff', 'Set-XliffTranslations', 'Sync-XliffTranslations', 'Test-BcAppXliffTranslations', 'Test-XliffTranslations')
Expand Down

0 comments on commit 8f8bed7

Please sign in to comment.