Results 1 to 9 of 9

Thread: thinBasic Beta 1.8.4.x

  1. #1
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    thinBasic Beta 1.8.4.x

    thinBasic Beta 1.8.4
    Download from: http://www.thinbasic.biz/projects/th...ic_1.8.4.0.zip


    Some bugs fixed from previous beta and few more features

    • thinCore: Fixed handling of #IF / #ELSE / #ENDIF pre-parsing directive
    • thinCore: hopefully improved RAWTEXT ... END RAWTEXT to be more usable for multiline strings
    • thinCore: new function working on BITs
    • thinCore: added complete set of predefined color equates named %RGB_....
    • thinAir: fixed author, computername, username macros in script templates
    • thinAir: added new bookmark comment
    • thinAir: added new breakpoint comment
    • thinDebug: breakpoint comments will be automatically recognised by debugger as execution breakpoints
    • TBAI module: added thinAir keywords recognition, added module example
    • UI module: added again few Canvas functionality: Canvas_Width, Canvas_Style
    • Oxygen module: updated to the latest available on SVN server (examples included)
    • TBGL module: updated to the latest available on SVN server


    ... see thinBasic help for complete and detailed list of changes.

    More updates in next few weeks

    Regards
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  2. #2
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: thinBasic Beta 1.8.3.x

    Thanks,

    very much appreciated

    Regarding the TBGL side of the things - I added one new command called TBGL_EntityEnumByDataSignature. You can see the help file for detailed description,
    functionality will be covered by article in following weeks (few more related commands might be added in the meantime).


    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  3. #3
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: thinBasic Beta 1.8.4.x

    Sorry for those of you that have already downloaded beta version 1.8.3 but I could not resist to release beta 1.8.4 with new features in thinAir comments: bookmarks and breakpoints.
    Also aded few more features and fix last minute bugs.
    See first post in this thread.

    So download new beta 1.8.4.0 from: http://www.thinbasic.biz/projects/th...ic_1.8.4.0.zip
    if you want to take advantage of it.

    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  4. #4
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: thinBasic Beta 1.8.4.x

    Ok, sorry this is the last refresh (for a week or so ).

    I just checked and Charles (Pegge) has updated Oxygen module on SVN server few minutes ago so it is worth to have latest Oxygen module version inside this thinBasic beta 1.8.4.0
    If you have downloaded it few minutes ago, please get it again (in any case the only difference is Oxygen module).



    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  5. #5

    Re: thinBasic Beta 1.8.4.x


    Many Thanks Eros.

    More changes in the pipeline.

    The latest Oxygen has a forward referencing switch #lookahead on to eliminate the need for declare statements at the top of a script.

    Also various internal changes to support 64bit compiled basic. I have 64bit DLLS and EXE working in Assembler but with substantial Basic functionality, which greatly simplifies developing the run-time library.

    It has kept me very quiet over the last few weeks, but I try to keep up with all the forum postings !

    Charles

  6. #6

    Re: thinBasic Beta 1.8.4.x

    Guys,

    thanks for all the effort you put into this. It is appreciated very much

    Michael

  7. #7
    thinBasic MVPs
    Join Date
    May 2007
    Location
    UK
    Posts
    1,427
    Rep Power
    159

    Re: thinBasic Beta 1.8.4.x

    Thanks for the update and I like the BIT reading function perhaps a BITSET function would be nice as well

    you need to tweak your example

    [code=thinbasic]PrintL "Bit 0 is ", Bit(l, 0) '---Will return 1 because bit 0 (LSB) is 1
    PrintL "Bit 31 is ", Bit(l, 31) '---Will return 1 because bit 31 (MSB) is 1
    PrintL "Bit 20 is ", Bit(l, 20) '---Will return 0 because bit 20 is 0
    PrintL "Bit 19 is ", Bit(l, 19) '---Will return 1 because bit 19 is 1
    [/code]
    Home Desktop : Windows 7 - Intel Pentium (D) - 3.0 Ghz - 2GB - Geforce 6800GS
    Home Laptop : WinXP Pro SP3 - Intel Centrino Duo - 1.73 Ghz - 2 GB - Intel GMA 950
    Home Laptop : Windows 10 - Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz, 2401 Mhz, 2 Core(s), 4 Logical Processor(s) - 4 GB - Intel HD 4400
    Work Desktop : Windows 10 - Intel I7 - 4 Ghz - 8GB - Quadro Fx 370

  8. #8
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: thinBasic Beta 1.8.4.x

    Quote Originally Posted by Michael Clease
    ... perhaps a BITSET function would be nice as well
    I will.

    Quote Originally Posted by Michael Clease
    you need to tweak your example
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  9. #9
    thinBasic MVPs kryton9's Avatar
    Join Date
    Nov 2006
    Location
    Naples, Florida & Duluth, Georgia
    Age
    67
    Posts
    3,869
    Rep Power
    404

    Re: thinBasic Beta 1.8.4.x

    grabbing the new version now, thanks guys.
    Acer Notebook: Win 10 Home 64 Bit, Core i7-4702MQ @ 2.2Ghz, 12 GB RAM, nVidia GTX 760M and Intel HD 4600
    Raspberry Pi 3: Raspbian OS use for Home Samba Server and Test HTTP Server

Similar Threads

  1. thinBasic Beta 1.8.6.0
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 31
    Last Post: 07-05-2011, 11:06
  2. thinBasic Beta 1.8.2.x
    By ErosOlmi in forum thinBasic Beta testing
    Replies: 13
    Last Post: 21-06-2010, 10:10

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •