bug fixes for top items, coloured text, action bar and updater

This commit is contained in:
OTCv8
2020-06-11 21:18:35 +02:00
parent 04b9c2590c
commit 8391355c42
12 changed files with 19 additions and 1928 deletions

View File

@@ -6,13 +6,14 @@ $files_and_dirs = array("init.lua", "data", "modules", "layouts");
$checksum_file = "checksums.txt";
$checksum_update_interval = 60; // seconds
$binaries = array(
"WIN32-WGL" => "otclient_dx.exe",
"WIN32-EGL" => "otclient_gl.exe",
"WIN32-WGL-GCC" => "otclient_gcc_dx.exe",
"WIN32-EGL-GCC" => "otclient_gcc_gl.exe",
"WIN32-WGL" => "otclient_gl.exe",
"WIN32-EGL" => "otclient_dx.exe",
"WIN32-WGL-GCC" => "otclient_gcc_gl.exe",
"WIN32-EGL-GCC" => "otclient_gcc_dx.exe",
"X11-GLX" => "otclient_linux",
"X11-EGL" => "otclient_linux",
"ANDROID-EGL" => "" // we can't update android binary
"ANDROID-EGL" => "", // we can't update android binary
"ANDROID64-EGL" => "" // we can't update android binary
);
// CONFIG END

View File

@@ -2,17 +2,18 @@
// CONFIG
$files_dir = "/var/www/otclient/files";
$files_url = "http://otclient.ovh/files";
$files_and_dirs = array("data", "modules", "layouts", "init.lua");
$files_and_dirs = array("init.lua", "data", "modules", "layouts");
$checksum_file = "checksums.txt";
$checksum_update_interval = 5; // seconds
$checksum_update_interval = 60; // seconds
$binaries = array(
"WIN32-WGL" => "otclient_dx.exe",
"WIN32-EGL" => "otclient_gl.exe",
"WIN32-WGL-GCC" => "otclient_gcc_dx.exe",
"WIN32-EGL-GCC" => "otclient_gcc_gl.exe",
"WIN32-WGL" => "otclient_gl.exe",
"WIN32-EGL" => "otclient_dx.exe",
"WIN32-WGL-GCC" => "otclient_gcc_gl.exe",
"WIN32-EGL-GCC" => "otclient_gcc_dx.exe",
"X11-GLX" => "otclient_linux",
"X11-EGL" => "otclient_linux",
"ANDROID-EGL" => "" // we can't update android binary
"ANDROID-EGL" => "", // we can't update android binary
"ANDROID64-EGL" => "" // we can't update android binary
);
// CONFIG END