Skip to content

Releases: smikitky/chatgpt-md-translator

v1.9.1

19 Mar 08:16

Choose a tag to compare

  • Added a warning when the language model is not explicitly specified. The default is GPT 3.5, but this is no longer a good option today. In the future, this setting will be required.

v1.9.0

19 Mar 08:16

Choose a tag to compare

  • Added REASONING_EFFORT config option for reasoning models.

v1.8.0

19 Mar 08:16

Choose a tag to compare

  • Supported -t default or TEMPERATURE=default for models that do not support setting the temperature parameter. Currently, some reasoning models such as o3-mini throw an error when temperature is specified.
  • The shorthand model name 4 now points to gpt-4o instead of gpt-4-turbo. However, shorthand model names are now deprecated. Specify full chat model names instead.

v1.7.1

11 Apr 17:27

Choose a tag to compare

  • Fixed broken module import that made the CLI not functioning at all

v1.7.0

10 Apr 11:18

Choose a tag to compare

  • GPT-4 Turbo has entered general availability, so the model shorthand 4 now points to gpt-4-turbo instead of gpt-4. gpt-4-turbo is faster, smarter, and more cost-effective; there is almost no practical reason to choose gpt-4 now.

v1.6.0

04 Apr 14:05

Choose a tag to compare

  • You can now specify more than one file to translate multiple source files sequentially (#20).
  • Added OVERWRITE_POLICY (-w/--overwrite-policy) option, which allows you to specify what happens if the output file already exists (#20).
  • When one of the API calls causes a critical error, the other API calls are now aborted as well.
  • Fixed an error where the translation status was still reported in a non-TTY environment.
  • Fixed an issue that occurred when the status text was longer than the terminal width.

v1.5.1

03 Apr 14:13

Choose a tag to compare

  • Fixed error handling when chekcing if the output file is writable.
  • Hid a deprecated and undocumented CLI option from --help.

v1.5.0

03 Apr 13:44

Choose a tag to compare

  • Added OUTPUT_FILE_PATH option, which can flexibly transform the input file path into the output file path.
  • Deprecated OUT_SUFFIX option in favor of OUTPUT_FILE_PATH.
  • Enhanced error reporting to be friendlier when a file system error occurs.

v1.4.0

30 Mar 06:27

Choose a tag to compare

  • Checks the permission of the output file/directory before actually calling the API (#17).
  • Fixed: out CLI option is now relative to BASE_DIR rather than the target file, following starndard convention of other CLI tools (#16).

v1.3.2

14 Mar 07:54

Choose a tag to compare

  • Fixed a typo in config name API_ENDOPOINT => API_ENDPOINT