Development build available today (from git 358b725) contains a few more minor fixes and a new warning system has been implemented:
[ This attachment cannot be displayed inline in 'Print Page' view ]
So far there are two types of compiler warnings that will be presented to the user but will not prevent compilation:
- Variables you declared with DIM or equivalent and never used in your program (also SUB/FUNCTION parameters you created but never used in the body of the procedure) - of course these didn't prevent compilation before but now you have the chance to pinpoint these minor issues and cleanup your code.
- CONSTs you redefined with the same value (as when you already have CONST TRUE = -1, FALSE = 0 and then you proceed to add a library to your program that does the same; in previous versions that would prevent compilation and require you to edit your program or the library - now that's just a friendly warning and compilation can go on).
Also with this build the macOS Mojave issues have been fixed (one by Apple itself with version 10.14.4 of their OS and one by us), so we're compatible with macOS again.
Please help us test these new features of the latest dev version (as well as the ones outlined on this post (https://www.qb64.org/forum/index.php?topic=304.msg2554#msg2554)) as we're **this** close to releasing version 1.3.
Fellippe.