updated installation files

This commit is contained in:
markseu 2019-02-02 16:17:56 +01:00
parent 09680fa999
commit 50eea75dcc
9 changed files with 10 additions and 9 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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") {

View file

@ -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