1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 06:00:23 +00:00
Commit graph

787 commits

Author SHA1 Message Date
Autobuild Process b693e7667b Update internal/source 2021-04-09 16:38:37 +00:00
Fellippe Heitor ec747a53c2
Merge pull request #156 from lstricklan/development
Fix writing to SCRN when opened as a file
2021-03-30 13:49:26 -03:00
Lynn Stricklan 445f11fd4c Update libqb.cpp 2021-03-26 11:51:21 -06:00
Zachary Spriggs 46e24587aa
FreeLibrary in func__newimage
Freeing the runtime linked library in `func__newimage` after the call
2021-03-26 08:34:55 -04:00
Zachary Spriggs 20a61cc474
Fix new bug with _Width and _Height
Where the previous bug would only return the console's image size when an image was passed, the new bug made it only ever return 80 for `_Width` and 25 for `_Height` when it should be returning the console's image size if there is no value passed and it is the `_Source`, which it is if we are in a `$Console:Only`.

Here is a code block that demonstrates the bug being fixed:
```Option _Explicit
$Console
Screen _NewImage(640, 480, 32)
_Dest _Console
Width 120, 5
_Dest 0

Print "Hello world"

Print _DesktopWidth, _DesktopHeight
Dim As Long i: i = _NewImage(1280, 720, 32)
Print _Width, _Height
Print _Width(0), _Height(0)
Print _Width(_Console), _Height(_Console)```
2021-03-24 09:38:44 -04:00
Fellippe Heitor 2a476e19e9
Merge pull request #153 from lstricklan/development
Fixes to libqb.cpp for random file record length and to msbin.c for MBF encoding
2021-03-24 01:28:31 -03:00
Zachary Spriggs ad3afb56b8
Changed #if blocks to be greater than or equal to Vista version 2021-03-24 00:14:19 -04:00
Zachary Spriggs c727abd667
Check for XP using WINVER in func__newimage and sub__consolefont
This can re-enable `_ConsoleFont` by checking if the version of Windows is greater than XP. Also, for the DPI awareness.
2021-03-24 00:09:33 -04:00
Lynn Stricklan 87c01d0bed Update libqb.cpp
When opening a file for random access, if the LEN is not supplied, it defaults the length correctly, but does not allocate the buffer correctly. The code should reference the record_length in the file struct.
2021-03-23 13:41:59 -06:00
Lynn Stricklan 69ab2d3327 Revert "Update libqb.cpp"
This reverts commit c38716f3b7.
2021-03-23 13:41:59 -06:00
Lynn Stricklan f66559eed5 Update msbin.c
The processing for MKDMBF$ fails for numbers smaller than 1.  Basic cause is the check for exponent overflow is incorrect. Changed code to correctly check for exponent overflow
2021-03-23 13:41:59 -06:00
Lynn Stricklan ac9664e312 Update libqb.cpp
2 changes here:
line 13062: When opening a file for random access, if the LEN is not supplied, it defaults the length correctly, but does not allocate the buffer correctly.  The code should reference the record_length in the file struct.

