updated installation files
This commit is contained in:
parent
09680fa999
commit
50eea75dcc
9 changed files with 10 additions and 9 deletions
|
@ -4,7 +4,7 @@
|
|||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowBundle {
|
||||
const VERSION = "0.7.6";
|
||||
const VERSION = "0.8.1";
|
||||
public $yellow; //access to API
|
||||
|
||||
// Handle initialisation
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowCommand {
|
||||
const VERSION = "0.7.14";
|
||||
const VERSION = "0.8.1";
|
||||
public $yellow; //access to API
|
||||
public $files; //number of files
|
||||
public $links; //number of links
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowEdit {
|
||||
const VERSION = "0.7.33";
|
||||
const VERSION = "0.8.1";
|
||||
public $yellow; //access to API
|
||||
public $response; //web response
|
||||
public $users; //user accounts
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowImage {
|
||||
const VERSION = "0.7.9";
|
||||
const VERSION = "0.8.1";
|
||||
public $yellow; //access to API
|
||||
public $graphicsLibrary; //graphics library support? (boolean)
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
// Install plugin, https://github.com/datenstrom/yellow
|
||||
// Copyright (c) 2013-2018 Datenstrom, https://datenstrom.se
|
||||
// Copyright (c) 2013-2019 Datenstrom, https://datenstrom.se
|
||||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowInstall {
|
||||
const VERSION = "0.7.4";
|
||||
const VERSION = "0.8.1";
|
||||
const PRIORITY = "1";
|
||||
public $yellow; //access to API
|
||||
|
||||
|
@ -63,6 +63,7 @@ class YellowInstall {
|
|||
if ($status=="ok") $status = $this->updateFeature($feature)==200 ? "ok" : "error";
|
||||
if ($status=="ok") $status = $this->updateContent($language, "Home", "/")==200 ? "ok" : "error";
|
||||
if ($status=="ok") $status = $this->updateContent($language, "About", "/about/")==200 ? "ok" : "error";
|
||||
if ($status=="ok") $status = $this->updateContent($language, "Footer", "/shared/footer")==200 ? "ok" : "error";
|
||||
if ($status=="ok") $status = $this->updateConfig($this->getConfigData()) ? "ok" : "error";
|
||||
if ($status=="ok") $status = $this->removeInstall() ? "done" : "error";
|
||||
if ($status=="done") {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
// Markdown plugin, https://github.com/datenstrom/yellow-plugins/tree/master/markdown
|
||||
// Copyright (c) 2013-2018 Datenstrom, https://datenstrom.se
|
||||
// Copyright (c) 2013-2019 Datenstrom, https://datenstrom.se
|
||||
// This file may be used and distributed under the terms of the public license.
|
||||
|
||||
class YellowMarkdown {
|
||||
const VERSION = "0.7.3";
|
||||
const VERSION = "0.8.1";
|
||||
public $yellow; //access to API
|
||||
|
||||
// Handle initialisation
|
||||
|
@ -3733,7 +3733,7 @@ class MarkdownExtraParser extends MarkdownParser {
|
|||
}
|
||||
|
||||
// Markdown extra parser extensions
|
||||
// Copyright (c) 2013-2018 Datenstrom
|
||||
// Copyright (c) 2013-2019 Datenstrom
|
||||
|
||||
class YellowMarkdownExtraParser extends MarkdownExtraParser {
|
||||
public $yellow; //access to API
|
||||
|
|
Loading…
Add table
Reference in a new issue