bump version edit changelog and readme

cleanup v1.2.0
kc1awv 2020-10-27 17:27:33 -04:00
parent 0cde3fc20e
commit 978ef801c5
4 changed files with 10 additions and 14 deletions

View File

@ -1,3 +1,7 @@
v1.2.0
* Code cleanup - remove unneeded parts
* Rename "Repeaters" as "Links"
v1.1.1 v1.1.1
* Add in time elapsed for Last Heard - thanks N7TAE * Add in time elapsed for Last Heard - thanks N7TAE

View File

@ -2,6 +2,10 @@
This is the dashboard as seen on [M17-M17 Reflector](https://ref.m17.link) to be used with mrefd. This is the dashboard as seen on [M17-M17 Reflector](https://ref.m17.link) to be used with mrefd.
### Version 1.2.0 - code cleanup
Possible breaking change, a rename of "Repeaters" to "Links" requires use of a new copy of the configuration file to be used. Backup your old config.inc.php and follow the setup process below to update to the new configuration.
### Clone dashboard to /var/www ### Clone dashboard to /var/www
```bash ```bash

View File

@ -49,7 +49,7 @@ $PageOptions['ModuleNames']['D'] = '';
$PageOptions['MetaDescription'] = 'MREFD is an M17 Reflector System for Ham Radio Operators.'; // Meta Tag Values, useful for Search Engines $PageOptions['MetaDescription'] = 'MREFD is an M17 Reflector System for Ham Radio Operators.'; // Meta Tag Values, useful for Search Engines
$PageOptions['MetaKeywords'] = 'Ham Radio, M17, XReflector, '; // Meta Tag Values, useful for Search Engines $PageOptions['MetaKeywords'] = 'Ham Radio, M17, XReflector, '; // Meta Tag Values, useful for Search Engines
$PageOptions['MetaAuthor'] = 'N7TAE, KC1AWV'; // Meta Tag Values, useful for Search Engines $PageOptions['MetaAuthor'] = 'KC1AWV'; // Meta Tag Values, useful for Search Engines
$PageOptions['MetaRevisit'] = 'After 30 Days'; // Meta Tag Values, useful for Search Engines $PageOptions['MetaRevisit'] = 'After 30 Days'; // Meta Tag Values, useful for Search Engines
$PageOptions['MetaRobots'] = 'index,follow'; // Meta Tag Values, useful for Search Engines $PageOptions['MetaRobots'] = 'index,follow'; // Meta Tag Values, useful for Search Engines
@ -58,18 +58,6 @@ $PageOptions['UserPage']['ShowFilter'] = true;
$Service['PIDFile'] = '/var/run/mrefd.pid'; $Service['PIDFile'] = '/var/run/mrefd.pid';
$Service['XMLFile'] = '/var/log/mrefd.xml'; $Service['XMLFile'] = '/var/log/mrefd.xml';
/* Do we really want to keep this? Let's disable it for now.
$CallingHome['Active'] = false; // xlx phone home, true or false
$CallingHome['MyDashBoardURL'] = 'http://your_dashboard'; // dashboard url
$CallingHome['ServerURL'] = 'http://xlxapi.rlx.lu/api.php'; // database server, do not change !!!!
$CallingHome['PushDelay'] = 600; // push delay in seconds
$CallingHome['Country'] = "your_country"; // Country
$CallingHome['Comment'] = "your_comment"; // Comment. Max 100 character
$CallingHome['HashFile'] = "/tmp/callinghome.php"; // Make sure the apache user has read and write permissions in this folder.
$CallingHome['OverrideIPAddress'] = ""; // Insert your IP address here. Leave blank for autodetection. No need to enter a fake address.
$CallingHome['InterlinkFile'] = "/usr/local/etc/mrefd.linklist"; // Path to interlink file
*/
/* /*
include an extra config file for people who dont like to mess with shipped config.inc.php include an extra config file for people who dont like to mess with shipped config.inc.php
this makes updating dashboard from git a little bit easier this makes updating dashboard from git a little bit easier

View File

@ -110,7 +110,7 @@ $Reflector->LoadXML();
<li<?php echo (($_GET['show'] == "users") || ($_GET['show'] == "")) ? ' class="nav-item active"' : ''; ?>><a class="nav-link" href="./index.php">Last Heard</a></li> <li<?php echo (($_GET['show'] == "users") || ($_GET['show'] == "")) ? ' class="nav-item active"' : ''; ?>><a class="nav-link" href="./index.php">Last Heard</a></li>
<li<?php echo ($_GET['show'] == "links") ? ' class="nav-item active"' : ''; ?>><a class="nav-link" href="./index.php?show=links">Links (<?php echo $Reflector->NodeCount(); ?>)</a></li> <li<?php echo ($_GET['show'] == "links") ? ' class="nav-item active"' : ''; ?>><a class="nav-link" href="./index.php?show=links">Links (<?php echo $Reflector->NodeCount(); ?>)</a></li>
</ul> </ul>
<span class="navbar-text px-2">mrefd v<?php echo $Reflector->GetVersion(); ?> - Dashboard v1.1.2 <?php echo $PageOptions['LocalModification']; ?></span> <span class="navbar-text px-2">mrefd v<?php echo $Reflector->GetVersion(); ?> - Dashboard v1.2.0 <?php echo $PageOptions['LocalModification']; ?></span>
<span class="navbar-text px-2">Service uptime: <?php echo FormatSeconds($Reflector->GetServiceUptime()); ?></span> <span class="navbar-text px-2">Service uptime: <?php echo FormatSeconds($Reflector->GetServiceUptime()); ?></span>
</div> </div>
</nav> </nav>