Changes in lines 15798-15853:  When printing text to the screen, carriage returns in the text are ignored.  In sub_file_print, the code for printing to the screen is modified to honor carriage returns.
2021-03-23 13:41:58 -06:00
Zachary Spriggs 189cdb8e39
Fix bug with DPI, Width, and Height (Win)
Fixes a bug that would make QB64 return the incorrect size monitor/desktop size when the resolution is scaled. Also, the last fix I added that set `_Source` to `_Console` automatically caused an issue with `_Width` and `_Height`, causing them to return only the console's image dimensions rather than the image that is passed.
2021-03-22 15:51:54 -04:00
Autobuild Process 21b32a7125 Update internal/source 2021-03-19 14:50:03 +00:00
Autobuild Process 0134aa152d Update internal/source 2021-03-19 14:27:59 +00:00
Autobuild Process 90a07bd5ae Update internal/source 2021-03-17 02:46:56 +00:00
Zachary Spriggs 3c58f611a3
Fixes bug that frees console_image handle in Clear
Fixes a bug that would free the console_image handle in the freeallimages() function
2021-03-16 15:34:43 -04:00
Doug Kearns fee91e8c33 Fixes missing file messages when purging precompiled content 2021-03-11 11:27:56 +11:00
Autobuild Process be7846da1c Update internal/source 2021-03-10 20:25:47 +00:00
Autobuild Process 64ea6d64ca Update internal/source 2021-03-07 14:41:43 +00:00
Autobuild Process ece89712f3 Update internal/source 2021-03-07 12:39:52 +00:00
Autobuild Process 89f410fae1 Update internal/source 2021-03-05 17:41:55 +00:00
Autobuild Process 363fc7814a Update internal/source 2021-03-05 14:12:33 +00:00
Autobuild Process 69521e2e77 Update internal/source 2021-02-28 18:26:44 +00:00
Autobuild Process 9439c43a14 Update internal/source 2021-02-28 14:50:26 +00:00
Fellippe Heitor f77a643042 Updates help files and version info for release. 2021-02-28 11:47:33 -03:00
Autobuild Process bfa4c6defb Update internal/source 2021-02-26 03:53:59 +00:00
Zachary Spriggs 141d0db085
Fixed indentation of new commits 2021-02-24 17:07:02 -05:00
Zachary Spriggs 66ea2b794d
Removed "SPRAY" from _MOUSESHOW
"SPRAY" gives the same result as "CROSSHAIR" and so is unnecessary
2021-02-24 15:42:05 -05:00
Zachary Spriggs a3141fc425
Adding "WAIT", "HELP", and "SPRAY" to _MOUSESHOW 2021-02-24 15:38:47 -05:00
Autobuild Process 68805b8432 Update internal/source 2021-02-22 13:45:13 +00:00
Autobuild Process 231c1b6ec7 Update internal/source 2021-02-21 15:34:41 +00:00
Autobuild Process d09c27c933 Update internal/source 2021-02-21 14:57:06 +00:00
Autobuild Process 70b7f4dda1 Update internal/source 2021-02-21 14:43:08 +00:00
Autobuild Process f4a7869e85 Update internal/source 2021-02-20 23:40:16 +00:00
Autobuild Process e6a8090b8a Update internal/source 2021-02-18 22:42:03 +00:00
Autobuild Process 5a74a1a571 Update internal/source 2021-02-18 18:10:07 +00:00
Fellippe Heitor 7a2c5859e2 Updates help files [ci-skip] 2021-02-18 14:11:22 -03:00
Autobuild Process 1426d45979 Update internal/source 2021-02-17 12:45:25 +00:00
Fellippe Heitor 6879dc0e79 Updates help files [ci-skip] 2021-02-15 22:13:07 -03:00
Autobuild Process 565bfe6e63 Update internal/source 2021-02-16 00:38:40 +00:00
Autobuild Process 97d194957a Update internal/source 2021-02-15 19:19:29 +00:00
Autobuild Process 45c2edd7d9 Update internal/source 2021-02-15 17:18:12 +00:00
Autobuild Process 747c665c0c Update internal/source 2021-02-15 07:57:09 +00:00
Autobuild Process ae55e06ad7 Update internal/source 2021-02-14 03:56:09 +00:00
Autobuild Process 7f4360f7da Update internal/source 2021-02-13 17:48:31 +00:00
Autobuild Process 5816b9620e Update internal/source 2021-02-13 09:24:52 +00:00
Autobuild Process df90f7c558 Update internal/source 2021-02-13 02:08:20 +00:00
Autobuild Process ee99486c01 Update internal/source 2021-02-12 00:55:44 +00:00
Fellippe Heitor 8458b4eac2 Updates help files [ci-skip] 2021-02-11 08:41:53 -03:00
Autobuild Process a59c3c7d34 Update internal/source 2021-02-11 01:48:57 +00:00
Autobuild Process 41b16cf18c Update internal/source 2021-02-10 02:45:06 +00:00
Fellippe Heitor 0d92432fbf Fixes _SCREENY for the mac. 2021-02-09 13:52:58 -03:00
Fellippe Heitor 37ea325cfa Reenables _SCREENX/SCREENY for macOS only. 2021-02-09 09:08:57 -03:00
Luke Ceddia bb3f5d3712
Revert "Enables _SCREENX/_SCREENY for macOS/Linux."
This reverts commit d4a3d7f721.
2021-02-09 17:34:10 +11:00
Autobuild Process f5b4038f17 Update internal/source 2021-02-08 14:42:20 +00:00
Fellippe Heitor 75642c31dc Merge branch 'development' into IdeTweaks 2021-02-07 22:55:58 -03:00
Roland Heyder ac33be345d
Allow type symbols in numeric DATA constants.
Done for the sake of retrocompatibility. Although those symbols are simply ignored, as the type is determined by the variable types given at the respective READ statements.
2021-02-07 22:56:08 +01:00
Fellippe Heitor d4a3d7f721 Enables _SCREENX/_SCREENY for macOS/Linux. 2021-02-07 11:54:52 -03:00
Autobuild Process 25e9a73fa1 Update internal/source 2021-02-07 10:32:23 +00:00
Fellippe Heitor 4411386ac6 Replaces some more wiki garbage before rendering help. 2021-02-06 20:16:51 -03:00
Fellippe Heitor 765472a34d Adds _LIMIT to Update Help dialog. Updates help files. 2021-02-06 18:51:34 -03:00
Autobuild Process be3aa9e9a7 Update internal/source 2021-02-06 08:28:35 +00:00
Autobuild Process 11dc156fc2 Update internal/source 2021-02-05 21:01:53 +00:00
Autobuild Process 7cf53e89bf Update internal/source 2021-02-05 04:00:01 +00:00
Autobuild Process 5bddf1699a Update internal/source 2021-02-05 03:46:03 +00:00
Autobuild Process 5828206caf Update internal/source 2021-02-03 23:36:47 +00:00
Autobuild Process 82378d2486 Update internal/source 2021-02-03 17:11:14 +00:00
Autobuild Process 3542722e83 Update internal/source 2021-02-03 12:34:14 +00:00
Autobuild Process b51e967fa1 Update internal/source 2021-01-29 05:37:23 +00:00
Autobuild Process 9cce77d051 Update internal/source 2021-01-28 02:49:25 +00:00
Fellippe Heitor 4824f9c67b Should be the same for Windows. 2021-01-27 22:19:32 -03:00
Fellippe Heitor e273baa0dd Reset EOF when SEEK is used. 2021-01-27 22:17:26 -03:00
Fellippe Heitor 443cbb39a3 Updates help files. 2021-01-27 20:43:12 -03:00
Autobuild Process 87114ffc38 Update internal/source 2021-01-27 11:39:10 +00:00
Autobuild Process 18ca0a1d49 Update internal/source 2021-01-27 11:26:02 +00:00
Autobuild Process 2d22148536 Update internal/source 2021-01-27 02:47:00 +00:00
Fellippe Heitor fe4c4996c9 Update help files. 2021-01-26 21:58:17 -03:00
Autobuild Process 0ea8a23fb1 Update internal/source 2021-01-26 15:38:16 +00:00
Autobuild Process efc5ace61c Update internal/source 2021-01-24 21:02:32 +00:00
Fellippe Heitor 813e7213b9 Updates help files. 2021-01-24 17:31:03 -03:00
Fellippe Heitor add086ce91 Updates help files. 2021-01-24 11:57:23 -03:00
Luke Ceddia 3f2f35b546
Fix some error(7) that should be error(6) 2021-01-24 23:41:55 +11:00
Autobuild Process e18a60b2d1 Update internal/source 2021-01-24 03:40:56 +00:00
FellippeHeitor ad31b4d2cc Updates help files. 2021-01-24 00:36:34 -03:00
Autobuild Process 269803b426 Update internal/source 2021-01-23 00:30:37 +00:00
FellippeHeitor 8e927a50c1 Makes TAB (not DEL) shortcut for "next" (help). 2021-01-22 21:20:43 -03:00
Autobuild Process 77e730ad84 Update internal/source 2021-01-21 06:18:09 +00:00
FellippeHeitor e45eed894d Indentation only. 2021-01-20 22:24:25 -03:00
FellippeHeitor a75adfe519 Indentation only. 2021-01-20 22:18:08 -03:00
Autobuild Process 5b7c241ac4 Update internal/source 2021-01-18 21:32:35 +00:00
Autobuild Process 30a90590f4 Update internal/source 2021-01-17 15:35:45 +00:00
Autobuild Process 3915f63f65 Update internal/source 2021-01-17 12:57:34 +00:00
Luke Ceddia c62568008d
Add _ERRORMESSAGE$ 2021-01-17 23:54:15 +11:00
Autobuild Process aaf3ae2e02 Update internal/source 2021-01-16 02:31:12 +00:00
Autobuild Process 82344f69b0 Update internal/source 2021-01-16 02:03:02 +00:00
Autobuild Process bd529ffa07 Update internal/source 2021-01-16 00:02:10 +00:00
Autobuild Process acf141cd5b Update internal/source 2021-01-15 23:34:30 +00:00
FellippeHeitor 3b07e0a262 Updates help files. 2021-01-15 04:29:25 -03:00
FellippeHeitor 79d45c2bda Updates help files. 2021-01-15 04:06:00 -03:00
Autobuild Process 1604ca1599 Update internal/source 2021-01-15 00:41:51 +00:00
Autobuild Process eaadceb483 Update internal/source 2021-01-14 14:31:23 +00:00
Luke Ceddia 6d4878d643
Make linux installer not affect mingw files 2021-01-14 22:29:19 +11:00
Autobuild Process d4008e66f1 Update internal/source 2021-01-14 03:29:11 +00:00
Autobuild Process beed603b0d Update internal/source 2021-01-14 03:03:50 +00:00
Autobuild Process e94f4c5d8d Update internal/source 2021-01-13 14:11:15 +00:00
Autobuild Process 5d735e1ce0 Update internal/source 2021-01-13 01:08:10 +00:00
FellippeHeitor 0afa42cc46 Updates help files. 2021-01-12 20:28:26 -03:00
Autobuild Process 2d42de551f Update internal/source 2021-01-12 18:31:18 +00:00
Luke Ceddia a23e8ce212 Use manual delta method for _mouseinputx/y on non-windows 2021-01-12 01:32:01 +11:00
Luke Ceddia 4060f8c046 Fix RAWINPUT struct size on 64 bit windows 2021-01-12 01:27:35 +11:00
Autobuild Process 59f141d4e5 Update internal/source 2021-01-09 13:36:41 +00:00
Autobuild Process 04b91008e5 Update internal/source 2021-01-09 06:06:38 +00:00
Fellippe Heitor 0feba87b44
Merge pull request #100 from QB64Team/ide-newfeatures
IDE new features and tweaks
2021-01-09 03:04:15 -03:00
Luke Ceddia caa96bd614
Tidy up generation of ansi sequences 2021-01-09 00:07:27 +11:00
Luke Ceddia 9634243b95
Merge branch 'development' into nix-terminal 2021-01-08 23:59:51 +11:00
FellippeHeitor f1a0146579 Updates help files one more time.
Removes references to qb64 dot net.
2021-01-07 23:49:03 -03:00
Autobuild Process 286bb1d570 Update internal/source 2021-01-06 05:56:15 +00:00
FellippeHeitor 78a0020b5c Updates help files. [ci-skip] 2021-01-04 15:46:51 -03:00
Autobuild Process ff28f4cead Update internal/source 2021-01-04 01:06:12 +00:00
Fellippe Heitor 488c4a13e0
Merge pull request #95 from QB64Team/memsound
Adds _MEMSOUND. Closes #29
2021-01-03 22:03:59 -03:00
Autobuild Process d28e69b4f9 Update internal/source 2021-01-02 04:22:43 +00:00
FellippeHeitor fb2b916602 Frees mem lock for sound handles at _SNDCLOSE. 2021-01-01 23:16:49 -03:00
Fellippe Heitor 63996d8d3d
Steve, please. 2021-01-01 15:37:17 -03:00
Autobuild Process 52a7bf29c5 Update internal/source 2020-12-31 14:15:36 +00:00
SteveMcNeill 5acd16612c Added proper formatting for spaces in CTRL-K inserts. 2020-12-31 09:12:53 -05:00
Autobuild Process ad8bbe0470 Update internal/source 2020-12-31 13:27:23 +00:00
Autobuild Process 2310ce9287 Update internal/source 2020-12-31 12:59:54 +00:00
Autobuild Process 90ed1d7dce Update internal/source 2020-12-31 05:41:36 +00:00
Autobuild Process db20865a1d Update internal/source 2020-12-31 04:50:58 +00:00
FellippeHeitor bd54eb0f39 Attempts at implementing _MEMSOUND 2020-12-31 01:40:54 -03:00
Autobuild Process 93839f367d Update internal/source 2020-12-31 04:20:25 +00:00
Autobuild Process 90d11e9bbf Update internal/source 2020-12-29 03:20:57 +00:00
Autobuild Process 2f29af1dc0 Update internal/source 2020-12-27 01:05:22 +00:00
Carlos A. Leguizamón a6fcfd51b3 Replaced way to detect macOS version and screen configuration. This way removes any output from console. 2020-12-21 11:03:34 -03:00
Autobuild Process 883b080652 Update internal/source 2020-12-18 05:20:16 +00:00
Autobuild Process 0361bf6f28 Update internal/source 2020-12-18 04:39:45 +00:00
Carlos A. Leguizamón 6d3fbe23a4 Fix for UI scale in macOS Catalina, running with 4K/Retina displays. 2020-12-07 00:57:22 -03:00
Autobuild Process ab4ce86056 Update internal/source 2020-11-04 12:46:52 +00:00
Autobuild Process b9d1389d9a Update internal/source 2020-10-21 21:03:00 +00:00
Autobuild Process 934ea99d15 Update internal/source 2020-10-18 04:17:04 +00:00
FellippeHeitor 1d07a3c802 Fixes ENVIRON$() to automatically add CHR$(0) to strings passed.
Closes #79
2020-10-18 01:14:25 -03:00
Autobuild Process e2c06c25e2 Update internal/source 2020-09-07 17:42:59 +00:00
Autobuild Process 6cf15e6f73 Update internal/source 2020-07-15 12:28:14 +00:00
Luke Ceddia 860e6cad57 $CONSOLE:ONLY on Linux no longer pulls in GL/X11 libs 2020-07-15 22:25:57 +10:00
Autobuild Process 905b6dd3e5 Update internal/source 2020-07-15 11:34:33 +00:00
Luke Ceddia 1fc89fc750 Disable linux clipboard if not in gui mode 2020-07-15 20:36:00 +10:00
Autobuild Process ec040b54e4 Update internal/source 2020-07-12 06:14:59 +00:00
SteveMcNeill 5fdcf9f583 Fix to _LOADFONT for Windows
Before we strip off the requirements (like "monospace" and such), we should first see if the font exists on the drive, since we call the routine recursively looking for it.
2020-07-05 09:47:04 -04:00
Autobuild Process b790267e4e Update internal/source 2020-06-21 20:46:05 +00:00
Autobuild Process fabbdd019d Update internal/source 2020-06-20 14:48:34 +00:00
Fellippe Heitor 930d85a540
Merge pull request #55 from NEONTEC75/development
Added tiling support to PAINT
2020-06-14 01:22:00 -03:00
Autobuild Process 36aaa449c0 Update internal/source 2020-06-14 04:03:00 +00:00
Autobuild Process e26b34801d Update internal/source 2020-06-14 03:35:49 +00:00
NEONTEC75 34bac5a168 Added tiling support to PAINT. 2020-05-24 03:53:42 +04:00
Fellippe Heitor 8c19e0b60f
Extend to UHD and 5K test for Mac computers.
Closes #47

