Added version check

This commit is contained in:
unknown 2018-06-26 00:11:37 -07:00
parent f9b7f343e3
commit 934c7b47e6
1 changed files with 3 additions and 1 deletions

View File

@ -87,6 +87,8 @@ bool _isVersionSupported(version) {
int major = int.parse(parts[0]);
int minor = int.parse(parts[1]);
return false;
return true;
// TODO enable before release
//return major >= 4 && minor >= 5;
}