Skip to content

Commit

Permalink
Use Python 3.8 in Sublime Text 4
Browse files Browse the repository at this point in the history
  • Loading branch information
seanliang committed May 25, 2021
1 parent 1c6c2ac commit dc9f12c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.8
2 changes: 1 addition & 1 deletion ConvertToUTF8.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def run(self, edit, encoding, file_name, need_codecs):
branch = self.get_branch(sublime.platform(), sublime.arch())
if branch:
ver = '33' if ST3 else '26'
msg = msg + 'Please install Codecs{0} plugin (https://github.com/seanliang/Codecs{0}/tree/{1}).\n'.format(ver, branch)
msg = msg + 'Please install Codecs{0} plugin (https://github.com/seanliang/Codecs{0}/tree/{1}) or upgrade to Sublime Text 4.\n'.format(ver, branch)
else:
import platform
msg = msg + 'Please send the following information to sunlxy (at) yahoo.com:\n====== Debug Information ======\nVersion: {0}-{1}\nPlatform: {2}\nPath: {3}\nEncoding: {4}\n'.format(
Expand Down
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.2.14": "messages/1.2.14.txt",
"1.2.13": "messages/1.2.13.txt",
"1.2.12": "messages/1.2.12.txt",
"1.2.11": "messages/1.2.11.txt",
Expand Down
6 changes: 6 additions & 0 deletions messages/1.2.14.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ConvertToUTF8 1.2.14 Changelog

Enhancements
- Use Python 3.8 in Sublime Text 4

Note: For those who upgrade to Sublime Text 4, please remove or disable Codecs33 plugin which files are included in embedded Python 3.8.

0 comments on commit dc9f12c

Please sign in to comment.