Hello command line (summer remix)

This commit is contained in:
markseu 2014-07-10 11:54:14 +02:00
parent b4a8aec533
commit 8a69cbb9d6
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
Yellow 0.3.7
============
Yellow is for people who make websites. [Visit website](http://datenstrom.se/yellow/).
Yellow is for people who make websites. [Visit website](http://datenstrom.se/yellow).
[![Status](https://travis-ci.org/markseu/yellowcms.svg)](https://travis-ci.org/markseu/yellowcms)

View file

@ -5,7 +5,7 @@
// Command line core plugin
class YellowCommandline
{
const Version = "0.3.4";
const Version = "0.3.5";
var $yellow; //access to API
var $content; //number of content pages
var $media; //number of media files
@ -49,7 +49,7 @@ class YellowCommandline
// Show available commands
function helpCommand()
{
echo "Yellow command line ".YellowCommandline::Version."\n";
echo "Yellow ".Yellow::Version."\n";
foreach($this->getCommandHelp() as $line) echo (++$lineCounter>1 ? " " : "Syntax: ")."yellow.php $line\n";
return 200;
}