Hey everyone, if you change the code from
define('QT_SUPPORTED_WP_VERSION', '3.8.1');
to
define('QT_SUPPORTED_WP_VERSION', $wp_version);
You won’t have to modify the file again for future versions. It does also mean there’s a risk it won’t be compatible and break itself / corrupt your data during a future auto-update, but what other choice do we have.
If you change
define('QT_SUPPORTED_WP_VERSION', '3.8.1');
to
define('QT_SUPPORTED_WP_VERSION', $wp_version);
You won’t have to modify the file again for future versions. Of course that has it’s own risks but if the author doesn’t do this full-time it’s a little hard to expect it to be constantly updated.