Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvollebregt committed Dec 6, 2021
2 parents 8b87a3c + 862a466 commit accd504
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 63 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 2.13.0
- Added Russian (Русский) translations

### 2.12.0
- [#211](https://github.com/brentvollebregt/auto-py-to-exe/pull/211): Added Traditional Chinese translations
- [#218](https://github.com/brentvollebregt/auto-py-to-exe/issues/218): Added build directory override argument (`--build-directory-override`)
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,17 @@ If you need something visual to help you get started, [I made a video for the or
## Issues Using the Tool
If you're having issues with the packaged executable or using this tool in general, I recommend you read [my blog post on common issues when using auto-py-to-exe](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/?utm_source=auto_py_to_exe&utm_medium=readme_link&utm_campaign=auto_py_to_exe_help). This post covers things you should know about packaging Python scripts and fixes for things that commonly go wrong.

## Translations

| Language | Translator | Translated |
| ------------------------------ | ------------------------------------------- | ------------------------------------ |
| English | - | UI and README |
| Chinese Simplified (简体中文) | [jiangzhe11](https://github.com/jiangzhe11) | UI and [README](./README-Chinese.md) |
| Chinese Traditional (繁體中文) | [startgo](https://github.com/ystartgo) | UI |
| Russian (Русский) | Oleg | UI |

> Want to add a translation for another language? Update [i18n.js](https://github.com/brentvollebregt/auto-py-to-exe/blob/master/auto_py_to_exe/web/js/i18n.js) and submit a PR or attach it in an issue.
## Python 2.7 Support
As of [PyInstaller v4.0](https://github.com/pyinstaller/pyinstaller/releases/tag/v4.0) released on Aug 9 2020, Python 2.7 is no longer supported; although you can still use this tool with Python 2.7 by installing an older version of PyInstaller. [PyInstaller v3.6](https://github.com/pyinstaller/pyinstaller/releases/tag/v3.6) was the last version that supported Python 2.7; to install this, first uninstall any existing versions of PyInstaller and then execute `python -m pip install pyinstaller==3.6`.

Expand Down
2 changes: 1 addition & 1 deletion auto_py_to_exe/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.12.0'
__version__ = '2.13.0'
Loading

0 comments on commit accd504

Please sign in to comment.