1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-08-22 11:25:08 +00:00
Commit graph

811 commits

Author SHA1 Message Date
Autobuild Process
dcb548e32e Update internal/source 2021-07-12 15:57:06 +00:00
Autobuild Process
6d696aed4d Update internal/source 2021-07-12 15:47:24 +00:00
Autobuild Process
343218d4b0 Update internal/source 2021-07-12 01:06:39 +00:00
Autobuild Process
7d73fa5beb Update internal/source 2021-07-12 00:07:48 +00:00
Fellippe Heitor
7b853bf9f2 First attempt at implementing Step. 2021-07-11 12:55:49 -03:00
Autobuild Process
d01f824a66 Update internal/source 2021-07-09 11:16:22 +00:00
Fellippe Heitor
b59aa4d7af Begins prototyping a $DEBUG metacommand. 2021-07-09 08:08:49 -03:00
Autobuild Process
fd22b9b319 Update internal/source 2021-07-08 03:23:33 +00:00
what
c622ae9592
Remove 255 char limit for INPUT
Also affects `LINE INPUT`
2021-07-05 19:39:24 -04:00
Zachary Spriggs
f90a45a2cf Allow $CONSOLE:ONLY programs to return _WINDOWHANDLE
We previously only allowed GUI QB64 programs to return a value in _WINDOWHANDLE. Following Microsoft's recommendation for obtaining a console program's handle, we can now return the handle in a $CONSOLE:ONLY program https://docs.microsoft.com/en-us/troubleshoot/windows-server/performance/obtain-console-window-handle
2021-07-02 11:17:32 -04:00
Autobuild Process
ad637cc5cf Update internal/source 2021-06-23 19:41:02 +00:00
Autobuild Process
2e8925a17c Update internal/source 2021-06-23 17:06:14 +00:00
Zachary Spriggs
e799e79012 Add %TEMP% to _DIR$() folder specifications
Adds the %TEMP% directory to `_DIR$()` folder specifications.
2021-06-21 20:25:21 -04:00
Zachary Spriggs
4a66dabf08 Add Program Files & Program Files (x86) to _DIR$()
This change adds the Program Files and Program Files (x86) folder specifications to the `_DIR$()` function.

`Print _Dir$("program files")
Print _Dir$("program files x86")`
2021-06-21 17:01:23 -04:00
Autobuild Process
22134a4c83 Update internal/source 2021-06-20 03:06:54 +00:00
Luke Ceddia
bf32a6a0fc
Explicitly set x87 fpu to extended precision mode 2021-06-17 23:51:08 +10:00
Luke Ceddia
7cc7618b8c
Revert 21984092 & 3c829db8 due to compiler failures introduced 2021-06-14 17:59:39 +10:00
Autobuild Process
3c829db8b2 Update internal/source 2021-06-03 03:06:21 +00:00
Autobuild Process
337055b2e5 Update internal/source 2021-05-27 23:11:34 +00:00
Fellippe Heitor
5e05664896 Removes Sleep(0) from qbs_inkey
Addresses #166
2021-05-24 16:19:55 -03:00
Autobuild Process
22de56f4e9 Update internal/source 2021-05-23 15:23:18 +00:00
Autobuild Process
7fa600acb9 Update internal/source 2021-05-22 00:05:07 +00:00
Fellippe Heitor
b6705f2880 Updates help files. 2021-04-25 19:40:25 -03:00
Zachary Spriggs
50e877acf5 Revert "Update internal/source"
This reverts commit b693e7667b.
2021-04-09 18:11:25 -04:00
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