We are very happy to announce the first final release of SpiderBasic, after a very long development time ! It was quite a journey to create a new product which seems like PureBasic, but which is really a different thing. So far, it's only a 1.00, so don't expect to have a feature complete or bug free product, but it's a start. When I rememeber the shape of PureBasic 1.00, I can tell you than SpiderBasic 1.00 is in a totally different league

The development took a longer time, so we extended the free access for PureBasic users to SpiderBasic until 1st july 2015 (on your PureBasic online account).
Check out the brand new website: http://www.spiderbasic.com
and be sure to use the forums to report anything wierd (including on the website and demo packages), so it can be improved quickly: http://forums.spiderbasic.com
Have fun and enjoy some web development !

The Fantaisie Software Team
previous posts:
beta 2 is out !
Code: Select all
- Full english doc
- Added ParseXML()
- Many bug fixes
beta 1 is out !
Code: Select all
- Added OS X and Linux support
- Added full JSON support
- ExportImage(), ExportJSON(), ExportXML() to send the specified objects as download to the user
alpha 7 is out !
Code: Select all
- Added AllocateStructure/FreeStructure()
- Chnaged the signature of the 'Loaded/Error' callback, the objectId as been added
- Added OpenFileRequester()/NextSelectedFile() and #PB_LocalFile support for LoadImage/XML/JSON()
- New IDE feature like Issue tool and more
Code: Select all
- Added 'UserData' optional parameter to HttpRequest()
- Added GetGadgetItemText() support to WebGadget() (from same site only)
- Reworked AMD module handling to have a better code isolation
- Bug fixes
Code: Select all
- Added: RegularExpression library
- Added: Import/EndImport support for variables and functions
- Added: "!" full inlined javascript support
- Added: EnableJS/DisableJS to put big javascript blocks in programs
- Added: CallDebugger support for native browser debugger (the FireFox/Chrome debugger needs to be opened first).
- Added: FrameGadget()
- Added: #PB_Compiler_InlineJavascript compiler constant
Code: Select all
- Added: XML Library (see Xml.sb)
- Added: Font Library
- Added: #PB_Window_Background and #PB_Window_BorderLess flags for OpenWindow()
- Added: TreeGadget(), nested SplitterGadget()
- Added: DesktopWidth()/DesktopHeight()/DesktopDepth()/DesktopName()/ExamineDesktop(), DesktopMouseX(), DesktopMouseY()
- Added: HTTPRequest() with #PB_HTTP_Get and #PB_HTTP_Post type
- Added: URLEncoder(), URLDecoder()
- Added: ChangeCurrentElement(), CopyList(), InsertElement(), MergeLists(), MoveElement()
- Added: PopListPosition(), PushListPosition(), SplitList(), SwapElements()
- Added: PopMapPosition(), PushMapPosition()
- Added: RandomSeed(), DrawText(), TextWidth(), TextHeight(), DrawingFont()
- Added: SetFrameRate(), CreateSprite(), SpriteOutput()
- Added: SortArray(), SortList(), RandomizeArray(), RandomizeList()
- Added: CopyImage(), ImageDepth(), ResizeImage(), GrabImage(), ImageFormat()
- Added: .sb/.sbi/.sbp/.sbf extension support for the SpiderBasic IDE
- Added: optimization option in compiler window based on Google Closure Compiler (requires java)
- Added: port and optimization options in the IDE (in Compiler Options)
- Added: image support for menu item
- Added: automatic grayed toolbar icon when disabled
Code: Select all
- Added: ContainerGadget(), ListIconGadget() and TreeGadget() (See GadgetOverview.pb example for a demo)
- Added UseGadgetList()
Why the SpiderBasic name ? Well, spider, web, basic, should I say more ?

