- new map change log to Slack channel - new "rally point" logging to Slack channel - new "rally point" poke options (e.g. custom message), closed #295 - new log options for WebSocket installations - added ship "mass" logging (backend only), #313 - added map logging to Slack, #326 - added "ESI error rate" limit detection - added "Monolog" as new logging library (Composer dependency) - added "Swiftmailer" as new eMail library (Composer dependency) - added Support for Redis session hander (performance boost) - improved character select panels (visible "online" status) - improved "activity logging" (more DB columns added to check) - improved eMail logging (HTML template support) - improved "delete map" now become "inactive" for some days before delete - improved character logout handling - improved /setup page for DB bootstrap (new button for DB create if not exists) - fixed broken ship tracking (ship name re-added) - fixed broken ship tracking for multiple chars on different browser tabs - fixed broken cursor coordinates, closed #518 - fixed null pointer "charactermodel.php->isActive():925" closed #529 - fixed broken "scroll offset", closed #533 closed #534 - Updated "validation" library JS v0.10.1 -> v0.11.9 - Updated ORM Mapper _Cortex_ v1.5.0-dev -> v1.5.0 - and many more....
54 lines
2.3 KiB
HTML
54 lines
2.3 KiB
HTML
|
|
{{! Render the *.svg logo. So it can be used through the "use" tag}}
|
|
{{{logo}}}
|
|
|
|
<nav id="{{id}}" class="navbar navbar-default pf-head" role="navigation">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header pull-left">
|
|
|
|
<a class="navbar-brand pf-head-menu" href="">
|
|
<svg class="{{brandLogo}}" width="24px" height="24px">
|
|
<use xlink:href="#pf-logo"/>
|
|
</svg>
|
|
Menu
|
|
</a>
|
|
<p class="navbar-text {{popoverTriggerClass}} {{userCharacterClass}}" title="switch character" data-easein="flipYIn">
|
|
<a href="javascript:void(0);">
|
|
<img class="{{userCharacterImageClass}}" src=""/>
|
|
<span>{{! will be filled with current user name }}</span>
|
|
</a>
|
|
</p>
|
|
<p class="navbar-text hidden-xs {{userShipClass}}">
|
|
<img class="{{userShipImageClass}}" src=""/>
|
|
<span>{{! will be filled with current user ship name }}</span>
|
|
</p>
|
|
<p class="navbar-text pf-head-active-user" title="active pilots">
|
|
<a href="javascript:void(0);">
|
|
<i class="fa fa-fighter-jet fa-fw"></i>active <span class="badge txt-color"></span>
|
|
</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="navbar-header pull-right">
|
|
<p id="pf-head-current-location" class="navbar-text hidden-xs" title="current location">
|
|
<a href="javascript:void(0);">
|
|
<i class="fa fa-map-marker fa-fw"></i><span></span>
|
|
</a>
|
|
</p>
|
|
<p class="navbar-text txt-color txt-color-red pf-head-program-status" title="connection status">
|
|
<i class="fa fa-fw fa-bolt"></i>
|
|
<span>offline</span>
|
|
</p>
|
|
<p class="navbar-text" title="map connection tracking">
|
|
<i class="fa fa-fw fa-location-arrow"></i>
|
|
<input id="{{mapTrackingId}}" type="checkbox" data-toggle="toggle" value="1" >
|
|
</p>
|
|
<a class="navbar-brand pf-head-map" href="">
|
|
Map <i class="fa fa-sitemap fa-lg fa-fw"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|