Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chenkovsky/b7d6eee67b8cd358f105d2201d20c6db to your computer and use it in GitHub Desktop.
Save chenkovsky/b7d6eee67b8cd358f105d2201d20c6db to your computer and use it in GitHub Desktop.
Sublime Text 3 patching
http://pan.baidu.com/s/1hqH2Pko#path=%252F
http://goo.gl/tU516d
Patch via command:
#### Mac OS X command:
##### Using sed
```sh
brew install gnu-sed
gsed -i 's/\xb5\xa3\x06\x00\x85\xc0/\xb5\xa3\x06\x00\x39\xc0/' /path/to/sublime_text
```
##### Using vim editor
```sh
:%!xxd
:%s/84 a706 0085/84 a706 0039/
:%!xxd -r
:wq
```
#### Linux command to patch:
```sh
sudo sed -i 's/\xf3\x01\x00\x85\xc0\x0f/\xf3\x01\x00\x39\xc0\x0f/' /opt/sublime_text/sublime_text
```
#### Windows 64
Sublime Text 3, build 3080 (dev) for Windows x64
| **OFFSET** | **ORIGINAL** | **CRACKED** |
|--------- |---------- |--------- |
| 0xe2de3 | 85 | 3B |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment