Skip to content

Build 600 #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed metalang.exe
Binary file not shown.
Binary file added mql.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions mql4_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys

PLATFORM = sublime.platform()
METALANG = 'metalang.exe'
METALANG = 'mql.exe'
EXTENSION = '.mq4'
WINE = 'wine'

Expand Down Expand Up @@ -52,7 +52,7 @@ def isError(self):

if not os.path.exists(METALANG_PATH):
print (METALANG_PATH) # Debug
print ("Mqlcompiler | error: metalang.exe not found")
print ("Mqlcompiler | error: mql.exe not found")
iserror = True

if PLATFORM != 'windows':
Expand Down
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# mql4 compiler (Sublime text 3 plugin)

* **Default key** : ctrl + alt + m
* Using [Metatrader 4 build 509](http://forum.mql4.com/56329)
* Install with [Sublime text Package manager](https://sublime.wbond.net/installation)
* Using Metatrader 4 => build 600

## Dependencies (mac / linux)

Expand Down