Thanks to @familygw for the report/fix.
2020-03-11 23:10:19 -03:00
Autobuild Process 4ab1c5a724 Update internal/source 2020-03-08 16:50:31 +00:00
Autobuild Process 7ba34d5bf6 Update internal/source 2020-03-05 15:21:39 +00:00
Autobuild Process a3979f79d3 Update internal/source 2020-03-01 00:16:00 +00:00
Autobuild Process f9611409ef Update internal/source 2020-02-28 01:56:01 +00:00
Autobuild Process 208315b0ae Update internal/source 2020-02-25 00:03:13 +00:00
Autobuild Process 0c6c205f95 Update internal/source 2020-02-24 16:03:44 +00:00
Fellippe Heitor 5860026d79 Too soon to drop osx... 2020-02-20 22:02:54 -03:00
Fellippe Heitor c22ef3ac96 And clang++ where applicable. 2020-02-20 21:43:23 -03:00
Fellippe Heitor 172583fd17 Replaces g++ with clang for the remaining macOS scripts.
If a user has Homebrew installed, calling g++ won't use Apple's Xcode version of the tool, which is required by QB64. This fix continues on with the patch introduced in 4dbdddc89e.

Extra "osx" references replaced with "macOS", but nothing substantial (almost aesthetic).
2020-02-20 20:52:30 -03:00
Pirachy 4dbdddc89e Updated build.command to specifically work with Apple's Clang
Fixed an issue where Apple's Clang is forcefully used instead of GCC for compiling QB64 applications. (Fixes issues for those using true GCC via Homebrew and not Clang that just has a symlink of GCC).
2020-02-19 12:50:50 +00:00
Fellippe Heitor 997773a1d1 Fixes startup crash on macOS as described on #32 2020-02-18 10:39:31 -03:00
Autobuild Process d0cd9b92f7 Update internal/source 2020-02-13 16:28:47 +00:00
Autobuild Process e28e7fb596 Update internal/source 2020-02-13 15:12:04 +00:00
Autobuild Process 1ec0388794 Update internal/source 2020-02-10 03:29:34 +00:00
Autobuild Process 20803697dc Update internal/source 2020-02-10 00:34:15 +00:00
FellippeHeitor e4e39457a4 Updates help files with _CINP and _CONSOLEINPUT. 2020-02-08 22:46:27 -03:00
FellippeHeitor 05fdc4b00e Fixes internal calls to WIDTH after WIDTH for $CONSOLE was added.
Parameter 'int32 passed' moved to last position. Also: fixes RUN to (i) restore VIEW PRINT and (ii) clear keyboard buffers.
2020-02-08 18:03:43 -03:00
Autobuild Process d289de82b9 Update internal/source 2020-02-08 01:39:10 +00:00
Autobuild Process 1f52f57610 Update internal/source 2020-02-06 14:52:32 +00:00
Autobuild Process 1a5fbd078a Update internal/source 2020-02-04 00:29:33 +00:00
Autobuild Process c1a1aac7be Update internal/source 2020-01-29 06:12:46 +00:00
Autobuild Process 63ab48e149 Update internal/source 2020-01-29 05:38:56 +00:00
Autobuild Process e491b566a7 Update internal/source 2020-01-22 18:31:04 +00:00
Autobuild Process e551eefe97 Update internal/source 2020-01-22 18:14:16 +00:00
Autobuild Process 3ac4b2fedd Update internal/source 2020-01-22 17:29:09 +00:00
Autobuild Process 7699d8091d Update internal/source 2020-01-22 16:07:41 +00:00
Autobuild Process 326e4fbfd5 Update internal/source 2020-01-22 05:04:40 +00:00
Autobuild Process 68fdc47f45 Update internal/source 2020-01-20 19:54:12 +00:00
Autobuild Process 0f91d0f8d3 Update internal/source 2020-01-20 19:05:07 +00:00
Fellippe Heitor 7902b665ad Updates a few more help files. 2020-01-20 16:00:05 -03:00
Fellippe Heitor 75e1b07eea Begins updating help files for v1.4. [ci-skip] 2020-01-19 23:36:46 -03:00
Autobuild Process 82614df960 Update internal/source 2020-01-19 23:37:46 +00:00
Autobuild Process 7c1da918ae Update internal/source 2020-01-19 22:21:25 +00:00
Autobuild Process fcb428e7aa Update internal/source 2020-01-19 14:29:08 +00:00
FellippeHeitor ac268c740b Simplifies usage of zlib across platforms. 2020-01-18 18:48:10 -03:00
Fellippe Heitor 44c80201f2 Gets _DEFLATE$ and _INFLATE$ to work on macOS. 2020-01-18 17:50:24 -03:00
Autobuild Process 81106cb5a2 Update internal/source 2020-01-18 05:39:43 +00:00
Autobuild Process a6101af33c Update internal/source 2020-01-16 14:29:21 +00:00
Autobuild Process b845b35515 Update internal/source 2020-01-16 03:56:08 +00:00
Autobuild Process f794a0debb Update internal/source 2020-01-16 01:54:47 +00:00
Autobuild Process a9a9e32459 Update internal/source 2020-01-15 20:11:04 +00:00
Autobuild Process da8a4a7fb4 Update internal/source 2020-01-15 03:17:45 +00:00
Autobuild Process b7f1ae0ee7 Update internal/source 2020-01-15 03:11:44 +00:00
Fellippe Heitor 95664863be
Merge pull request #17 from QB64Team/detect-retina-macos
Detects Retina displays on macOS for proper scaling.
2020-01-15 00:08:38 -03:00
Fellippe Heitor 20b2ec46db Replaces CLS for terminal and enables bg color 2020-01-10 05:59:09 -03:00
Fellippe Heitor 24c2fd8ad8 Adds LOCATE support for *nix terminals 2020-01-10 05:42:22 -03:00
Fellippe Heitor 04d4ad569d Color support for *nix terminals 2020-01-10 05:23:39 -03:00
Fellippe Heitor 21cdb70efe
Trigger recompilation 2020-01-08 09:06:28 -03:00
Fellippe Heitor 0f1f63eda8 Detects Retina displays on macOS for proper scaling. 2020-01-06 12:09:15 -03:00
Autobuild Process 7a19f82051 Update internal/source 2020-01-04 12:49:17 +00:00
Autobuild process 1e395ee3c5 Autobuild update [ci skip] 2020-01-03 05:53:27 +00:00
Fellippe Heitor bcc05e8b15
Merge pull request #118 from Galleondragon/rename-zlib-folder
Renames zlib's folder so it can be updated without the hassle later on.
2020-01-03 02:46:17 -03:00
Autobuild process 71abea04c5 Autobuild update [ci skip] 2020-01-03 05:43:20 +00:00
FellippeHeitor 8708aa73b0 If it looks stupid but works, is it really stupid? Closes #90 2020-01-03 00:36:14 -03:00
FellippeHeitor 51710ddcd3 Renames zlib's folder so it can be updated without the hassle later on. 2020-01-02 23:00:51 -03:00
Fellippe Heitor 9f89e063f7
Trigger recompilation 2020-01-02 20:18:06 -03:00
Autobuild process 7c3210ee53 Autobuild update [ci skip] 2020-01-02 23:13:27 +00:00
FellippeHeitor 7c9eafbadb Replaces _TOGGLE_(KEY)LOCK with _(KEY)LOCK ON/OFF/_TOGGLE. Also:
- Changes CFont to sub__consolefont and func_CInp to func_cinp, in alignment with the rest of libqb/qbx.
- Adds stubs to all new console functionality, so we can still ship for other OSes with no bigger issues.
- Adds new keywords to syntax highlighter.
2020-01-02 19:55:58 -03:00
FellippeHeitor 114bd7b5a8 Adds stubs for _INFLATE$ and DEFLATE$ for OSes other than Windows.
These will return the unchanged text$ passed for now.
2020-01-02 17:35:02 -03:00
Fellippe Heitor fdf3fe9a02
Merge pull request #116 from Galleondragon/issue81
Fix issue #81
2020-01-02 13:01:04 -03:00
Luke Ceddia ae379cb29c Fix issue #81 2020-01-03 00:09:21 +11:00
Fellippe Heitor 7bf6dbb6e9
Trigger recompilation 2020-01-02 06:20:08 -03:00
Autobuild process ddc1a82a7a Autobuild update [ci skip] 2020-01-02 09:03:42 +00:00
flukiluke fe920f921b
Merge pull request #114 from Galleondragon/add-assert
Adds $ASSERTS, $ASSERTS:CONSOLE and _ASSERT condition[, message$]
2020-01-02 19:55:55 +11:00
Luke Ceddia 8f72d58c57 Manually update internal/source 2020-01-02 19:10:56 +11:00
flukiluke 37d19a9809
Merge pull request #92 from ghost/x11-clipboard-fix
Fix X11 BadAtom errors that prevent IDE launch
2020-01-02 14:20:22 +11:00
Luke Ceddia 1c365c2bb8 Manually apply PR #93 chmod +x .command files 2020-01-02 14:13:56 +11:00
FellippeHeitor 49f265f1c2 Adds $ASSERTS, $ASSERTS:CONSOLE and _ASSERT condition[, message$] 2020-01-01 18:20:30 -03:00
FellippeHeitor f1e26b2010 Prepares QB64 for bootstrapping with _ASSERT in mind. [ci skip] 2020-01-01 18:19:51 -03:00
Autobuild process 6c513f9fba Autobuild update [ci skip] 2020-01-01 15:33:19 +00:00
Autobuild process 9b3753b40c Autobuild update [ci skip] 2020-01-01 15:03:09 +00:00
Autobuild process d1c3149528 Autobuild update [ci skip] 2019-12-31 05:53:18 +00:00
Autobuild process 7e4d97fa95 Autobuild update [ci skip] 2019-12-30 02:53:19 +00:00
FellippeHeitor 7262febc94 Fixes _CONNECTIONADDRESS. Closes #100 2019-12-23 01:01:52 -03:00
Autobuild process 44436d9ceb Autobuild update [ci skip] 2019-12-17 15:48:29 +00:00
Autobuild process d9fa0e68c2 Autobuild update [ci skip] 2019-12-17 12:23:45 +00:00
Fellippe Heitor 60c587386f
Merge pull request #109 from RhoSigma-QB64/development
extended support for &B prefixed number strings
2019-12-08 11:57:18 -03:00
Fellippe Heitor c848e0d40e
Merge pull request #108 from QB64Cobalt/development
Corrections to Bit Routines to allow for unsigned integer64 values
2019-12-08 11:55:14 -03:00
Roland Heyder d40902a1ed
extended support for &B prefixed number strings
Aditonal to VAL, the &B prefixed numbers are now also recognized by INPUT (keyboard and file input) and also by READ, if those numbers are noted in DATA statements.
2019-12-08 01:13:57 +01:00
SteveMcNeill 752a444544 Update to enable SLEEP with a set TIME for use with Windows Console 2019-12-07 08:46:29 -05:00
QB64Cobalt 539a71ef25
Update qbx.cpp 2019-12-05 07:08:31 -08:00
SteveMcNeill 58b82dff13 Minor change to bit routines, added ability to ignore warnings in IDE 2019-12-04 12:30:02 -05:00
SteveMcNeill 472bf29d99 Change to the Console Font routine.
CFont uses a few function calls which aren't supported by anything older than Windows Vista, while QB64 otherwise works all the way back to Windows XP.  Since there's no desire to make us lose functionality with older systems and obsolute them to oblivion, the code has been commented out and replaced with a stub as default.  Users of older machines can simply use it "as is", as can folks who don't care about console functionality.  Users with versions of Windows from Vista up, can simply uncomment the code (comment out the placeholder stub), and then purge libqb so we automatically rebuild our library to make use of the routine.

