commit 331d8f1eaff1a6e3720377e126edaebe7f10303a
parent 352d232b8f79e9c21c74d3aa20410a7bdbce4631
Author: markseu <mark2011@mayberg.se>
Date: Sun, 1 Jun 2014 23:27:05 +0200
Core update (peppermint remix)
Diffstat:
10 files changed, 11 insertions(+), 20 deletions(-)
diff --git a/README.md b/README.md
@@ -1,9 +1,8 @@
-Yellow
-======
-Yellow is for people who make websites.
+Yellow 0.3.1
+============
+Yellow is for people who make websites.
-[](https://travis-ci.org/markseu/yellowcms)
-[](http://demo.datenstrom.se/)
+[](https://travis-ci.org/markseu/yellowcms) [](http://demo.datenstrom.se/)
How do I install this?
----------------------
diff --git a/media/styles/default.css b/media/styles/default.css
@@ -1,4 +1,4 @@
-/* Yellow default style 0.1.5 */
+/* Yellow default style 0.3.1 */
html, body, div, form, pre, span, tr, th, td { margin:0; padding:0; border:0; vertical-align:baseline; }
body {
diff --git a/system/config/config.ini b/system/config/config.ini
@@ -1,5 +1,4 @@
// Yellow site configuration
-// All locations and directories have to end with a slash
sitename = Yellow
author = Yellow
diff --git a/system/config/text.ini b/system/config/text.ini
@@ -1,5 +1,4 @@
// Yellow text strings
-// Format: key = text string
language = en
languageDescription = English
diff --git a/system/core/core-commandline.php b/system/core/core-commandline.php
@@ -5,7 +5,7 @@
// Command line core plugin
class YellowCommandline
{
- const Version = "0.2.9";
+ const Version = "0.3.1";
var $yellow; //access to API
var $content; //number of content pages
var $media; //number of media files
diff --git a/system/core/core-markdownextra.php b/system/core/core-markdownextra.php
@@ -5,7 +5,7 @@
// Markdown extra core plugin
class YellowMarkdownExtra
{
- const Version = "0.2.11";
+ const Version = "0.3.1";
var $yellow; //access to API
// Handle plugin initialisation
diff --git a/system/core/core-webinterface.css b/system/core/core-webinterface.css
@@ -1,4 +1,4 @@
-/* Yellow web interface 0.2.3 */
+/* Yellow web interface 0.3.1 */
.yellow-bar { position:relative; overflow:hidden; line-height:2.0em; }
.yellow-bar-left { display:block; float:left; }
diff --git a/system/core/core-webinterface.js b/system/core/core-webinterface.js
@@ -4,7 +4,7 @@
// Yellow main API
var yellow =
{
- version: "0.2.5",
+ version: "0.3.1",
onClick: function(e) { yellow.webinterface.hidePanesOnClick(yellow.toolbox.getEventElement(e)); },
onKeydown: function(e) { yellow.webinterface.hidePanesOnKeydown(yellow.toolbox.getEventKeycode(e)); },
onResize: function() { yellow.webinterface.resizePanes(); },
diff --git a/system/core/core-webinterface.php b/system/core/core-webinterface.php
@@ -5,7 +5,7 @@
// Web interface core plugin
class YellowWebinterface
{
- const Version = "0.2.11";
+ const Version = "0.3.1";
var $yellow; //access to API
var $users; //web interface users
var $active; //web interface is active? (boolean)
diff --git a/system/core/core.php b/system/core/core.php
@@ -5,7 +5,7 @@
// Yellow main class
class Yellow
{
- const Version = "0.2.22";
+ const Version = "0.3.1";
var $page; //current page
var $pages; //pages from file system
var $config; //configuration
@@ -300,12 +300,6 @@ class Yellow
return $this->pages->snippetArgs;
}
- // Return page extra header, OBSOLETE WILL BE REMOVED
- function getHeaderExtra()
- {
- return $this->page->getHeaderExtra();
- }
-
// Execute plugin command
function plugin($name, $args = NULL)
{