Updated install and update script, Updated sample config, Updated Readme, Changed version

This commit is contained in:
xevidos 2018-07-25 08:56:41 -04:00
parent e3b4c0df98
commit 9b790b3532
4 changed files with 9 additions and 12 deletions

View File

@ -1,6 +1,6 @@
This is the Telaaedifex team's custom version of Codiad. Codiad is a web-based IDE framework with a small footprint and minimal requirements.
Codiad was built with simplicity in mind, allowing for fast, interactive development without the massive overhead of some of the larger desktop editors. That being said even users of IDE's such as Eclipse, NetBeans and Aptana are finding Codiad's simplicity to be a huge benefit. While simplicity was key, we didn't skimp on features and have a team of dedicated developer actively adding more.
Codiad was built with simplicity in mind, allowing for fast, interactive development without the massive overhead of some of the larger desktop editors. That being said even users of IDE's such as Eclipse, NetBeans and Aptana are finding Codiad's simplicity to be a huge benefit. While simplicity was key, we didn't skimp on features and have a team of dedicated developers actively adding more.
For more information on the project please check out the check out the Wiki.
@ -11,6 +11,7 @@ When you see a ? in front of a task that means it is a possibility but we aren't
Task List:
Add ability to hide cursors when in collaboration mode.
Add ability to rename site.
? Add ability to see what people are highlighting in collaboration mode.
Add mobile compatibility.

View File

@ -175,6 +175,9 @@ date_default_timezone_set("' . $_POST['timezone'] . '");
// External Authentification
//define("AUTH_PATH", "/path/to/customauth.php");
// Site Name
//define("SITE_NAME", "My Codiad Editor");
//////////////////////////////////////////////////////////////////
// ** DO NOT EDIT CONFIG BELOW **
//////////////////////////////////////////////////////////////////
@ -191,11 +194,6 @@ define("WSURL", BASE_URL . "/workspace");
// Marketplace
//define("MARKETURL", "http://market.codiad.com/json");
// Update Check
define("UPDATEURL", "https://codiad.telaaedifex.com/update/?v={VER}&o={OS}&p={PHP}&w={WEB}&a={ACT}");
define("ARCHIVEURL", "https://gitlab.telaaedifex.com/xevidos/codiad/-/archive/master/codiad-master.zip");
define("COMMITURL", "https://gitlab.telaaedifex.com/api/v4/projects/3/repository/commits/");
';
saveFile($config, $config_data);

View File

@ -12,7 +12,7 @@ class Update {
// CONSTANTS
//////////////////////////////////////////////////////////////////
CONST VERSION = "v.2.9.0";
CONST VERSION = "v.2.9.1";
//////////////////////////////////////////////////////////////////
// PROPERTIES

View File

@ -34,6 +34,9 @@ date_default_timezone_set("America/Chicago");
// External Authentification
//define("AUTH_PATH", "/path/to/customauth.php");
// Site Name
//define("SITE_NAME", "My Codiad Editor");
//////////////////////////////////////////////////////////////////
// ** DO NOT EDIT CONFIG BELOW **
//////////////////////////////////////////////////////////////////
@ -51,9 +54,4 @@ define("WSURL", BASE_URL . "/workspace");
// Marketplace
//define("MARKETURL", "http://market.codiad.com/json");
// Update Check
//define("UPDATEURL", "https://codiad.telaaedifex.com/update/?v={VER}&o={OS}&p={PHP}&w={WEB}&a={ACT}");
//define("ARCHIVEURL", "https://gitlab.telaaedifex.com/xevidos/codiad/-/archive/master/codiad-master.zip");
//define("COMMITURL", "https://gitlab.telaaedifex.com/api/v4/projects/3/repository/commits/");
?>