Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
SUSYUSTC committed Jun 25, 2023
2 parents 2479fb7 + b390692 commit 47737d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gui/Translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def translate_texfile(file_path, output_path):
# redirect standard output to log file
with Redirect(config.log_file):
args = [file_path, '-o', output_path]
main_texfile(args=args)
main_texfile(args=args, require_updated=False)
print()
print('finished')
print('file saved to', output_path)
Expand All @@ -33,7 +33,7 @@ def translate_arxiv(number, output_path):
# redirect standard output to log file
with Redirect(config.log_file):
args = [number, '-o', output_path]
main_arxiv(args=args)
main_arxiv(args=args, require_updated=False)
print()
print('finished')
print('file saved to', output_path)
2 changes: 1 addition & 1 deletion mathtranslate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.0"
__version__ = "3.0.1"
__author__ = "MathTranslate developers"
import os
from appdata import AppDataPaths
Expand Down

0 comments on commit 47737d1

Please sign in to comment.