to develop rich web applications (JavaScript/HTML5/WebGL) based on the PureBasic syntax. Even if the syntax is close, there is fondamental differences
in the program workflow between PureBasic and SpiderBasic. In JavaScript, there is no blocking operations, all is asynchronous. For example, LoadImage()
will return immediately and you will have to wait for a callback announcing the load is done. So it was not possible to create just a new backend for PureBasic
and run a PureBasic program on the web. That's why we decided to fork PureBasic completely and made a new language to have greater control over the
commandset and command design. You can still write a program which will work in PB and SB, but it will need some care and probably some CompilerIf.
For now, we are targeting major browsers (firefox, chrome, ie and safari) in their lastest versions. In the long run, Android and iOS support could be
added as subsystems to be allow to create native applications or game with SpiderBasic !
SpiderBasic is a new commercial program which will be available for 49 euro with all minor upgrades included. When a major version will be
released a new license will be needed (will happen about every 1 or 2 years, like PureBasic). The website and support forums will be launched when SpiderBasic
will be stable enough to be released.
As a gift for your support, SpiderBasic will be free until 31 dec. 2014 to all registered PureBasic user ! It's available right now on your
online account

Important: this is an alpha version, so while it can run some programs, it's far from being stable or feature complete. Your comments are welcome
as well as your bug reports. You can report them here: http://www.purebasic.fr/english/viewforum.php?f=41
1) Don't install it in "Program Files" directory or the examples couldn't be run out of the box. The examples needs to be put in a writable directory
as an .html file is created side by side to the SpiderBasic file.
2) Open one example (look in the "Examples" drawer of the SpiderBasic installation folder
3) Press "compile" and it should launch your default web browser and display the program.
Limitations against PureBasic compiler:
- Bitwise operands like '<<', '>>', '^', '!' only works on 32-bit numbers
- Quads are not real 64-bit quads but 53-bit only.
- Float are handled like double (32-bit float doesn't exists)
- Integer type other than 'quad' and 'integer' are subject to slow casting to respect their range
- '?' operator to get the labels address is not supported
- 'Break' doesn't support a level parameter
- No 'Goto'
- No 'Gosub'
- No 'End'
Supported libraries:
2DDrawing
Array
Date
Font
Gadget
Image
Joystick
Keyboard
LinkedList
Map
Math
Menu
Mouse
Runtime
Screen
Sound
Sprite
String
System
ToolBar
Window
XML
Libraries limitations:
Gadget:
- Get/SetGadgetFont() not implemented
- ScrollBar() not implemented
- MDIGadget() not implemented
- ExplorerGadgets() not implemented
- IPAddressGadget() not implemented
- ShortCutGadget() not implemented
- Get/SetGadgetItemColor() not implemented
2DDrawing:
- Only outlined and standard mode supported for now
- Gradient functions not implemented
- Custom filter not implemented
- DrawingBuffer() not implemented
- DrawRotatedText() not implemented
- AlphaBlend() not implemented
- DrawingFont() not implemented
- DrawAlphaImage() not implemented
- FillArea() not implemented
- GrabDrawingImage() not implemented
Date:
- ParseDate() not implemented
Image:
- CatchImage() not implemented
- EncodeImage() not implemented
- SaveImage() not implemented
Math:
- RandomData() not implemented
Window:
- No window maximize/minimize buttons
- WindowOutput() not implemented
- Get/SetWindowState() not implemented
- Get/SetWindowColor() not implemented
- PostEvent() not implemented
- DisableWindow() not implemented
- WindowEvent()/WaitWindowEvent() not supported (use BindEvent() instead)
- Add/RemoveKeyboardShortcut()
String:
- StringByteLength() not implemented
ToolBar:
- ToolBarStandardButton() not implemented
XML:
- CreateXMLNode() syntax is different
- SetXMLNodeName() is not available
Known issues:
- The doc is the one from PureBasic
- The icons and extensions are one from PB as well

- No runtime debugger ("Debug" works and output to browser console)
- Not optimized
Don't hesitate to play with it, publish your small programs (tell us if you want them included in the final package) and report bugs here:
Have fun with SpiderBasic and don't be too harsh with it, it's still in early stage !
The Fantaisie Software Team.