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
More posts
- Parallel resource downloading. Version 0.14.276 days ago
- Gate loading design. Version 0.14.178 days ago
- App redesign. Version 0.14.084 days ago
- Fix crashes. Better crash detection. Version 0.13.4Nov 03, 2024
- Fix crash, better popup buttons. Version 0.13.3Nov 01, 2024
- Gate logs and crash reports. Version 0.13.2Nov 01, 2024
- Log failed system calls. Version 0.13.1Oct 28, 2024
- Detect crashed gates. Version 0.13.0Oct 26, 2024
- Maximized window mode. Version 0.12.1Oct 25, 2024
- Updated app to use Godot 4.3. Version 0.12.0Oct 24, 2024
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 💯