It seemed the easiest way to keep it in there, more or less, so that people who wanted to use it can, while not bothering the rest of the user base.  There just needs to be  a short note wrote up in the documention on how to "enable the command", but it's not a hard process (uncomment a few lines, comment a few others, and run a batch file -- if a programmer can't handle that much, then they don't need the command to start with...).
2019-11-29 04:01:22 -05:00
SteveMcNeill c1142e67ce Change to _PUTIMAGE so _SOURCE can be the same as _DEST without erroring out. 2019-11-27 03:22:07 -05:00
Fellippe Heitor 5ff044b027
Merge pull request #104 from QB64Cobalt/development
Added 4 New Bit Functions
2019-11-16 22:08:22 -03:00
QB64Cobalt d0935e041e
Update qbx.cpp 2019-11-16 16:20:22 -08:00
SteveMcNeill 0c1dcaf541 Minor patch to SLEEP and the console, so it only responds with keydown events and not key up events. 2019-10-30 17:57:33 -04:00
SteveMcNeill eba05938bb Pushed changes to enhance the Windows Console Experience
Window's CONSOLE support has been extended so that:

CSRLIN support added.
POS(0) support added.
LOCATE support added. (Works with optional parameters.)
COLOR support added.
SCREEN support added to get both character and color information of any point on the console.
tab() glitch fixed. (Which could cause an endless loop when printing with comma spaced text/numbers.)
_WIDTH support added.
_HEIGHT support added.
WIDTH support added, with 2 new parameters added so we can set the buffer width and buffer height also.
CLS support semi-added.  (Doesn't accept colored backgrounds; it clears the screen black.  I'm getting tired of working up console stuff which I probably won't ever use myself...)
SLEEP support added.
END support added so we now end with any keypress and not just enter.

_CONSOLEINPUT added, so we can tell the difference in mouse and keyboard input.
_CINP(toggle) support added, which allows us to get single character keystrokes from the console.
_CONSOLEFONT FontName, FontSize support added, which allows us to change the font and font size we use for the console.
_CONSOLECURSOR _SHOW|_HIDE, cursorsize support added, which allows us to show or hide the cursor in the console, and to change its size (from 0 to 100), as desired.

New keyboard commands added:

_CAPSLOCK -- returns 1 if caps lock is on, 0 if it isn't.
_NUMLOCK -- as above, but for num lock
_SCROLLOCK -- as above, but for scroll lock

_TOGGLE_CAPSLOCK -- toggles the caps lock state for us.
_TOGGLE_NUMLOCK -- same, but for num lock
_TOGGLE_SCROLLOCK -- same, but for scroll lock
2019-08-27 19:52:02 -04:00
SteveMcNeill 449bdecacd Adding ZLIB into the QB64 parts system for windows.
Two new keywords added:
FUNCTION _INFLATE$ (text$)
FUNCTION _DEFLATE$ (text$)

Use of these commands can compress and decompress strings using the ZLIB library.
2019-08-27 18:22:07 -04:00
SteveMcNeill f01d13f957 Quick patch to _STRICMP. Enhancement to $COLOR not affecting line numbers. 2019-08-27 17:27:35 -04:00
Autobuild process 9805accab2 Autobuild update [ci skip] 2019-04-28 11:54:47 +00:00
FellippeHeitor cc00228635 Adds extra help files that were being ignored. [ci skip] 2019-04-14 22:20:04 -03:00
FellippeHeitor a3a1047a8a Updates help files [ci skip] 2019-04-14 22:15:33 -03:00
FellippeHeitor 729557fda2 Oh,... and this. The last bit of virtual keyboard vestige. 2019-04-14 22:01:56 -03:00