Basicprogramming(.org) > SmallBASIC

0.12.13 Released

(1/4) > >>

chrisws:
SmallBASIC 0.12.13 is now available.

There's not a huge list of changes, but a few nice things.

- Pressing F2 in the editor now loads the help page in the new web site.
- Pressing F11 now toggles full-screen mode.
- Fixed the SEQ bug

Plus some other changes you can read about here:

http://smallbasic.github.io/posts/2018-09-13.html

Cheers,
Chris

PS: Check my new android game "Air cave"


B+:
Ah good! Tested window sizing with Johnno's Parallax Image Test mod 2018-02-04 (attached) now mod'd again today.

Oh my full screen is full!, good bye task bar access. f2 works Window (help reference) is under graphics, I guessed System first.

B+:
Another test of Window .ask

--- Code: ---' window ask test.bas SmallBASIC 0.12.13 (B+=MGA) 2018-09-13

w = window()
w.ask("Would you like to test a yes or no question?", "Test a Yes/No Question")
? "You selected ";
if w.answer then print "No." else print "Yes."
pause



--- End code ---

chrisws:

--- Quote from: Tomaaz on September 14, 2018, 02:43:33 PM ---
--- Quote from: John on September 13, 2018, 07:10:59 PM ---Script BASIC using MsgBox.

--- End quote ---
I've just build the newest version from source on 32-bit Linux and it seems to work fine. :)

--- End quote ---

Hi Tomaaz,

If you are okay with building from source code there's something you might like to try:

1. clone or download the SmallBASIC plugins project:
$ git clone https://github.com/smallbasic/smallbasic.plugins.git

2.  build the plugins project
$ ./configure && make

3. setup environment variable SBASICPATH, something like this:
export SBASICPATH=/home/chrisws/src/smallbasic.plugins/nuklear/.libs

4. switch over to your SmallBASIC checkout, then
$ ./configure && make

5. Run the nuklear overview.bas sample:
./src/platform/console/sbasic ../smallbasic.plugins/nuklear/samples/overview.bas

You should see something like the attached image

Here's a link to the overview.bas program:
https://github.com/smallbasic/smallbasic.plugins/blob/master/nuklear/samples/overview.bas


Tomaaz:
To be honest - I'm not scared of compiling from source, but I wouldn't say I'm a fan. ;) I will try. Is step 4 compiling SmallBasic itself or do I need to do all steps after I have SmallBasic already build?

Navigation

[0] Message Index

[#] Next page

Go to full version