Skip to content
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

Fixes and enhancements #530

Merged
merged 4 commits into from
Aug 20, 2024
Merged

Fixes and enhancements #530

merged 4 commits into from
Aug 20, 2024

Commits on Aug 19, 2024

  1. Fixing config limits

    - width/height were off by one compared to the Display dialog
    - set upper limit for compiler threads to 128 as discussed on Discord
    RhoSigma-QB64 committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    5c1b965 View commit details
    Browse the repository at this point in the history
  2. Fix IDE help display

    - fixing auto-generated pages for user SUBs and FUNCs taking arrays as arguments
    - https://discord.com/channels/975381912350752819/1208941399127494667/1274879519387418676
    RhoSigma-QB64 committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    913c304 View commit details
    Browse the repository at this point in the history
  3. Enhancement to ON ERROR GOTO

    - now allows `_LASTHANDLER` keyword in place of a label to restore back to the last used handler label
    - will silently fall back to "unhandled" (`ON ERROR GOTO 0`), if no more handlers are in the queue
    - useful for library makers to restore an old handler, when it was formerly changed for library internal purposes
    RhoSigma-QB64 committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ffce952 View commit details
    Browse the repository at this point in the history
  4. Adding ON ERROR GOTO test

    - checks correct function of `ON ERROR GOTO label` in conjuction with `ON ERROR GOTO _LASTHANDLER`
    RhoSigma-QB64 committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    48099fe View commit details
    Browse the repository at this point in the history