QB64pe icon indicating copy to clipboard operation
QB64pe copied to clipboard

The QB64 Phoenix Edition Repository

Results 97 QB64pe issues
Sort by recently updated
recently updated
newest added

The built-in font related routines like `sub__printstring`, `func__fontwidth`, `func__fontheight`, `func__font` etc. (which do not have deep ties in `libqb`) can be safely refactored and moved into its own translation unit...

enhancement
libqb-refactor

_BUTTON and _DEVICEINPUT command do not register inputs on the keyboard in Linux. **To Reproduce** Using code from the help. ```basic FOR i = 1 TO _DEVICES PRINT STR$(i) +...

bug

Currently there is no way to sync `_Display` requests with the GLUT thread that renders the frames in the window. The result is that even if you use `_Limit 60`...

enhancement

I'm not new to programming, but I'm not super advanced. So there may be a better way to format things in code. Doing this: `Type Example` ` Paramter1 As Integer`...

In a lot languages, the ones I can think of are C++, and C# a '?' question mark can be used to do ternary operators. C++/C#: `result = (a >=...

enhancement

A String have a fixed length when adding a `*` suffix to the declaration, but it has to be a number following the `*`: `Dim Text as String * 10`...

enhancement

In a lot of Code Editors if you type a Quote or a Parenthesis it automatically adds an ending character. For Example: If I typed the first " for the...

enhancement

As per the Discord discussion here: https://discord.com/channels/975381912350752819/975389657212805160/1046797271532064778 basically allow things like this: ``` $SCREENHIDE scr& = _NEWIMAGE(300, 150, 256) SCREEN scr& _SCREENMOVE 20, 20 _SCREENSHOW ``` Note the `_SCREENMOVE` comes...

enhancement

Simple enough request: Add image handles as an optional parameter to our already existing graphical commands that don't have them. Ones that pop up off the top of my head:...

enhancement

According to the [ENVIRON](https://qb64phoenix.com/qb64wiki/index.php/ENVIRON) wiki, `ENVIRON` can be used like ```vb ENVIRON "myParamter=myValue" ``` or ```vb ENVIRON "myParamter myValue" ``` However, on Linux (and possibly macOS) only the space version...

bug