Skip to content

Releases: DeepLcom/deepl-dotnet

v1.13.0

28 Jan 16:32
v1.13.0
bf7730c
Compare
Choose a tag to compare

Added

  • Added support for the Write API in the client library, the implementation
    can be found in the DeepLClient class. Please refer to the README for usage
    instructions.

Fixed

  • Fixed code example for getting glossary entries in the README

Changed

  • The main functionality of the library is now also exposed via the DeepLClient
    class. Please change your code to use this over the Translator class whenever
    convenient.

v1.12.0

09 Jan 17:03
v1.12.0
Compare
Choose a tag to compare

Added

  • Added document minification as a feature before document translation, to
    allow translation of large docx or pptx files. For more info check the README.
  • Note that there might be a small delay with the nuget package release.

v1.11.0

15 Nov 15:52
v1.11.0
a72cdf6
Compare
Choose a tag to compare

Added

  • Added ModelType option for text translation to use models with higher
    translation quality (available for some language pairs), or better latency.
    Options are:
    • ModelType.QualityOptimized ('quality_optimized'),
    • ModelType.QualityOptimized ('latency_optimized'), and
    • ModelType.QualityOptimized ('prefer_quality_optimized')
  • Added the ModelTypeUsed field to text translation response, that
    indicates the translation model used when the ModelType option is
    specified.

v1.10.0

17 Sep 09:37
v1.10.0
147dabd
Compare
Choose a tag to compare

Added

  • Added BilledCharacters to the translate text response.

v1.9.0

17 May 07:42
v1.9.0
42594bc
Compare
Choose a tag to compare

Added

  • New language available: Arabic (MSA) ('ar'). Add language code constants and tests.

    Note: older library versions also support the new language, this update only
    adds new code constants.

Fixed

  • Change document upload to use the path /v2/document instead of /v2/document/ (no trailing /).
    Both paths will continue to work in the v2 version of the API, but /v2/document is the intended one.
  • Made DeepLException and subclasses, Usage and JsonFieldsStruct constructors public, to allow for easier mocking of the ITranslator interface.

v1.8.0

03 Nov 21:06
v1.8.0
fd60cf8
Compare
Choose a tag to compare

Added

  • Add optional Context parameter for text translation, that specifies
    additional context to influence translations, that is not translated itself.

Changed

  • Improvements to readme examples.

v1.7.1

17 Apr 14:10
v1.7.1
7454260
Compare
Choose a tag to compare

Fixed

  • Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.

v1.7.0

02 Apr 23:22
v1.7.0
d5580f5
Compare
Choose a tag to compare

Added

  • Script to check our source code for license headers and a step for them in the CI.
  • Added platform and node version information to the user-agent string that is sent with API calls, along with an opt-out.
  • Added method for applications that use this library to identify themselves in API requests they make.

v1.6.0

26 Jan 15:36
v1.6.0
cb3854b
Compare
Choose a tag to compare

Added

  • New languages available: Korean ('ko') and Norwegian (bokmål) ('nb'). Add
    language code constants and tests.

    Note: older library versions also support the new languages, this update only
    adds new code constants.

v1.5.1

25 Jan 14:50
6bc35c8
Compare
Choose a tag to compare

Fixed

  • Fix CI build for netcoreapp3.1.
  • Fix Formality options PreferLess and PreferMore for document
    translation.