Python 3 patcher for Sublime Text v4107-4180 Windows x64
Credits for patching logic goes to https://github.com/leogx9r
- Uses signatures instead of hardcoded offsets
- Automatic version detection for stable/dev channels
- No host blocking needed
- Enter any text as license
Disables crash report telemetry- Disables phoning home
- Minimal dependencies
- Single Python file for convenience
pip3 install -r requirements.txt
or just
pip3 install pefile
It's just for pefile
which is indirectly used for version detection.
You only need sublime_text_4_patcher.py
from this repository (and the aforementioned requirements).
IMPORTANT: Remember to enter any text as the license key after patching! For stable versions, you can accomplish this by going to Help > Enter License.
python3 sublime_text_4_patcher.py
You will then be prompted in the console to enter the file path to sublime_text.exe
.
python3 sublime_text_4_patcher.py <path_to_sublime_text.exe>
python3 sublime_text_4_patcher.py -t <directory_with_sublime_text_build_*_x64.zips>
The script will extract sublime_text.exe
from each ZIP file into its own folder and try to patch it. Results are collated and logged to console.
C:\>py sublime_text_4_patcher.py -h
usage: sublime_text_4_patcher.py [-h] [-t DIRPATH] [-f {stable,dev}] [filepath]
Sublime Text v4107-4180 Windows x64 Patcher by rainbowpigeon
positional arguments:
filepath File path to sublime_text.exe
options:
-h, --help show this help message and exit
-t DIRPATH, --test DIRPATH
Directory path containing sublime_text_build_*_x64.zip files for batch testing
-f {stable,dev}, --force {stable,dev}
Force patching even if detected Sublime Text version does not exist in the patch database
Report any issues at github.com/rainbowpigeon/sublime-text-4-patcher/issues!