SpiderBasic 2.40 is out !

Everything else that doesn't fall into one of the other categories.
Joubarbe
Posts: 12
Joined: Fri Sep 25, 2020 1:35 pm

Re: SpiderBasic 2.40 beta 1 is ready !

Post by Joubarbe »

Last time I checked (a while!), it was quite complicated, but then I just found this thread by falsam, explaining how to create an Android app, plus other sticky threads. A bit obscure to put that in Tricks'n'Trips no? Should be in the official documentation; I wouldn't know how to distribute my app without those links.

Thanks for keeping SB alive :)

EDIT: I read in the doc, " Before publishing an Android app on GooglePlay, it needs to be signed, SpiderBasic doesn't handle it automatically for now." Is there any plan to render this process automatic?
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.40 beta 1 is ready !

Post by Fred »

About the Falsam thread, I agree, I will put it in the doc.

Signing is a bit off topic because you need to generate your own keys, store them somewhere etc. May be I could put a field to ask for your key and call the sign tool after build, it's not much help IMHO
plouf
Posts: 194
Joined: Tue Feb 25, 2014 6:01 pm
Location: Athens,Greece

Re: SpiderBasic 2.40 beta 1 is ready !

Post by plouf »

Guess it means a) new api target for app store upload
B) aab format for app store upload
C) some "imternal way to atrach keyfile during compilation of apk/aab
Christos
CplBator
Posts: 3
Joined: Thu Oct 20, 2022 5:45 pm

Re: SpiderBasic 2.40 beta 1 is ready !

Post by CplBator »

- Added Packer library: CompressMemory(), UncompressMemory(), CompressString(), UncompressString()
What is the compressor behind ? i want to communicate with purebasic application.
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: SpiderBasic 2.40 beta 1 is ready !

Post by Peter »

CplBator wrote: Thu Oct 20, 2022 5:49 pm
- Added Packer library: CompressMemory(), UncompressMemory(), CompressString(), UncompressString()
What is the compressor behind ?
see https://github.com/nodeca/pako
CplBator
Posts: 3
Joined: Thu Oct 20, 2022 5:45 pm

Re: SpiderBasic 2.40 beta 1 is ready !

Post by CplBator »

Thank Peter, zlib so, i think UseZipPacker() in purebasic is the solution, i will try this way.
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.40 beta 1 is ready !

Post by Fred »

Yes, it should work.
CplBator
Posts: 3
Joined: Thu Oct 20, 2022 5:45 pm

Re: SpiderBasic 2.40 beta 1 is ready !

Post by CplBator »

Infortunaly, no
I send compressed raw data with purebasic ( i've checked any potential error with pb before )
Uncaught incorrect header check pako.min.js:2
Non compressed data work well , i can communicate with pb/sb , is not an endianess problem as i suspected at first, maybe not the same version of compressor ?
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.40 beta 1 is ready !

Post by Fred »

I admit I didn't cross tested it, I will take a closer look.
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.40 beta 2 is ready !

Post by Fred »

The beta 2 is available ! It fixes a lot of (old) bugs and bring a few more new stuffs:

Code: Select all

- Added #PB_EventType_Focus and #PB_EventType_LostFocus to TreeGadget()
- Added #PB_Tree_Expanded support to SetGadgetAttribute() for TreeGadget() to quickly expand/collapse all nodes
- Added HighAccuracy parameter to StartGeolocation() to use the real GPS if available.
- Added #PB_ListIcon_GridLines support

- Updated: android framework to android-32 to be able to publish app on Google PlayStore
- Updated: the application license file
Post Reply