Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - odin

Pages: 1 2 [3] 4 5 ... 7
31
QB64 Discussion / MOVED: EOF is not reset when using seek
« on: March 15, 2020, 06:51:44 am »

32
Programs / Re: Space Travel w/ Multi-Layered Stars
« on: March 08, 2020, 10:43:05 pm »
Not okay.

35
QB64 Discussion / MOVED: Not that TIME really matters ...
« on: February 26, 2020, 12:19:19 am »

36
QB64 Discussion / MOVED: bplus avatar
« on: February 23, 2020, 12:06:43 am »

37
QB64 Discussion / Re: Wiki accounts: apply here.
« on: February 21, 2020, 12:51:26 am »
Wiki software upgraded. Credentials reset.

@All contributors: check your emails, please.

38
QB64 Discussion / QB64 v1.4 released
« on: February 13, 2020, 02:36:00 pm »
 [ You are not allowed to view this attachment ]

Get the latest version from https://github.com/QB64Team/qb64/releases/tag/v1.4

Changelog available at https://www.qb64.org/portal/changelog-of-v1-4/

39
QB64 Discussion / QB64 v1.4 Release Candidate up for testing
« on: January 19, 2020, 11:18:54 am »
First things first, we have moved development to a new GitHub repository. Follow us at https://github.com/QB64Team/qb64.

Although we don't follow a strict schedule regarding updates to QB64, every once in a while a feature that's been requested gets implemented or a new bug is found and then fixed, and eventually we have enough for a new release.

We have named the upcoming release QB64 v1.4, and it's already available in the development channel (accessible at http://www.qb64.org/devbuilds.php). Although you can follow development by checking out our repository on GitHub (https://github.com/QB64Team/qb64/commits/development), the time for us to compile a more concise changelog has finally come.

One big change worth mentioning first, since it affects QB64 code from now on in a big way, is the new $NOPREFIX metacommand.

QB64-specific keywords, those that expand on the original set of keywords from QBasic/QuickBASIC 4.5, which we aim to replicate, are those that start with an underscore. It has been designed that way so that, in the event that you want to load an older program you wrote back in the day that had variables or procedures with identical names, they would not collide with the new keywords, making it possible to use QB64 entirely as you did with QBasic but also add the new functionality without breaking anything.

However, we have over the years been following our userbase create more and more programs that have no dependency whatsoever on older code, which means these aren't just QBasic programs with benefits, but actually QB64-native programs, written from scratch with QB64 in mind.

All that said, the new $NOPREFIX metacommand allows you, for the first time ever, to write QB64 programs without having to add the leading underscore to use the modern keywords.

That will allow code like this:

Code: QB64: [Select]
  1. SCREEN _NEWIMAGE(800, 600, 32)
  2. COLOR _RGB32(255), _RGB32(255, 0, 255)
  3. m$ = "Hello, world!"
  4.  
  5.     _DISPLAY
  6.     _LIMIT 30
To be written as:

Code: QB64: [Select]
  1. SCREEN NEWIMAGE(800, 600, 32)
  2. COLOR RGB32(255), RGB32(255, 0, 255)
  3. m$ = "Hello, world!"
  4. PRINTSTRING ((WIDTH - PRINTWIDTH(m$)) \ 2, (HEIGHT - FONTHEIGHT) \ 2), m$
  5.  
  6.     DISPLAY
  7.     LIMIT 30
  8. LOOP UNTIL KEYHIT
With the new metacommand in use, a program can both use _DISPLAY and DISPLAY, for example. User variables and procedures still cannot start with a single underscore (double underscores are accepted).

Here's the complete changelog, for now. We invite you to try the development build and help us test (and try to break) the new features, so that we can polish everything for release as soon as possible:

https://www.qb64.org/portal/changelog-of-v1-4/

40
QB64 Discussion / MOVED: Fires in Australia
« on: January 04, 2020, 12:55:22 pm »

41
QB64 Discussion / Re: macOS Catalina
« on: December 23, 2019, 05:34:23 pm »

42
QB64 Discussion / Re: Security warning
« on: December 01, 2019, 05:30:54 am »
Yes, they were.

43
QB64 Discussion / Re: Security warning
« on: December 01, 2019, 05:11:11 am »
Solved.

44
QB64 Discussion / Re: Wiki accounts: apply here.
« on: November 24, 2019, 10:39:27 pm »
Check your email.

Pages: 1 2 [3] 4 5 ... 7