Page 2 of 3

Re: SpiderBasic 3.10 beta 1 is ready !

Posted: Sun Jun 08, 2025 9:13 am
by tj1010
Fred wrote: Mon Jun 02, 2025 1:51 pm
Caronte3D wrote: Mon Jun 02, 2025 9:24 am We must update the Java version?
I get this error trying your native notification example (on Android):

Code: Select all

A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
> Android Gradle plugin requires Java 17 to run. You are currently using Java 11.
EDIT:
Ok, with Java 17 compiles.
It's deprecated, but we can download it from:
https://jdk.java.net/archive/
When updating cordova, all the toolchain is upgraded and it often requiers a newer Java. So yes, Java 17 is needed now instead of Java 11.
It builds apps here by just extracting in downloads and setting "Downloads\openjdk-17.0.0.1+2_windows-x64_bin\jdk-17.0.0.1\" in SB preferences; no %PATH% stuff neeed. "JDK 11 Path (JDK 12+ not supported)" needs changed in preferences UI along with links and text in "Creating App" and "Using the command line compiler"

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Mon Jun 30, 2025 9:56 am
by Fred
2025-06-30: Beta 2 is ready, with an updated doc for 3.10 and some new stuff:

Code: Select all

- Added: HeaderSection/EndHeaderSection to easily custozime the HTML </head> tag
- Added code signing for Windows installer and exe to avoid scary warning when installing
Here is an example on how to use it (you can check the doc as well):

Code: Select all

HeaderSection
  <meta name="description" content="Customizd description">
  <script type="text/javascript" src="https://cdn.babylonjs.com/babylon.js"></script>
EndHeaderSection

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Mon Jun 30, 2025 11:14 am
by useful
I really hope that the instructions will appear before or with the release.
viewtopic.php?p=11150#p11150

Thanks a lot for the next beta.

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Tue Jul 01, 2025 8:57 am
by Peter
Fred wrote: Mon Jun 30, 2025 9:56 am

Code: Select all

- Added: HeaderSection/EndHeaderSection to easily custozime the HTML </head> tag
...
GREAT! So many possibilities...

Thanks a lot! :D

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Wed Jul 02, 2025 6:37 pm
by Dirk Geppert
Great news! Thx a lot @Fred for this update.

@Peter: seems that HeaderSection/EndHeaderSection can replace the HtmlPreprocessor or did I miss something?

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Wed Jul 02, 2025 6:56 pm
by munfraid
Whoooo, HeaderSection is a nice one! Thanks!

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Wed Jul 02, 2025 9:35 pm
by Quin
Whoa, now that is cool. Thanks Fred, it shall be battletested!

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Wed Jul 02, 2025 10:45 pm
by Peter
Dirk Geppert wrote: Wed Jul 02, 2025 6:37 pm@Peter: seems that HeaderSection/EndHeaderSection can replace the HtmlPreprocessor
could be.
Dirk Geppert wrote: Wed Jul 02, 2025 6:37 pmor did I miss something?
try it out! ;)

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Thu Jul 03, 2025 11:49 am
by Dirk Geppert
Peter wrote: Wed Jul 02, 2025 10:45 pm [..]could be.

[..]try it out! ;)
Peter, thank you for taking the effort to answer my question.😉 In a fit of sarcasm, I was about to hit the donate button 🤣

Re: SpiderBasic 3.10 beta 2 is ready !

Posted: Thu Jul 03, 2025 2:46 pm
by SparrowhawkMMU

Code: Select all

- Added: HTTPInfo() to get more info when using HTTPRequest()
- Added: HTTPTimeout() to control the timeout of HTTPRequest()
Thanks for implementing these! :) I'd just started building a Web UI for a headless backend service (RESTful APis) using another tool, but now I think that I have all that I need to do this in SB instead, which will be a lot quicker/easier. I'll report back if I come across any issues.