Skip to content

First distribution test unfinished

Pre-release
Pre-release
Compare
Choose a tag to compare
@scorninpc scorninpc released this 29 May 01:18
· 394 commits to master since this release

Notes

First test release, for AppImage package tests
Not at all widgets implemented, but works a lot
This release is only to people run and help

Versions

Compiled with PHP 7.3.5
only to know, and If you want, you can use as built-in server too

How to run

Just download, set +x permission and run like a php

php-gtk3-x86_64.AppImage -m

or

php-gtk3-x86_64.AppImage my-app.php

Also, you can add a syslink

sudo ln -s /PATH/php-gtk3-x86_64.AppImage /usr/bin/php-gtk3

Tests

You can start with main.php

<?php
	function GtkWindowDestroy($widget) {
		Gtk::main_quit();
	}
	$win = new GtkWindow();
	$win->set_default_size(300, 200);
	$win->connect("destroy", "GtkWindowDestroy");
	$win->show_all();
	Gtk::main();
./php-gtk3-x86_64.AppImage main.php