Skip to content

Commit

Permalink
Release 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazoyer committed Dec 10, 2014
1 parent 1fa3408 commit f34b544
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## Version 1.0.0 | Convergence | 2014-12-10

* Initial release
* Support for BIRD, Cisco, Juniper, Quagga
* Routes, AS, ping and traceroute related commands
* Require at least PHP 5.2
* Bootstrap 3.3.1 and JQuery 2.1.1

6 changes: 6 additions & 0 deletions includes/config.defaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

$config = array(

// Release configuration
'release' => array(
'version' => '1.0.0',
'codename' => 'Convergence'
),

// Frontpage configuration
'frontpage' => array(
// Use Bootstrap theme
Expand Down
4 changes: 3 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@
require_once('config.php');

final class LookingGlass {
private $release;
private $frontpage;
private $contact;
private $misc;
private $routers;

function __construct($config) {
$this->release = $config['release'];
$this->frontpage = $config['frontpage'];
$this->contact = $config['contact'];
$this->misc = $config['misc'];
Expand Down Expand Up @@ -179,7 +181,7 @@ private function render_footer() {
}

print('<br /><br />');
print('<span class="origin">Powered by <a href="https://github.com/respawner/looking-glass" title="Looking Glass Project">Looking Glass</a></span>');
print('<span class="origin">Powered by <a href="https://github.com/respawner/looking-glass" title="Looking Glass Project">Looking Glass '.$this->release['version'].'</a></span>');
print('</p>');
print('</div>');
}
Expand Down

0 comments on commit f34b544

Please sign in to comment.