API change and open link. Version 0.10.0
TheGates » Devlog
A big change in application API for opening gates
Now to open a gate you call send_command
get_tree().send_command("open_gate", ["https://example.com/project.gate"])
And also you can open a link in a browser
get_tree().send_command("open_link", ["https://example.com"])
Files
TheGates_Windows_0.10.1.zip 52 MB
Sep 03, 2024
TheGates_MacOS_0.10.1.zip 105 MB
Sep 03, 2024
TheGates_Linux_0.10.0.zip 62 MB
Sep 03, 2024
Get TheGates
TheGates
Free and open-source 3D internet browser
Status | In development |
Author | Nordup |
Tags | Godot, Internet, Open Source, web |
Languages | English |
More posts
- Parallel resource downloading. Version 0.14.242 days ago
- Gate loading design. Version 0.14.143 days ago
- App redesign. Version 0.14.050 days ago
- Fix crashes. Better crash detection. Version 0.13.476 days ago
- Fix crash, better popup buttons. Version 0.13.378 days ago
- Gate logs and crash reports. Version 0.13.278 days ago
- Log failed system calls. Version 0.13.181 days ago
- Detect crashed gates. Version 0.13.084 days ago
- Maximized window mode. Version 0.12.185 days ago
- Updated app to use Godot 4.3. Version 0.12.086 days ago
Comments
Log in with itch.io to leave a comment.
What made you do this update. Just wondering does it help performance?
I wanted to support opening links from sandboxed environment (from game/site)
So instead of populating a ton of methods in c++ it's more convenient this way
You just send a command to main app with some arguments and it can handle it with gdscript (no engine rebuild)
very nice 💯